diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/load_unload/Makefile')
| -rw-r--r-- | packages/Python/lldbsuite/test/functionalities/load_unload/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile b/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile index 779745c4d26c..9a954a201cf2 100644 --- a/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile +++ b/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile @@ -8,11 +8,17 @@ CXX_SOURCES := main.cpp include $(LEVEL)/Makefile.rules .PHONY: -a.out: lib_a lib_b lib_c lib_d hidden_lib_d +a.out: lib_a lib_b lib_c lib_d hidden_lib_d install_name_tool lib_%: $(MAKE) -f $*.mk +install_name_tool: +ifeq ($(OS),Darwin) + install_name_tool -id @executable_path/libloadunload_d.dylib libloadunload_d.dylib +endif + + hidden_lib_d: $(MAKE) -C hidden |
