mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-14 12:56:59 +02:00
[common] use abi::__cxa_demangle for demangling using the system's glibcxx/libc++
Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
parent
bf115ef5a7
commit
c54a09bbcd
3 changed files with 37 additions and 17 deletions
|
|
@ -253,7 +253,12 @@ if (lz4_ADDED)
|
|||
endif()
|
||||
|
||||
target_link_libraries(common PUBLIC fmt::fmt stb::headers Threads::Threads unordered_dense::unordered_dense)
|
||||
target_link_libraries(common PRIVATE lz4::lz4 LLVM::Demangle zstd::zstd)
|
||||
target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd)
|
||||
|
||||
# Please refer to src/common/demangle.cpp
|
||||
if (MSVC)
|
||||
target_link_libraries(common PRIVATE LLVM::Demangle)
|
||||
endif()
|
||||
|
||||
if(ANDROID)
|
||||
# For ASharedMemory_create
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue