Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 47ed57f3 authored by TAVERNIER Vincent's avatar TAVERNIER Vincent
Browse files

Fix libunwind native lib detection

parent 633247a1
No related branches found
No related tags found
No related merge requests found
...@@ -123,16 +123,12 @@ target_include_directories(shadertoy PRIVATE ...@@ -123,16 +123,12 @@ target_include_directories(shadertoy PRIVATE
${SOIL_INCLUDE_DIRS} ${SOIL_INCLUDE_DIRS}
${JPEG_INCLUDE_DIRS}) ${JPEG_INCLUDE_DIRS})
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "amd64") execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_C_FLAGS} -dumpmachine
set(UNWIND_ARCH "x86_64") OUTPUT_VARIABLE COMPILER_ARCH
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$") OUTPUT_STRIP_TRAILING_WHITESPACE)
set(UNWIND_ARCH "x86") string(REPLACE "-" ";" COMPILER_ARCH_LIST ${COMPILER_ARCH})
else() list(GET COMPILER_ARCH_LIST 0 COMPILER_ARCH_NAME)
if (UNWIND_FOUND) string(REGEX REPLACE "i.86" "x86" UNWIND_ARCH ${COMPILER_ARCH_NAME})
message("-- Unsupported architecture for libunwind")
set(UNWIND_ARCH OFF)
endif()
endif()
# Add UNWIND if found # Add UNWIND if found
if (UNWIND_FOUND AND UNWIND_ARCH) if (UNWIND_FOUND AND UNWIND_ARCH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment