]> git.saurik.com Git - wxWidgets.git/commitdiff
-o flag must be after PIC flag for gcc under HPUX
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Thu, 5 Sep 2002 16:15:06 +0000 (16:15 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Thu, 5 Sep 2002 16:15:06 +0000 (16:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16988 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure
configure.in

index a609f55ec2c246be7ec96b230307e2d15007446a..9252632087773d32f5238eab4ebdcacb14399877 100755 (executable)
--- a/configure
+++ b/configure
@@ -15261,7 +15261,7 @@ if test "$wxUSE_SHARED" = "yes"; then
     case "${host}" in
       *-hp-hpux* )
                 if test "$GCC" = "yes"; then
-            SHARED_LD="${SHARED_LD} ${PIC_FLAG}"
+                        SHARED_LD="${CXX} -shared ${PIC_FLAG} -o"
         else
                         LDFLAGS="$LDFLAGS -L/usr/lib"
 
index f1460e74e1119b16032935122d1ff7216b6f954b..d662e5a5f5c08c28bf98315176fce9abf4ad8163 100644 (file)
@@ -2673,7 +2673,8 @@ if test "$wxUSE_SHARED" = "yes"; then
       *-hp-hpux* )
         dnl default settings are good for gcc but not for the native HP-UX
         if test "$GCC" = "yes"; then
-            SHARED_LD="${SHARED_LD} ${PIC_FLAG}"
+            dnl -o flag must be after PIC flag
+            SHARED_LD="${CXX} -shared ${PIC_FLAG} -o"
         else
             dnl no idea why it wants it, but it does
             LDFLAGS="$LDFLAGS -L/usr/lib"