forked from OSchip/llvm-project
Delete MSVC intermediate files on "make clean" from tests.
lld-link shells out to MSVC for certain types of work, and this results in some MSVC output files being generated even though clang / lld are the compiler / linker. This is expected, so we make sure to clean these output files on make clean. llvm-svn: 224345
This commit is contained in:
parent
e46d54f0bf
commit
3e9ca3a625
|
@ -449,7 +449,9 @@ endif
|
|||
ifneq "$(DSYM)" ""
|
||||
$(RM) -r "$(DSYM)"
|
||||
endif
|
||||
|
||||
ifeq "$(OS)" "Windows_NT"
|
||||
$(RM) "$(EXE).manifest" $(wildcard *.pdb *.ilk)
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# From http://blog.melski.net/tag/debugging-makefiles/
|
||||
|
|
Loading…
Reference in New Issue