mirror of
https://github.com/intel/llvm.git
synced 2026-01-21 12:19:23 +08:00
I did not take the patch for ClangExpressionParser.cpp since there was a recent change by Peter for the same line. Feel free to disagree. :-) Reference: ---------------------------------------------------------------------- r136580 | pcc | 2011-07-30 15:42:24 -0700 (Sat, 30 Jul 2011) | 3 lines Add reloc arg to standard JIT createJIT() Fixes non-__APPLE__ build. Patch by Matt Johnson! ---------------------------------------------------------------------- Also, I ignore the part of the patch to remove the RegisterContextDarwin*.h/.cpp. llvm-svn: 136720
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
##===- source/Plugins/Makefile -----------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LLDB_LEVEL := ../..
|
|
|
|
include $(LLDB_LEVEL)/../../Makefile.config
|
|
|
|
|
|
DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \
|
|
ObjectContainer/BSD-Archive ObjectFile/ELF SymbolFile/DWARF \
|
|
SymbolFile/Symtab Process/Utility DynamicLoader/Static \
|
|
Platform Process/gdb-remote Instruction/ARM \
|
|
UnwindAssembly/InstEmulation UnwindAssembly/x86 \
|
|
LanguageRuntime/CPlusPlus/ItaniumABI \
|
|
LanguageRuntime/ObjC/AppleObjCRuntime
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
DIRS += Process/Darwin DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
|
|
ObjectFile/Mach-O SymbolVendor/MacOSX
|
|
#DIRS += Process/MacOSX-User
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
|
DIRS += Process/Linux DynamicLoader/Linux-DYLD
|
|
endif
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|