mirror of git://gcc.gnu.org/git/gcc.git
libstdc++.exp (v3-build_support): Use env(AR) and env(RANLIB), not env(AR_FOR_TARGET) and env(RANLIB_FOR_TARGET).
* testsuite/lib/libstdc++.exp (v3-build_support): Use env(AR) and env(RANLIB), not env(AR_FOR_TARGET) and env(RANLIB_FOR_TARGET). From-SVN: r126392
This commit is contained in:
parent
47220f037b
commit
6ed80bc4da
|
|
@ -1,3 +1,8 @@
|
||||||
|
2007-07-06 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* testsuite/lib/libstdc++.exp (v3-build_support): Use env(AR)
|
||||||
|
and env(RANLIB), not env(AR_FOR_TARGET) and env(RANLIB_FOR_TARGET).
|
||||||
|
|
||||||
2007-07-05 Joerg Richter <joerg.richter@pdv-fs.de>
|
2007-07-05 Joerg Richter <joerg.richter@pdv-fs.de>
|
||||||
|
|
||||||
PR libstdc++/31957
|
PR libstdc++/31957
|
||||||
|
|
|
||||||
|
|
@ -502,8 +502,8 @@ proc v3-build_support { } {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Collect into libtestc++.a
|
# Collect into libtestc++.a
|
||||||
if [info exists env(AR_FOR_TARGET)] {
|
if [info exists env(AR)] {
|
||||||
set ar $env(AR_FOR_TARGET)
|
set ar $env(AR)
|
||||||
} else {
|
} else {
|
||||||
set ar [transform "ar"]
|
set ar [transform "ar"]
|
||||||
}
|
}
|
||||||
|
|
@ -512,8 +512,8 @@ proc v3-build_support { } {
|
||||||
set result [lindex [local_exec "$arcommand" "" "" 300] 0]
|
set result [lindex [local_exec "$arcommand" "" "" 300] 0]
|
||||||
verbose "link result is $result"
|
verbose "link result is $result"
|
||||||
if { $result == 0 } {
|
if { $result == 0 } {
|
||||||
if [info exists env(RANLIB_FOR_TARGET)] {
|
if [info exists env(RANLIB)] {
|
||||||
set ranlib $env(RANLIB_FOR_TARGET)
|
set ranlib $env(RANLIB)
|
||||||
} else {
|
} else {
|
||||||
set ranlib [transform "ranlib"]
|
set ranlib [transform "ranlib"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue