mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
* ld.bootstrap/bootstrap.exp, lib/ld.exp: Replace error proc
calls with perror calls.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 17 15:06:49 1994 Bill Cox (bill@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* ld.bootstrap/bootstrap.exp, lib/ld.exp: Replace error proc
|
||||||
|
calls with perror calls.
|
||||||
|
|
||||||
Wed May 11 16:47:46 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
|
Wed May 11 16:47:46 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
|
||||||
|
|
||||||
* ld.cdtest/cdtest-bar.cc: Renamed from cdtest-func.cc.
|
* ld.cdtest/cdtest-bar.cc: Renamed from cdtest-func.cc.
|
||||||
|
@ -84,7 +84,7 @@ for { set stage 0 } { $stage < 9 } { incr stage } {
|
|||||||
fail "$tmptarget aborted"
|
fail "$tmptarget aborted"
|
||||||
}
|
}
|
||||||
"-1" {
|
"-1" {
|
||||||
error "Couldn't load $tmptarget."
|
perror "Couldn't load $tmptarget."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
proc default_ld_version { ld } {
|
proc default_ld_version { ld } {
|
||||||
if { [file exists $ld] == 0 } then {
|
if { [file exists $ld] == 0 } then {
|
||||||
error "$ld does not exist"
|
perror "$ld does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ proc default_ld_relocate { ld target objects } {
|
|||||||
global HOSTING_EMU
|
global HOSTING_EMU
|
||||||
|
|
||||||
if { [file exists $ld] == 0 } then {
|
if { [file exists $ld] == 0 } then {
|
||||||
error "$ld does not exist"
|
perror "$ld does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ proc default_ld_link { ld target objects } {
|
|||||||
set libs "$BFDLIB $LIBIBERTY $HOSTING_LIBS"
|
set libs "$BFDLIB $LIBIBERTY $HOSTING_LIBS"
|
||||||
|
|
||||||
if { [file exists $ld] == 0 } then {
|
if { [file exists $ld] == 0 } then {
|
||||||
error "$ld does not exist"
|
perror "$ld does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ proc default_ld_compile { cc source object } {
|
|||||||
global subdir
|
global subdir
|
||||||
|
|
||||||
if {[which $cc] == 0} then {
|
if {[which $cc] == 0} then {
|
||||||
error "$cc does not exist"
|
perror "$cc does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user