Add stacktrace symbol demangling

This commit is contained in:
Kelebek1 2023-01-13 21:06:13 +00:00
parent 0e8f98a441
commit 80a55c1663
12 changed files with 7287 additions and 15 deletions

View file

@ -154,3 +154,7 @@ endif()
if (YUZU_USE_EXTERNAL_VULKAN_HEADERS)
add_subdirectory(Vulkan-Headers EXCLUDE_FROM_ALL)
endif()
add_library(demangle STATIC)
target_include_directories(demangle PUBLIC ./demangle)
target_sources(demangle PRIVATE demangle/ItaniumDemangle.cpp)