configure: Warn for a 64-bit build without CFI directive support.
This commit is contained in:
parent
0c395c24e3
commit
8c60dc0706
|
@ -14649,6 +14649,10 @@ $as_echo "#define __ASM_CFI(str) str" >>confdefs.h
|
|||
else
|
||||
$as_echo "#define __ASM_CFI(str) \"\"" >>confdefs.h
|
||||
|
||||
if test "x$enable_win64" = "xyes"
|
||||
then
|
||||
as_fn_append wine_warnings "|building 64-bit Wine without support for CFI directives; exception handling will not work properly."
|
||||
fi
|
||||
fi
|
||||
|
||||
asm_func_code="$asm_func_header\" code \"$asm_func_trailer"
|
||||
|
|
|
@ -1987,6 +1987,10 @@ then
|
|||
AC_SUBST([UNWINDFLAGS],[-fasynchronous-unwind-tables])
|
||||
else
|
||||
AC_DEFINE([__ASM_CFI(str)],[""])
|
||||
if test "x$enable_win64" = "xyes"
|
||||
then
|
||||
WINE_WARNING([building 64-bit Wine without support for CFI directives; exception handling will not work properly.])
|
||||
fi
|
||||
fi
|
||||
|
||||
asm_func_code="$asm_func_header\" code \"$asm_func_trailer"
|
||||
|
|
Loading…
Reference in New Issue