Compile without rtti or exceptions.

llvm-svn: 38629
This commit is contained in:
Chris Lattner 2006-07-03 05:01:42 +00:00
parent 91cbf11c10
commit 040a4ab71e
3 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@
LEVEL = ../../..
LIBRARYNAME := clangBasic
BUILD_ARCHIVE = 1
CXXFLAGS = -fno-rtti -fno-exceptions
CPPFLAGS += -I$(LEVEL)/tools/clang/include

View File

@ -14,6 +14,7 @@
LEVEL = ../../..
LIBRARYNAME := clangLex
BUILD_ARCHIVE = 1
CXXFLAGS = -fno-rtti -fno-exceptions
CPPFLAGS += -I$(LEVEL)/tools/clang/include

View File

@ -2,6 +2,8 @@ LEVEL = ../..
PARALLEL_DIRS := Basic Lex
CPPFLAGS += -I$(LEVEL)/tools/clang/include
CXXFLAGS = -fno-rtti -fno-exceptions
TOOLNAME = clang
USEDLIBS = clangLex.a clangBasic.a LLVMSupport.a LLVMSystem.a