[Lldb-commits] [lldb] r109327 - in /lldb/trunk: lib/Makefile source/Plugins/Makefile
Stephen Wilson
wilsons at start.ca
Fri Jul 23 21:10:59 PDT 2010
Author: wilsons
Date: Fri Jul 23 23:10:59 2010
New Revision: 109327
URL: http://llvm.org/viewvc/llvm-project?rev=109327&view=rev
Log:
Fix makefiles to build properly on Darwin.
Patch by William Lynch!
Modified:
lldb/trunk/lib/Makefile
lldb/trunk/source/Plugins/Makefile
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=109327&r1=109326&r2=109327&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Fri Jul 23 23:10:59 2010
@@ -65,7 +65,7 @@
lldbPluginObjectFileMachO.a \
lldbPluginProcessGDBRemote.a \
lldbPluginUtility.a \
- lldbSymbolVendorMaxOSX.a
+ lldbPluginSymbolVendorMaxOSX.a
endif
ifeq ($(HOST_OS),Linux)
Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=109327&r1=109326&r2=109327&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Fri Jul 23 23:10:59 2010
@@ -18,7 +18,8 @@
ifeq ($(HOST_OS),Darwin)
DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
- ObjectFile/Mach-O Process/gdb-remote Process/Utility SymbolVendor/MacOSX
+ ObjectFile/Mach-O Process/gdb-remote Process/Utility \
+ SymbolVendor/MacOSX Process/MacOSX-User
endif
ifeq ($(HOST_OS),Linux)
More information about the lldb-commits
mailing list