]> git.saurik.com Git - bison.git/commitdiff
* m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Feb 2006 08:00:30 +0000 (08:00 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Feb 2006 08:00:30 +0000 (08:00 +0000)
configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
messes up because C++ code is compiled in 32-bit mode but linked
in 64-bit mode.

ChangeLog
m4/cxx.m4

index 982e1761a7f01be30845c6ae717ef9ada2507a62..0d3795a8a87fd399f0e1bb05a550bda84f8c0c80 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-02-09  Paul Eggert  <eggert@cs.ucla.edu>
+
+       More portability fixes for problems summarized by Nelson H. F. Beebe.
+
+       * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
+       configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
+       CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
+       LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
+       messes up because C++ code is compiled in 32-bit mode but linked
+       in 64-bit mode.
+
 2006-02-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        More portability fixes for problems summarized by Nelson H. F. Beebe.
 2006-02-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        More portability fixes for problems summarized by Nelson H. F. Beebe.
index a63593f2077484deb809b59d5d37def5d27b40d3..bae56520d3f1f435de477ba62345a006ffa9e2a1 100644 (file)
--- a/m4/cxx.m4
+++ b/m4/cxx.m4
@@ -25,7 +25,8 @@ AC_DEFUN([BISON_TEST_FOR_WORKING_CXX_COMPILER],
  AC_CACHE_CHECK([whether $CXX builds executables that work],
    bison_cv_cxx_works,
    [AC_LANG_PUSH([C++])
  AC_CACHE_CHECK([whether $CXX builds executables that work],
    bison_cv_cxx_works,
    [AC_LANG_PUSH([C++])
-    AC_RUN_IFELSE(
+    bison_cv_cxx_works=no
+    AC_COMPILE_IFELSE(
       [AC_LANG_PROGRAM(
         [#include <cstdlib>
          #include <iostream>
       [AC_LANG_PROGRAM(
         [#include <cstdlib>
          #include <iostream>
@@ -41,9 +42,12 @@ AC_DEFUN([BISON_TEST_FOR_WORKING_CXX_COMPILER],
          for (i = m.begin (); i != m.end (); ++i)
            if (i->first != 4)
              return 1;])],
          for (i = m.begin (); i != m.end (); ++i)
            if (i->first != 4)
              return 1;])],
-      [bison_cv_cxx_works=yes],
-      [bison_cv_cxx_works=no],
-      [bison_cv_cxx_works=cross])
+      [AS_IF([AC_TRY_COMMAND([$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_objext $LIBS >&AS_MESSAGE_LOG_FD])],
+        [AS_IF([test "$cross_compiling" = yes],
+           [bison_cv_cxx_works=cross],
+           [AS_IF([AC_TRY_COMMAND(./conftest$ac_exeext)],
+              [bison_cv_cxx_works=yes])])])
+       rm -f conftest$ac_exeext])
     AC_LANG_POP([C++])])
 
  case $bison_cv_cxx_works in
     AC_LANG_POP([C++])])
 
  case $bison_cv_cxx_works in