mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 03:56:16 +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
29 lines
592 B
Makefile
29 lines
592 B
Makefile
##===- source/Host/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 := common
|
|
|
|
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
|