Skip to content
Snippets Groups Projects
Commit fb34ebc5 authored by David Billinghurst's avatar David Billinghurst Committed by Jeff Law
Browse files

tests_flags.in: Fix typo in usage.

        * tests_flags.in: Fix typo in usage.

        * tests_flags.in: Set target specific LIBS for cygwin.

From-SVN: r38599
parent 021d7b26
No related branches found
No related tags found
No related merge requests found
2001-01-01 David Billinghurst <David.Billinghurst@riotinto.com>
* tests_flags.in: Fix typo in usage.
* tests_flags.in: Set target specific LIBS for cygwin.
2000-12-31 Alexandre Oliva <aoliva@redhat.com>
* include/c_std/bits/std_cstdlib.h (mblen): Protect against macro.
......
......@@ -41,7 +41,7 @@
print_usage() {
cat <<EOF
Usage:
tests_fags --compiler <build-dir> <src-dir>
tests_flags --compiler <build-dir> <src-dir>
--built-library <build-dir> <src-dir>
--installed-library <build-dir> <src-dir> <install-dir>
EOF
......@@ -154,7 +154,11 @@ case ${query} in
${LIB_PATH}/../libsupc++/libsupc++.la ${LIB_PATH}/libstdc++.la
-no-install"
LTEXE="${LIBTOOL} --mode=execute"
LIBS="-nodefaultlibs -lc -lgcc -lc"
case @target_os@ in
*cygwin*) LIBS="-nodefaultlibs -lgcc -lcygwin -luser32
-lkernel32 -ladvapi32 -lshell32" ;;
*) LIBS="-nodefaultlibs -lc -lgcc -lc" ;;
esac
;;
--installed-library)
# For the installed version, we really only need to use libtool and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment