Commit 6ed80bc4 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

libstdc++.exp (v3-build_support): Use env(AR) and env(RANLIB), not…

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
parent 47220f03
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>
PR libstdc++/31957
......
......@@ -502,8 +502,8 @@ proc v3-build_support { } {
}
# Collect into libtestc++.a
if [info exists env(AR_FOR_TARGET)] {
set ar $env(AR_FOR_TARGET)
if [info exists env(AR)] {
set ar $env(AR)
} else {
set ar [transform "ar"]
}
......@@ -512,8 +512,8 @@ proc v3-build_support { } {
set result [lindex [local_exec "$arcommand" "" "" 300] 0]
verbose "link result is $result"
if { $result == 0 } {
if [info exists env(RANLIB_FOR_TARGET)] {
set ranlib $env(RANLIB_FOR_TARGET)
if [info exists env(RANLIB)] {
set ranlib $env(RANLIB)
} else {
set ranlib [transform "ranlib"]
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment