mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:05:43 +00:00
[CPPRT] Add cpprt for GCC, tool
- Link it to libsup++ - Add __cxa_pure_virtual
This commit is contained in:
parent
ea87f9102b
commit
81b8d07acd
4 changed files with 36 additions and 14 deletions
|
@ -3,20 +3,30 @@ include_directories(
|
|||
${REACTOS_SOURCE_DIR}/sdk/lib/crt/include
|
||||
${REACTOS_SOURCE_DIR}/sdk/include/c++)
|
||||
|
||||
list(APPEND SOURCE
|
||||
ehvec.cpp
|
||||
new_nothrow.cpp
|
||||
terminate.cpp
|
||||
typeinfo.cpp)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
add_asm_files(cpprt_asm i386/cpprt.s)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
add_asm_files(cpprt_asm amd64/cpprt.s)
|
||||
elseif(ARCH STREQUAL "arm")
|
||||
add_asm_files(cpprt_asm arm/cpprt.s)
|
||||
# We need different things, depending on the compiler
|
||||
if(MSVC)
|
||||
list(APPEND SOURCE
|
||||
ehvec.cpp
|
||||
new_nothrow.cpp
|
||||
terminate.cpp
|
||||
typeinfo.cpp)
|
||||
if(ARCH STREQUAL "i386")
|
||||
add_asm_files(cpprt_asm i386/cpprt.s)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
add_asm_files(cpprt_asm amd64/cpprt.s)
|
||||
elseif(ARCH STREQUAL "arm")
|
||||
add_asm_files(cpprt_asm arm/cpprt.s)
|
||||
endif()
|
||||
else()
|
||||
list(APPEND SOURCE
|
||||
__cxa_pure_virtual.cpp)
|
||||
endif()
|
||||
|
||||
add_library(cpprt ${SOURCE} ${cpprt_asm})
|
||||
set_target_cpp_properties(cpprt WITH_EXCEPTIONS)
|
||||
add_dependencies(cpprt xdk)
|
||||
|
||||
# On GCC builds, we need to link against libsupc++
|
||||
if(NOT MSVC)
|
||||
target_link_libraries(cpprt libsupc++)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue