Fix GCC usage test and update README

This commit is contained in:
Anthony Green
2013-02-07 15:29:22 -05:00
parent f3a4f3fdde
commit 176aa9d2e2
4 changed files with 8 additions and 2 deletions

View File

@@ -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> 2013-02-07 Anthony Green <green@moxielogic.com>
* testsuite/libffi.call/cls_double_va.c (main): Replace // style * testsuite/libffi.call/cls_double_va.c (main): Replace // style

1
README
View File

@@ -167,6 +167,7 @@ See the ChangeLog files for details.
Add support for PaX enabled kernels with MPROTECT. Add support for PaX enabled kernels with MPROTECT.
Add support for native vendor compilers on Add support for native vendor compilers on
Solaris and AIX. Solaris and AIX.
Work around LLVM/GCC interoperability issue on x86_64.
3.0.11 Apr-11-12 3.0.11 Apr-11-12
Lots of build fixes. Lots of build fixes.

2
configure vendored
View File

@@ -14805,7 +14805,7 @@ fi
# These variables are only ever used when we cross-build to X86_WIN32. # These variables are only ever used when we cross-build to X86_WIN32.
# And we only support this with GCC, so... # 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" && if test -n "$with_cross_host" &&
test x"$with_cross_host" != x"no"; then test x"$with_cross_host" != x"no"; then
toolexecdir='$(exec_prefix)/$(target_alias)' toolexecdir='$(exec_prefix)/$(target_alias)'

View File

@@ -521,7 +521,7 @@ AC_ARG_ENABLE(purify-safety,
# These variables are only ever used when we cross-build to X86_WIN32. # These variables are only ever used when we cross-build to X86_WIN32.
# And we only support this with GCC, so... # 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" && if test -n "$with_cross_host" &&
test x"$with_cross_host" != x"no"; then test x"$with_cross_host" != x"no"; then
toolexecdir='$(exec_prefix)/$(target_alias)' toolexecdir='$(exec_prefix)/$(target_alias)'