From 5e28b35f2b202f96ed412b5687251f672b16ae90 Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 10 Oct 2016 23:30:34 +0400 Subject: [PATCH] OS X: correctly parse output of otool -D. In the past this relied on otool -XD not printing the name of the library itself, only the install name, but that doesn't work anymore as of 10.12. --- src/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b3e0b17..5c53130 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -342,8 +342,9 @@ if(APPLE) set(fixups) foreach(lib ${platform_BUNDLED_LIBS}) get_filename_component(name ${lib} NAME) - execute_process(COMMAND otool -XD ${lib} + execute_process(COMMAND otool -D ${lib} OUTPUT_VARIABLE canonical_lib OUTPUT_STRIP_TRAILING_WHITESPACE) + string(REGEX REPLACE "^.+:\n" "" canonical_lib ${canonical_lib}) add_custom_command(TARGET solvespace POST_BUILD COMMAND install_name_tool -change ${canonical_lib} @executable_path/${name} $