29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
##===- cling/lib/Interpreter/Makefile-----------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
#
|
|
# This implements the a C++ interpreter backend.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
CLING_LEVEL = ../..
|
|
LIBRARYNAME := clingInterpreter
|
|
BUILD_ARCHIVE = 1
|
|
CXXFLAGS = -fno-rtti
|
|
|
|
# Inform the sources about their install location
|
|
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_SRC_DIR)/../../../clang/include \
|
|
-I$(PROJ_SRC_DIR)/../../../clang/lib -I$(PROJ_OBJ_DIR)/../../include \
|
|
-I$(PROJ_OBJ_DIR)/../../../clang/include \
|
|
-I$(DESTDIR)$(PROJ_includedir) \
|
|
'-DCLING_INCLUDE_PATHS="$(DESTDIR)$(PROJ_includedir):$(LLVM_SRC_ROOT)/tools/cling/include:$(LLVM_SRC_ROOT)/tools/clang/include:$(LLVM_SRC_ROOT)/include"'
|
|
|
|
include $(CLING_LEVEL)/Makefile
|
|
|
|
$(ObjRootDir)/RuntimeException.o: CXX.Flags := $(subst -fno-exceptions,,$(CXX.Flags))
|