diff options
author | Pavel Labath <labath@google.com> | 2018-06-29 09:22:07 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-06-29 09:22:07 +0000 |
commit | 564a33a6e85e74e1cb883da75e776de1d8039a69 (patch) | |
tree | 5290d8512a17be65c377dfc890a9cd2a24faf031 /lldb/packages/Python/lldbsuite/test | |
parent | e17e9579eb13f79eefe49349faecf8f1966e0d7b (diff) | |
download | bcm5719-llvm-564a33a6e85e74e1cb883da75e776de1d8039a69.tar.gz bcm5719-llvm-564a33a6e85e74e1cb883da75e776de1d8039a69.zip |
Fix TestLoadUsingPaths on linux
we need to explicitly link the test program with -ldl for the dlopen
function to be available.
llvm-svn: 335956
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile index 5ec8f23a1cb..c4c3cfe3c18 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile @@ -1,6 +1,7 @@ LEVEL := ../../make CXX_SOURCES := main.cpp +LD_EXTRAS := -ldl include $(LEVEL)/Makefile.rules |