Linux: Resolve backtrace symbols directly from .symtab instead of .dynsym (#385)

This commit is contained in:
goeiecool9999 2022-10-20 13:12:16 +02:00 committed by GitHub
parent 271a4e4719
commit 9df1325d14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 182 additions and 16 deletions

View file

@ -43,6 +43,13 @@ PRIVATE
)
endif()
if(UNIX AND NOT APPLE)
target_sources(CemuCommon PRIVATE
ExceptionHandler/ELFSymbolTable.cpp
ExceptionHandler/ELFSymbolTable.h
)
endif()
# All the targets wanting to use the precompiled.h header
# have to link to CemuCommon
target_precompile_headers(CemuCommon PUBLIC precompiled.h)