diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-08-05 16:34:03 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-08-05 16:34:03 +0000 |
commit | 0d2ac65711936bf5ded20c83b2894acab131010f (patch) | |
tree | 11ca87471321d4d246ddbe7b7d8c953ea3f6cd7b | |
parent | e535307acd972e94ff9602af55f3abc65d150052 (diff) | |
download | binutils-0d2ac65711936bf5ded20c83b2894acab131010f.zip binutils-0d2ac65711936bf5ded20c83b2894acab131010f.tar.gz binutils-0d2ac65711936bf5ded20c83b2894acab131010f.tar.bz2 |
* config/default.exp: Set NM to nm-new, not nm.new, to match
recent change in binutils build directory.
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/config/default.exp | 18 |
2 files changed, 23 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index cd5a0ea..899347e 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 5 12:33:23 1997 Ian Lance Taylor <ian@cygnus.com> + + * config/default.exp: Set NM to nm-new, not nm.new, to match + recent change in binutils build directory. + start-sanitize-v850 Thu Jul 31 15:21:51 1997 Jeffrey A Law (law@cygnus.com) diff --git a/gas/testsuite/config/default.exp b/gas/testsuite/config/default.exp index 01ffe43..2deaa5d 100644 --- a/gas/testsuite/config/default.exp +++ b/gas/testsuite/config/default.exp @@ -25,4 +25,22 @@ if ![info exists OBJDUMPFLAGS] then { set OBJDUMPFLAGS {} } +if ![info exists NM] then { + set NM [findfile $base_dir/../../binutils/nm-new \ + $base_dir/../../binutils/nm-new \ + [transform nm]] +} + +if ![info exists NMFLAGS] then { + set NMFLAGS {} +} + +if ![info exists OBJCOPY] then { + set OBJCOPY [findfile $base_dir/../../binutils/objcopy] +} + +if ![info exists OBJCOPYFLAGS] then { + set OBJCOPYFLAGS {} +} + gas_init |