+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)
* ld.cdtest/cdtest-bar.cc: Renamed from cdtest-func.cc.
#
proc default_ld_version { ld } {
if { [file exists $ld] == 0 } then {
- error "$ld does not exist"
+ perror "$ld does not exist"
exit 1
}
global HOSTING_EMU
if { [file exists $ld] == 0 } then {
- error "$ld does not exist"
+ perror "$ld does not exist"
exit 1
}
set libs "$BFDLIB $LIBIBERTY $HOSTING_LIBS"
if { [file exists $ld] == 0 } then {
- error "$ld does not exist"
+ perror "$ld does not exist"
exit 1
}
global subdir
if {[which $cc] == 0} then {
- error "$cc does not exist"
+ perror "$cc does not exist"
exit 1
}