[Lldb-commits] [lldb] r200548 - Add libs needed by iohandler merge to Makefile for FreeBSD
Ed Maste
emaste at freebsd.org
Fri Jan 31 06:30:11 PST 2014
Author: emaste
Date: Fri Jan 31 08:30:11 2014
New Revision: 200548
URL: http://llvm.org/viewvc/llvm-project?rev=200548&view=rev
Log:
Add libs needed by iohandler merge to Makefile for FreeBSD
Copied from the Linux case added in r200263. Discovered by the FreeBSD
buildbot - I tested the branch with cmake.
Modified:
lldb/trunk/lib/Makefile
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=200548&r1=200547&r2=200548&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Fri Jan 31 08:30:11 2014
@@ -160,5 +160,6 @@ ifeq ($(HOST_OS),FreeBSD)
# Allow unresolved symbols.
LLVMLibsOptions += -Wl,--allow-shlib-undefined
# Link in python
- LLVMLibsOptions += $(PYTHON_BUILD_FLAGS) -lrt -L/usr/local/lib -lexecinfo
+ LLVMLibsOptions += $(PYTHON_BUILD_FLAGS) -lrt -L/usr/local/lib -lexecinfo \
+ -ledit -lncurses -lpanel
endif
More information about the lldb-commits
mailing list