Revert unintentional commit.

llvm-svn: 133971
This commit is contained in:
Eli Friedman 2011-06-28 00:03:31 +00:00
parent c297cd8836
commit 03aff72eff
1 changed files with 8 additions and 0 deletions

View File

@ -9,7 +9,13 @@
CLANG_LEVEL := ../..
TOOLNAME = clang
ifndef CLANG_IS_PRODUCTION
TOOLALIAS = clang++
else
ifdef CLANGXX_IS_PRODUCTION
TOOLALIAS = clang++
endif
endif
# We don't currently expect production Clang builds to be interested in
# plugins. This is important for startup performance.
@ -66,5 +72,7 @@ endif
# Translate make variable to define when building a "production" clang.
ifdef CLANG_IS_PRODUCTION
CPP.Defines += -DCLANG_IS_PRODUCTION
endif
ifdef CLANGXX_IS_PRODUCTION
CPP.Defines += -DCLANGXX_IS_PRODUCTION
endif