36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
Index: libffi/ChangeLog
|
|
===================================================================
|
|
--- libffi.orig/ChangeLog
|
|
+++ libffi/ChangeLog
|
|
@@ -46,6 +46,11 @@
|
|
Use them to handle ELF vs. ECOFF differences.
|
|
[__osf__] (_GLOBAL__F_ffi_call_osf): Define.
|
|
|
|
+2011-02-15 Anthony Green <green@moxielogic.com>
|
|
+
|
|
+ * m4/ax_cc_maxopt.m4: Don't -malign-double or use -ffast-math.
|
|
+ * configure: Rebuilt.
|
|
+
|
|
2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* configure: Regenerate.
|
|
Index: libffi/m4/ax_cc_maxopt.m4
|
|
===================================================================
|
|
--- libffi.orig/m4/ax_cc_maxopt.m4
|
|
+++ libffi/m4/ax_cc_maxopt.m4
|
|
@@ -140,14 +140,10 @@ if test "$ac_test_CFLAGS" != "set"; then
|
|
# default optimization flags for gcc on all systems
|
|
CFLAGS="-O3 -fomit-frame-pointer"
|
|
|
|
- # -malign-double for x86 systems
|
|
- AX_CHECK_COMPILER_FLAGS(-malign-double, CFLAGS="$CFLAGS -malign-double")
|
|
-
|
|
# -fstrict-aliasing for gcc-2.95+
|
|
AX_CHECK_COMPILER_FLAGS(-fstrict-aliasing,
|
|
CFLAGS="$CFLAGS -fstrict-aliasing")
|
|
|
|
- # note that we enable "unsafe" fp optimization with other compilers, too
|
|
AX_CHECK_COMPILER_FLAGS(-ffast-math, CFLAGS="$CFLAGS -ffast-math")
|
|
|
|
AX_GCC_ARCHFLAG($acx_maxopt_portable)
|