forked from OSchip/llvm-project
Remove the "/" from the end of rpath paths. Having it there causes the
paths we get from dladdr to have "//" in it internally, and while that is formally correct it is just asking for somebody to misparse it... llvm-svn: 226886
This commit is contained in:
parent
d2a7eda2b7
commit
0895e3406c
|
@ -6899,7 +6899,7 @@
|
|||
__TEXT,
|
||||
__info_plist,
|
||||
"$(PROJECT_DIR)/tools/driver/lldb-Info.plist",
|
||||
"-Wl,-rpath,@loader_path/../../Library/PrivateFrameworks/",
|
||||
"-Wl,-rpath,@loader_path/../../Library/PrivateFrameworks",
|
||||
"-Wl,-rpath,@loader_path/../../../SharedFrameworks",
|
||||
"-Wl,-rpath,@loader_path/../../System/Library/PrivateFrameworks",
|
||||
"-Wl,-rpath,@loader_path/../../Library/PrivateFrameworks",
|
||||
|
@ -7723,7 +7723,7 @@
|
|||
__TEXT,
|
||||
__info_plist,
|
||||
"$(PROJECT_DIR)/tools/driver/lldb-Info.plist",
|
||||
"-Wl,-rpath,@loader_path/",
|
||||
"-Wl,-rpath,@loader_path",
|
||||
);
|
||||
PRODUCT_NAME = lldb;
|
||||
USER_HEADER_SEARCH_PATHS = "$(SRCROOT)/include $(SRCROOT)/source";
|
||||
|
@ -7751,7 +7751,7 @@
|
|||
__TEXT,
|
||||
__info_plist,
|
||||
"$(PROJECT_DIR)/tools/driver/lldb-Info.plist",
|
||||
"-Wl,-rpath,@loader_path/",
|
||||
"-Wl,-rpath,@loader_path",
|
||||
);
|
||||
PRODUCT_NAME = lldb;
|
||||
USER_HEADER_SEARCH_PATHS = "$(SRCROOT)/include $(SRCROOT)/source";
|
||||
|
@ -7883,7 +7883,7 @@
|
|||
__TEXT,
|
||||
__info_plist,
|
||||
"$(PROJECT_DIR)/tools/driver/lldb-Info.plist",
|
||||
"-Wl,-rpath,@loader_path/",
|
||||
"-Wl,-rpath,@loader_path",
|
||||
);
|
||||
PRODUCT_NAME = lldb;
|
||||
USER_HEADER_SEARCH_PATHS = "$(SRCROOT)/include $(SRCROOT)/source";
|
||||
|
|
Loading…
Reference in New Issue