* ld.bootstrap/bootstrap.exp, lib/ld.exp: Replace error proc
authorBill Cox <bill@cygnus>
Tue, 17 May 1994 22:40:29 +0000 (22:40 +0000)
committerBill Cox <bill@cygnus>
Tue, 17 May 1994 22:40:29 +0000 (22:40 +0000)
  calls with perror calls.

ld/testsuite/ChangeLog
ld/testsuite/ld.bootstrap/bootstrap.exp
ld/testsuite/lib/ld.exp

index 031d98735a569c9f5481bb0a40bd2ecdb025a9b4..8317b2ac399dcb4c8bd2b14c82126b19146682ef 100644 (file)
@@ -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)
 
        * ld.cdtest/cdtest-bar.cc: Renamed from cdtest-func.cc.
index 11f52a8df6f469b07ab1e29408aff3e8a8d84c45..66337bf48c19520a7516c7a56b9e197c34d6a1f8 100644 (file)
@@ -84,7 +84,7 @@ for { set stage 0 } { $stage < 9 } { incr stage } {
            fail "$tmptarget aborted" 
        }
        "-1" { 
-           error "Couldn't load $tmptarget." 
+           perror "Couldn't load $tmptarget." 
        }
     }
 
index 659dfe299c617e0c117084a4334d1685390ba640..aeb8454943a40827e56785ddd55c3bf913e327e6 100644 (file)
@@ -4,7 +4,7 @@
 #
 proc default_ld_version { ld } {
     if { [file exists $ld] == 0 } then {
      error "$ld does not exist"
perror "$ld does not exist"
        exit 1
     }
     
@@ -25,7 +25,7 @@ proc default_ld_relocate { ld target objects } {
     global HOSTING_EMU
     
     if { [file exists $ld] == 0 } then {
      error "$ld does not exist"
perror "$ld does not exist"
        exit 1
     }
     
@@ -56,7 +56,7 @@ proc default_ld_link { ld target objects } {
     set libs "$BFDLIB $LIBIBERTY $HOSTING_LIBS"
     
     if { [file exists $ld] == 0 } then {
      error "$ld does not exist"
perror "$ld does not exist"
        exit 1
     }
     
@@ -80,7 +80,7 @@ proc default_ld_compile { cc source object } {
     global subdir
     
     if {[which $cc] == 0} then {
      error "$cc does not exist"
perror "$cc does not exist"
        exit 1
     }
     
This page took 0.042002 seconds and 4 git commands to generate.