]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Add testsuite exposure for passing of compiler and linker flags.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 6 Sep 2009 07:48:33 +0000 (09:48 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 6 Sep 2009 07:57:55 +0000 (09:57 +0200)
* tests/flags.at (passing flags through libtool): New file, new
test, for bug fixed in previous commit.
* Makefile.am (TESTSUITE_AT): Add tests/flags.at.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
Makefile.am
tests/flags.at [new file with mode: 0644]

index 9e5d353b0738a2ea557071450a043319ff91056c..599d33e06593536329740f53f6ef199d6a400e6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-09-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Add testsuite exposure for passing of compiler and linker flags.
+       * tests/flags.at (passing flags through libtool): New file, new
+       test, for bug fixed in previous commit.
+       * Makefile.am (TESTSUITE_AT): Add tests/flags.at.
+
 2009-09-04  Peter Rosin  <peda@lysator.liu.se>
 
        Make -Wc,FLAG behave like -Xcompiler FLAG in link mode.
index a18955eb362cc5f1da1b652bb0cb2b17d018fb77..e22fcc24d9a8d2cce78ecaa91fe7dea8a5de125b 100644 (file)
@@ -455,6 +455,7 @@ TESTSUITE_AT        = tests/testsuite.at \
                  tests/duplicate_members.at \
                  tests/duplicate_conv.at \
                  tests/duplicate_deps.at \
+                 tests/flags.at \
                  tests/inherited_flags.at \
                  tests/convenience.at \
                  tests/link-order.at \
diff --git a/tests/flags.at b/tests/flags.at
new file mode 100644 (file)
index 0000000..3de1fcb
--- /dev/null
@@ -0,0 +1,96 @@
+# flags.at -- libtool passing of flags             -*- Autotest -*-
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   This file is part of GNU Libtool.
+#
+# GNU Libtool is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# GNU Libtool is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Libtool; see the file COPYING.  If not, a copy
+# can be downloaded from  http://www.gnu.org/licenses/gpl.html,
+# or obtained by writing to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+####
+
+AT_SETUP([passing flags through libtool])
+AT_KEYWORDS([libtool])
+AT_KEYWORDS([CXX F77 FC])
+
+LDFLAGS="$LDFLAGS -no-undefined"
+eval "`$LIBTOOL --config | $EGREP '^(FGREP)='`"
+
+AT_DATA([a.c],
+[[int main () { return 0; }
+]])
+
+AT_DATA([a.f],
+[[      program main
+      end
+]])
+
+cp a.c a.cpp
+cp a.f a.f90
+
+# Linker flags are not passed to the archiver, so don't test static libraries.
+if $LIBTOOL --features | grep 'enable shared libraries'; then
+  library_and_module='library.la "module.la -module -avoid-version"'
+else
+  library_and_module=
+fi
+
+for tag in CC CXX F77 FC; do
+  if $LIBTOOL --tag=$tag 2>&1 | grep 'unknown tag'; then
+    continue
+  fi
+  case $tag in
+  CC) compile="$CC $CPPFLAGS $CFLAGS" link="$CC $CFLAGS $LDFLAGS" source=a.c ;;
+  CXX) compile="$CXX $CPPFLAGS $CXXFLAGS" link="$CXX $CXXFLAGS $LDFLAGS" source=a.cpp;;
+  F77) compile="$CC $CPPFLAGS $CFLAGS" link="$CC $CFLAGS $LDFLAGS" source=a.f ;;
+  FC) compile="$CC $CPPFLAGS $CFLAGS" link="$CC $CFLAGS $LDFLAGS" source=a.f90 ;;
+  esac
+
+  eval "`$LIBTOOL --tag=$tag --config | $EGREP '^(wl|archive_cmds|reload_cmds)='`"
+
+  AT_CHECK([$LIBTOOL --tag=$tag --mode=compile $compile -c $source],
+          [], [ignore], [ignore])
+
+  # Linker flags are prefixed with ${wl} iff they are passed to the
+  # compiler driver, instead of directly to the linker.
+  case $archive_cmds in
+  *\$LD*\$linker_flags*) maybe_wl= ;;
+  *) maybe_wl=$wl ;;
+  esac
+
+  for flag in -Wc, -Wl, '-Xcompiler ' '-Xlinker '; do
+    case $flag in
+    -Wc, | -Xcompiler\ )
+      AT_CHECK([$LIBTOOL -n --tag=$tag --mode=compile $compile ]dnl
+              [$flag-foo -c $source], [], [stdout], [ignore])
+      AT_CHECK([$FGREP " -foo" stdout], [], [ignore])
+      flag_prefix=
+      ;;
+    -Wl, | -Xlinker\ )
+      flag_prefix=$maybe_wl
+      ;;
+    esac
+
+    eval set program "$library_and_module"
+    for output
+    do
+      AT_CHECK([$LIBTOOL -n --tag=$tag --mode=link $link ]dnl
+              [-o $output a.lo -rpath /nowhere $flag-foo], [], [stdout], [ignore])
+      AT_CHECK([$FGREP " $flag_prefix-foo" stdout], [], [ignore])
+    done
+  done
+done
+
+AT_CLEANUP