diff --git a/ChangeLog b/ChangeLog index 3d3046cc..46ea32d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-02-07 Anthony Green + + * configure.ac: Fix GCC usage test. + * configure: Rebuilt. + 2013-02-07 Anthony Green * testsuite/libffi.call/cls_double_va.c (main): Replace // style diff --git a/README b/README index 55a6c432..4a478646 100644 --- a/README +++ b/README @@ -167,6 +167,7 @@ See the ChangeLog files for details. Add support for PaX enabled kernels with MPROTECT. Add support for native vendor compilers on Solaris and AIX. + Work around LLVM/GCC interoperability issue on x86_64. 3.0.11 Apr-11-12 Lots of build fixes. diff --git a/configure b/configure index 30c468c3..696081a5 100755 --- a/configure +++ b/configure @@ -14805,7 +14805,7 @@ fi # These variables are only ever used when we cross-build to X86_WIN32. # And we only support this with GCC, so... -if test x"$GCC" != x"no"; then +if test "x$GCC" = "xyes"; then if test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then toolexecdir='$(exec_prefix)/$(target_alias)' diff --git a/configure.ac b/configure.ac index 4a2904ec..f44ed8fd 100644 --- a/configure.ac +++ b/configure.ac @@ -521,7 +521,7 @@ AC_ARG_ENABLE(purify-safety, # These variables are only ever used when we cross-build to X86_WIN32. # And we only support this with GCC, so... -if test x"$GCC" != x"no"; then +if test "x$GCC" = "xyes"; then if test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then toolexecdir='$(exec_prefix)/$(target_alias)'