mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[PSEH] Fix test on non-existent variable, so GCC x64 now always uses native SEH instead of PSEH
This commit is contained in:
parent
158235bdd5
commit
349e0ddde8
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ elseif(ARCH STREQUAL "arm")
|
|||
arm/seh_prolog.s)
|
||||
endif()
|
||||
|
||||
if(MSVC OR (GCC AND ARCH STREQUAL "amd64"))
|
||||
if(MSVC OR (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND ARCH STREQUAL "amd64"))
|
||||
|
||||
list(APPEND SOURCE dummy.c)
|
||||
add_asm_files(pseh_asm ${ASM_SOURCE})
|
||||
|
|
Loading…
Reference in a new issue