[Lldb-commits] [lldb] r314731 - Move install_name_tool to a separate make target.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 2 15:11:22 PDT 2017


Author: jmolenda
Date: Mon Oct  2 15:11:22 2017
New Revision: 314731

URL: http://llvm.org/viewvc/llvm-project?rev=314731&view=rev
Log:
Move install_name_tool to a separate make target.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile?rev=314731&r1=314730&r2=314731&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile Mon Oct  2 15:11:22 2017
@@ -8,10 +8,12 @@ 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




More information about the lldb-commits mailing list