[Lldb-commits] [lldb] r108208 - /lldb/trunk/source/Plugins/Makefile

Greg Clayton gclayton at apple.com
Mon Jul 12 16:11:00 PDT 2010


Author: gclayton
Date: Mon Jul 12 18:11:00 2010
New Revision: 108208

URL: http://llvm.org/viewvc/llvm-project?rev=108208&view=rev
Log:
Don't build the SymbolVendor/MacOSX when not building on Darwin.


Modified:
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=108208&r1=108207&r2=108208&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Mon Jul 12 18:11:00 2010
@@ -12,10 +12,10 @@
 include $(LLDB_LEVEL)/../../Makefile.config
 
 
-DIRS := ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm  ObjectContainer/BSD-Archive ObjectFile/ELF  SymbolFile/DWARF SymbolFile/Symtab SymbolVendor/MacOSX
+DIRS := ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm  ObjectContainer/BSD-Archive ObjectFile/ELF  SymbolFile/DWARF SymbolFile/Symtab
 
 ifeq ($(HOST_OS),Darwin)
-	DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O ObjectFile/Mach-O Process/gdb-remote Process/Utility
+	DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O ObjectFile/Mach-O Process/gdb-remote Process/Utility SymbolVendor/MacOSX
 endif
 
 include $(LLDB_LEVEL)/Makefile





More information about the lldb-commits mailing list