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
29 lines
605 B
Makefile
29 lines
605 B
Makefile
##===- source/Plugins/Platform/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 := gdb-server
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
DIRS += MacOSX
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
|
DIRS += Linux
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),FreeBSD)
|
|
DIRS += FreeBSD
|
|
endif
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|