summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-11-10 21:12:28 +0000
committerChris Lattner <sabre@nondot.org>2011-11-10 21:12:28 +0000
commit169698095dcdd09d9e9fd27d9a788477ee182b4d (patch)
treedfcd7925a6a9eba38695606157798d3020e531f8 /Makefile.rules
parent16455ce1a4063348209e94f52afde653ded5eeb5 (diff)
downloadllvm-169698095dcdd09d9e9fd27d9a788477ee182b4d.tar.gz
llvm-169698095dcdd09d9e9fd27d9a788477ee182b4d.tar.bz2
llvm-169698095dcdd09d9e9fd27d9a788477ee182b4d.tar.xz
Remove a really ancient line from the default 'make clean' rule that attempts
to delete core files. This causes a warning in clang/lib/StaticAnalyzer on case insensitive filesystems, since it contains a "Core" directory. Since this is pointless anyway, just zap it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 78d1f97e14..6b68cf2c6b 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -301,6 +301,9 @@ else
endif
endif
+#CXX.Flags += -stdlib=libc++
+#LD.Flags += -stdlib=libc++
+
ifeq ($(ENABLE_PROFILING),1)
BuildMode := $(BuildMode)+Profile
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
@@ -1882,7 +1885,6 @@ clean-local::
ifneq ($(strip $(ObjRootDir)),)
-$(Verb) $(RM) -rf $(ObjRootDir)
endif
- -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
-$(Verb) $(RM) -f *$(SHLIBEXT)
endif