mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 06:18:34 +02:00
* Make Win32 SEH support enabled by default. If necessary to disable, compiler should be cycled with OPT=-dDISABLE_WIN32_SEH. Mantis #12974.
git-svn-id: trunk@43830 -
This commit is contained in:
parent
1f5efe2a95
commit
171142a724
@ -55,9 +55,9 @@ unit cpunode;
|
||||
n386mem,
|
||||
n386set,
|
||||
n386inl,
|
||||
{$ifdef TEST_WIN32_SEH}
|
||||
{$ifndef DISABLE_WIN32_SEH}
|
||||
n386flw,
|
||||
{$endif TEST_WIN32_SEH}
|
||||
{$endif not DISABLE_WIN32_SEH}
|
||||
n386mat,
|
||||
{ symtable }
|
||||
symcpu,
|
||||
|
@ -4453,10 +4453,10 @@ begin
|
||||
def_system_macro('FPC_USE_WIN64_SEH');
|
||||
{$endif DISABLE_WIN64_SEH}
|
||||
|
||||
{$ifdef TEST_WIN32_SEH}
|
||||
{$ifndef DISABLE_WIN32_SEH}
|
||||
if target_info.system=system_i386_win32 then
|
||||
def_system_macro('FPC_USE_WIN32_SEH');
|
||||
{$endif TEST_WIN32_SEH}
|
||||
{$endif not DISABLE_WIN32_SEH}
|
||||
|
||||
{$ifdef ARM}
|
||||
{ define FPC_DOUBLE_HILO_SWAPPED if needed to properly handle doubles in RTL }
|
||||
|
Loading…
Reference in New Issue
Block a user