diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-07 14:37:04 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-07 14:37:04 +0000 |
commit | e3c55022635052148b3b789838ef83fe027d11f6 (patch) | |
tree | 6973abb29d14bb6a28defd0796275aeae67adac0 /Makefile | |
parent | d463a7446402f0771465fe66fe0a7d9f72534902 (diff) | |
download | llvm-e3c55022635052148b3b789838ef83fe027d11f6.tar.gz |
adapt condition for changed default build mode
who knows how to cover Asserts or Debug separately
please do not hesitate to extend this
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -181,7 +181,7 @@ $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in ifneq ($(BUILD_DIRS_ONLY),1) all:: $(Echo) '*****' Completed $(BuildMode) Build -ifeq ($(BuildMode),Debug) +ifeq ($(BuildMode),Debug+Asserts) $(Echo) '*****' Note: Debug build can be 10 times slower than an $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to $(Echo) '*****' make an optimized build. Alternatively you can |