From 90e53d5f1e3eadd3534b6fa1b0e3404b3a7cae1e Mon Sep 17 00:00:00 2001 From: cah Date: Fri, 17 Dec 2021 22:11:54 +0100 Subject: [PATCH] Fix inexplicable change to dylib paths with new VM. After re-creating the macOS build VM, suddenly liblwext4 ends up linked as @rpath/liblwext4.dylib which breaks the DoM make_dmg script. I can only guess this is due to me installing a newer CMake. --- cscript | 1 + 1 file changed, 1 insertion(+) diff --git a/cscript b/cscript index 4fad21a..1dffd4a 100644 --- a/cscript +++ b/cscript @@ -40,6 +40,7 @@ def make_toolchain(filename, arch, sdk_prefix, sdk): print('SET(CMAKE_C_FLAGS_RELEASE "-O2 -g -ggdb3" CACHE INTERNAL "c release compiler flags")', file=f) print('SET(CMAKE_CXX_FLAGS_RELEASE "-O2 -g -ggdb3" CACHE INTERNAL "cxx release compiler flags")', file=f) print('SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")', file=f) + print('SET(CMAKE_SKIP_RPATH YES)', file=f) def build(target, options): -- 2.30.2