mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
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
This commit is contained in:
parent
16455ce1a4
commit
169698095d
@ -301,6 +301,9 @@ else
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
#CXX.Flags += -stdlib=libc++
|
||||||
|
#LD.Flags += -stdlib=libc++
|
||||||
|
|
||||||
ifeq ($(ENABLE_PROFILING),1)
|
ifeq ($(ENABLE_PROFILING),1)
|
||||||
BuildMode := $(BuildMode)+Profile
|
BuildMode := $(BuildMode)+Profile
|
||||||
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
|
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
|
||||||
@ -1882,7 +1885,6 @@ clean-local::
|
|||||||
ifneq ($(strip $(ObjRootDir)),)
|
ifneq ($(strip $(ObjRootDir)),)
|
||||||
-$(Verb) $(RM) -rf $(ObjRootDir)
|
-$(Verb) $(RM) -rf $(ObjRootDir)
|
||||||
endif
|
endif
|
||||||
-$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
|
|
||||||
ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
|
ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
|
||||||
-$(Verb) $(RM) -f *$(SHLIBEXT)
|
-$(Verb) $(RM) -f *$(SHLIBEXT)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user