* config/default.exp: Do not load libpath.exp if it does not

exist.
	(CC): Provide fallback definition.
	(CFLAGS): Likewise.
	(CXX): Likewise.
	(CXXFLAGS): Likewise.
This commit is contained in:
Mark Mitchell 2005-03-24 23:36:03 +00:00
parent 82f0cfbdcc
commit 99c05fe4f7
2 changed files with 21 additions and 3 deletions

View File

@ -1,3 +1,12 @@
2005-03-24 Mark Mitchell <mark@codesourcery.com>
* config/default.exp: Do not load libpath.exp if it does not
exist.
(CC): Provide fallback definition.
(CFLAGS): Likewise.
(CXX): Likewise.
(CXXFLAGS): Likewise.
2005-03-24 Eric Christopher <echristo@redhat.com>
* ld-mips-elf/rel32-n32.d: Revert changes.

View File

@ -70,10 +70,19 @@ if {![file isdirectory tmpdir/ld]} then {
set gcc_ld_flag "-B[pwd]/tmpdir/ld/"
# load the linker path
load_lib tmpdir/libpath.exp
if {[file exists tmpdir/libpath.exp]} {
load_lib tmpdir/libpath.exp
foreach dir $libpath {
set gcc_ld_flag "$gcc_ld_flag -L$dir"
foreach dir $libpath {
set gcc_ld_flag "$gcc_ld_flag -L$dir"
}
}
# The "make check" target in the Makefile passes in
# "CC=$(CC_FOR_TARGET)". But, if the user invokes runtest directly
# (as when testing an installed linker), CC may not be set.
if {![info exists CC]} {
set CC [transform gcc]
}
# The mips64-*-linux-gnu compiler defaults to the N32 ABI after