configure.ac (AM_LTLDFLAGS): Add -no-undefine for x64 windows target.
authorKai Tietz <ktietz@redhat.com>
Fri, 10 Feb 2012 16:44:08 +0000 (17:44 +0100)
committerKai Tietz <ktietz@gcc.gnu.org>
Fri, 10 Feb 2012 16:44:08 +0000 (17:44 +0100)
        * configure.ac (AM_LTLDFLAGS): Add -no-undefine for x64
        windows target.
        * configure: Regenerated.

From-SVN: r184103

libffi/ChangeLog
libffi/configure
libffi/configure.ac

index 47d31fa73c1f942287ba2fb1c41d270b1574296f..3521bdc0044386caaf47193f5f914b5af932cf6b 100644 (file)
@@ -1,3 +1,9 @@
+2012-02-10  Kai Tietz  <ktietz@redhat.com>
+
+       * configure.ac (AM_LTLDFLAGS): Add -no-undefine for x64
+       windows target.
+       * configure: Regenerated.
+       
 2012-02-08  Kai Tietz  <ktietz@redhat.com>
 
        * src/prep_cif.c (ffi_prep_cif): Allow for X86_WIN32
index 7a7d24559c3fe74a57e24371505efbf930a1bd45..1591495390994204724765b45cfbfaa6a13e3b5f 100755 (executable)
@@ -11435,6 +11435,15 @@ case "$host" in
 
   x86_64-*-cygwin* | x86_64-*-mingw*)
        TARGET=X86_WIN64; TARGETDIR=x86
+       # All mingw/cygwin/win32 builds require -no-undefined for sharedlib.
+       # We must also check with_cross_host to decide if this is a native
+       # or cross-build and select where to install dlls appropriately.
+       if test -n "$with_cross_host" &&
+          test x"$with_cross_host" != x"no"; then
+         AM_LTLDFLAGS='-no-undefined -bindir "$(toolexeclibdir)"';
+       else
+         AM_LTLDFLAGS='-no-undefined -bindir "$(bindir)"';
+       fi
        ;;
 
   x86_64-*-*)
index 0788b3165dd14ce9cbf3dfb008d690152fdb5c63..5036e25a288c7a23c71d2d29d80beb497b194588 100644 (file)
@@ -166,6 +166,15 @@ case "$host" in
 
   x86_64-*-cygwin* | x86_64-*-mingw*)
        TARGET=X86_WIN64; TARGETDIR=x86
+       # All mingw/cygwin/win32 builds require -no-undefined for sharedlib.
+       # We must also check with_cross_host to decide if this is a native
+       # or cross-build and select where to install dlls appropriately.
+       if test -n "$with_cross_host" &&
+          test x"$with_cross_host" != x"no"; then
+         AM_LTLDFLAGS='-no-undefined -bindir "$(toolexeclibdir)"';
+       else
+         AM_LTLDFLAGS='-no-undefined -bindir "$(bindir)"';
+       fi
        ;;
 
   x86_64-*-*)