mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 01:33:03 +00:00
* 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.
This commit is contained in:
11
ChangeLog
11
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>
|
2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
More portability fixes for problems summarized by Nelson H. F. Beebe.
|
More portability fixes for problems summarized by Nelson H. F. Beebe.
|
||||||
|
|||||||
12
m4/cxx.m4
12
m4/cxx.m4
@@ -25,7 +25,8 @@ AC_DEFUN([BISON_TEST_FOR_WORKING_CXX_COMPILER],
|
|||||||
AC_CACHE_CHECK([whether $CXX builds executables that work],
|
AC_CACHE_CHECK([whether $CXX builds executables that work],
|
||||||
bison_cv_cxx_works,
|
bison_cv_cxx_works,
|
||||||
[AC_LANG_PUSH([C++])
|
[AC_LANG_PUSH([C++])
|
||||||
AC_RUN_IFELSE(
|
bison_cv_cxx_works=no
|
||||||
|
AC_COMPILE_IFELSE(
|
||||||
[AC_LANG_PROGRAM(
|
[AC_LANG_PROGRAM(
|
||||||
[#include <cstdlib>
|
[#include <cstdlib>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@@ -41,9 +42,12 @@ AC_DEFUN([BISON_TEST_FOR_WORKING_CXX_COMPILER],
|
|||||||
for (i = m.begin (); i != m.end (); ++i)
|
for (i = m.begin (); i != m.end (); ++i)
|
||||||
if (i->first != 4)
|
if (i->first != 4)
|
||||||
return 1;])],
|
return 1;])],
|
||||||
[bison_cv_cxx_works=yes],
|
[AS_IF([AC_TRY_COMMAND([$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_objext $LIBS >&AS_MESSAGE_LOG_FD])],
|
||||||
[bison_cv_cxx_works=no],
|
[AS_IF([test "$cross_compiling" = yes],
|
||||||
[bison_cv_cxx_works=cross])
|
[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++])])
|
AC_LANG_POP([C++])])
|
||||||
|
|
||||||
case $bison_cv_cxx_works in
|
case $bison_cv_cxx_works in
|
||||||
|
|||||||
Reference in New Issue
Block a user