diff options
author | Charles Wilson <cwilson@ece.gatech.edu> | 2002-06-01 14:09:50 +0000 |
---|---|---|
committer | Gary V. Vaughan <gary@gnu.org> | 2002-06-01 14:09:50 +0000 |
commit | 7cb0a065a5fba68e86fc4e3979131714b0c52d83 (patch) | |
tree | 1160c953d59defe643cfb32445421917036ce70d /tests | |
parent | c8ffe65a48c0cf7c1c0a108efd18ca6abd9e2e78 (diff) | |
download | libtool-7cb0a065a5fba68e86fc4e3979131714b0c52d83.tar.gz |
* NEWS: Updated.
* libtool.m4: use $NM to create the symbol list on cygwin, not
$ltdll_cmds as on mingw. For all tags, (and host=cygwin) set
allow_undefined_flag="" so that the --auto-import magic
works properly. For all tags (and host=cygiwn) set
always_export_symbols=no -- it is unnecessary thanks to
binutils' auto-export magic.
* libltdl/ltdl.c: Don't force cygwin to use the LoadLibrary
wrapper; use cygwin's builtin implementatino of dl*.
* cdemo/Makefile.am: the downside of unsetting
'allow_undefined_flag' -- we must include -no-undefined
in the _la_LDFLAGS variable.
* depdemo/l1/Makefile.am: ditto.
* depdemo/l2/Makefile.am: ditto.
* depdemo/l3/Makefile.am: ditto.
* depdemo/l4/Makefile.am: ditto.
* mdemo/Makefile.am: ditto.
* tagdemo/Makefile.am: ditto.
* demo/Makefile.am: ditto. But also, we must make special
provision to clean up the hell0 wrapper script.
* pdemo/Makefile.am: ditto -no-undefined. ditto hell0.
And use 'hell_static' instead of 'hell.static'.
* tests/pdemo-inst.test: use 'hell_static' instead
of 'hell.static'.
* tests/pdemo-exec.test: ditto.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/pdemo-exec.test | 4 | ||||
-rwxr-xr-x | tests/pdemo-inst.test | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/pdemo-exec.test b/tests/pdemo-exec.test index 38b44ab2..6c38aae7 100755 --- a/tests/pdemo-exec.test +++ b/tests/pdemo-exec.test @@ -20,9 +20,9 @@ fi echo "Executing uninstalled programs in ../pdemo" status=0 -if ../pdemo/hell.static| grep 'Welcome to GNU Hell'; then : +if ../pdemo/hell-static| grep 'Welcome to GNU Hell'; then : else - echo "$0: cannot execute ../pdemo/hell.static" 1>&2 + echo "$0: cannot execute ../pdemo/hell_static" 1>&2 status=1 fi diff --git a/tests/pdemo-inst.test b/tests/pdemo-inst.test index 0c54ec70..a23d8a57 100755 --- a/tests/pdemo-inst.test +++ b/tests/pdemo-inst.test @@ -25,9 +25,9 @@ $make install || exit 1 echo "= Executing installed programs" status=0 -if $prefix/bin/hell.static | grep 'Welcome to GNU Hell'; then : +if $prefix/bin/hell_static | grep 'Welcome to GNU Hell'; then : else - echo "$0: cannot execute $prefix/bin/hell.static" 1>&2 + echo "$0: cannot execute $prefix/bin/hell_static" 1>&2 status=1 fi |