Commit bdeeabeb authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Disable optimization on MacOS because of gcc bug.

parent 42b81ea0
...@@ -15300,6 +15300,7 @@ fi ...@@ -15300,6 +15300,7 @@ fi
*powerpc*) *powerpc*)
LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" ;; LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" ;;
esac esac
CFLAGS=`echo "$CFLAGS" | sed -e s/-O2/-O1/`
;; ;;
*) *)
DLLFLAGS="$DLLFLAGS -fPIC" DLLFLAGS="$DLLFLAGS -fPIC"
......
...@@ -1052,6 +1052,9 @@ case $host_os in ...@@ -1052,6 +1052,9 @@ case $host_os in
LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" dnl FIXME LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" dnl FIXME
;; ;;
esac esac
dnl Disable optimizations because of force_align_arg_pointer bug
dnl FIXME: should be removed when gcc is fixed
CFLAGS=`echo "$CFLAGS" | sed -e s/-O2/-O1/`
;; ;;
*) *)
DLLFLAGS="$DLLFLAGS -fPIC" DLLFLAGS="$DLLFLAGS -fPIC"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment