Fix GCC usage test and update README
authorAnthony Green <green@moxielogic.com>
Thu, 7 Feb 2013 20:29:22 +0000 (15:29 -0500)
committerAnthony Green <green@moxielogic.com>
Thu, 7 Feb 2013 20:29:22 +0000 (15:29 -0500)
ChangeLog
README
configure
configure.ac

index 3d3046cc6b782ccb51a17578379d01ccaf3da840..46ea32d45d268fb3a4221b14fd681a6acd5602cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-02-07  Anthony Green <green@moxielogic.com>
+
+       * configure.ac: Fix GCC usage test.
+       * configure: Rebuilt.
+
 2013-02-07  Anthony Green <green@moxielogic.com>
 
        * testsuite/libffi.call/cls_double_va.c (main): Replace // style
diff --git a/README b/README
index 55a6c43237e0571f86ebb7200397a27b287fd1e9..4a47864615a5badc6784f3b3139ec065c61200f6 100644 (file)
--- 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.
index 30c468c3a7438a70654130b558373361ecb823f9..696081a52504914e08c48a097ebe64c480768b15 100755 (executable)
--- 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)'
index 4a2904ec220ff11a89fbd656a6cd51ff03daf66e..f44ed8fd4b18382fea4dcf10fcf4a7249cebf028 100644 (file)
@@ -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)'