mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
[PSEH] Add implementation for GCC amd64
Also, put include directory next to the library and use target_include_directories(.. INTERFACE ..) to get this right. This is because : - Having includes & implementation in two different places buggers me - This makes sure that there is no "if it compiles everything is fine" behaviour from anyone because now even static libraries need it for GCC amd64 build Also add __USE_PSEH2__ define for the non SEH-aware compilers out there and use it in a few headers where we define macros involving __try
This commit is contained in:
parent
d31856cda1
commit
ba74a05a17
14 changed files with 230 additions and 50 deletions
|
@ -40,12 +40,13 @@ add_subdirectory(widl)
|
|||
add_subdirectory(wpp)
|
||||
add_subdirectory(xml2sdb)
|
||||
|
||||
if ((ARCH STREQUAL "amd64") AND (TARGET_COMPILER_ID STREQUAL "GNU"))
|
||||
add_subdirectory(gcc_plugin_seh)
|
||||
endif()
|
||||
|
||||
if(NOT MSVC)
|
||||
add_subdirectory(log2lines)
|
||||
add_subdirectory(rsym)
|
||||
if (ARCH STREQUAL "amd64")
|
||||
add_subdirectory(gcc_plugin_seh)
|
||||
endif()
|
||||
|
||||
add_host_tool(pefixup pefixup.c)
|
||||
if (ARCH STREQUAL "amd64")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue