https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a19ca409ae6dd035f04d9…
commit a19ca409ae6dd035f04d9e6079e4923fa339e044
Author: Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Fri Apr 9 12:36:04 2021 +0200
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Fri Apr 9 12:36:04 2021 +0200
[PSEH] Each amd64 compiler that we use support SEH
---
sdk/lib/pseh/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/lib/pseh/CMakeLists.txt b/sdk/lib/pseh/CMakeLists.txt
index ae121a820a7..3a5f46e282e 100644
--- a/sdk/lib/pseh/CMakeLists.txt
+++ b/sdk/lib/pseh/CMakeLists.txt
@@ -12,7 +12,7 @@ elseif(ARCH STREQUAL "arm")
arm/seh_prolog.s)
endif()
-if(MSVC OR (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND ARCH STREQUAL
"amd64"))
+if(MSVC OR ARCH STREQUAL "amd64")
list(APPEND SOURCE dummy.c)
add_asm_files(pseh_asm ${ASM_SOURCE})