Commit 79650e40 authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Only require frame pointer on the MSVCRT side.

parent 4091758b
......@@ -19319,7 +19319,7 @@ fi
printf "%s\n" "$ac_cv_cflags__fno_omit_frame_pointer" >&6; }
if test "x$ac_cv_cflags__fno_omit_frame_pointer" = xyes
then :
EXTRACFLAGS="$EXTRACFLAGS -fno-omit-frame-pointer"
MSVCRTFLAGS="$MSVCRTFLAGS -fno-omit-frame-pointer"
fi ;;
*x86_64*)
case $host_os in
......
......@@ -1900,7 +1900,7 @@ char*f(const char *h,char n) {return strchr(h,n);}]])],[ac_cv_c_logicalop_noisy=
case $host_cpu in
dnl gcc-4.6+ omits frame pointers by default, breaking some copy protections
*i[[3456789]]86*) WINE_TRY_CFLAGS([-fno-omit-frame-pointer]) ;;
*i[[3456789]]86*) WINE_TRY_CFLAGS([-fno-omit-frame-pointer],[MSVCRTFLAGS="$MSVCRTFLAGS -fno-omit-frame-pointer"]) ;;
*x86_64*)
case $host_os in
dnl Mingw uses Windows 64-bit types, not Unix ones
......
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