[Lldb-commits] [lldb] r190945 - SymbolVendor/ELF is actually referenced by default by lib/Makefile on all
Daniel Malea
daniel.malea at intel.com
Wed Sep 18 09:33:12 PDT 2013
Author: dmalea
Date: Wed Sep 18 11:33:12 2013
New Revision: 190945
URL: http://llvm.org/viewvc/llvm-project?rev=190945&view=rev
Log:
SymbolVendor/ELF is actually referenced by default by lib/Makefile on all
platforms and called in lldb.cpp while it is built only on some, excluding OSX.
There is no reason to not build it then by default on all platforms.
This fixes build on OSX using llvm configure & make scripts.
Patch (2 of 2) by Adam Strzelecki!
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=190945&r1=190944&r2=190945&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Wed Sep 18 11:33:12 2013
@@ -20,11 +20,8 @@ DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 A
LanguageRuntime/CPlusPlus/ItaniumABI \
LanguageRuntime/ObjC/AppleObjCRuntime \
DynamicLoader/POSIX-DYLD \
- OperatingSystem/Python
-
-ifeq ($(HOST_OS),MingW)
-DIRS += SymbolVendor/ELF
-endif
+ OperatingSystem/Python \
+ SymbolVendor/ELF
ifeq ($(HOST_OS),Darwin)
DIRS += Process/MacOSX-Kernel
@@ -38,13 +35,11 @@ endif
ifeq ($(HOST_OS),Linux)
DIRS += DynamicLoader/MacOSX-DYLD
DIRS += Process/Linux Process/POSIX
-DIRS += SymbolVendor/ELF
DIRS += Process/elf-core
endif
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
DIRS += Process/FreeBSD Process/POSIX
-DIRS += SymbolVendor/ELF
DIRS += Process/elf-core
endif
More information about the lldb-commits
mailing list