From 6c94df6e2dd7d6ce21e738df592ada510b75d9a5 Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Thu, 9 Jul 2020 19:37:37 +0200 Subject: [PATCH] macos: add path relative ../lib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index adce7e37..71c751bd 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ else ifndef CONFIG_OSX LINK_LIBTCC += -Wl,-rpath,"$(libdir)" else - LINK_LIBTCC += -Wl,-rpath,"@executable_path/$(TOP)" + LINK_LIBTCC += -Wl,-rpath,"@executable_path/$(TOP)" -Wl,-rpath,"@executable_path/$(TOP)/../lib" DYLIBVER += -current_version $(VERSION) DYLIBVER += -compatibility_version $(VERSION) endif -- 2.11.4.GIT