From: Pavel Labath Date: Fri, 29 Jun 2018 09:22:07 +0000 (+0000) Subject: Fix TestLoadUsingPaths on linux X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=564a33a6e85e74e1cb883da75e776de1d8039a69;p=platform%2Fupstream%2Fllvm.git Fix TestLoadUsingPaths on linux we need to explicitly link the test program with -ldl for the dlopen function to be available. llvm-svn: 335956 --- 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 5ec8f23..c4c3cfe 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