diff options
author | Todd Fiala <tfiala@google.com> | 2014-02-28 21:55:46 +0000 |
---|---|---|
committer | Todd Fiala <tfiala@google.com> | 2014-02-28 21:55:46 +0000 |
commit | 620ea83926b0520dc9dea0c022103a6deb2e8719 (patch) | |
tree | 89967087bef84c91a65d6f059071f7bf42a2f14c /lldb/lib | |
parent | f92205336de5d650944db753d126a364f71d02ad (diff) | |
download | bcm5719-llvm-620ea83926b0520dc9dea0c022103a6deb2e8719.tar.gz bcm5719-llvm-620ea83926b0520dc9dea0c022103a6deb2e8719.zip |
Fixed configure-based build on OS X.
This change adds a missing include path to the
ObjC LanguageRuntime path to the MacOSX SystemRuntime
plugin's Makefile.
It also adds the panel and curses library to the liblldb
shared library linkage step.
Changes by Jevin Sweval with a minor tweak.
llvm-svn: 202547
Diffstat (limited to 'lldb/lib')
-rw-r--r-- | lldb/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 6d23929e755..d16ffe0a62c 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -130,7 +130,7 @@ ifeq ($(HOST_OS),Darwin) LLVMLibsOptions += -framework Foundation -framework CoreFoundation LLVMLibsOptions += -framework CoreServices -framework Carbon -framework Security LLVMLibsOptions += -framework DebugSymbols $(PYTHON_BUILD_FLAGS) -lobjc - LLVMLibsOptions += -lxml2 + LLVMLibsOptions += -lxml2 -ledit -lpanel -lcurses ifneq ($(EXPORTED_SYMBOL_FILE),) LLVMLibsOptions += -Wl,-exported_symbols_list -Wl,"$(EXPORTED_SYMBOL_FILE)" endif |