Skip to content

Commit

Permalink
Remove 'clang_rt.asan_dynamic*.dll'
Browse files Browse the repository at this point in the history
on 'make clean' regardless of 'USE_ASAN'
and/or 'USE_UBSAN'.
  • Loading branch information
gvanem committed Jan 10, 2024
1 parent 6eef42a commit 5026cc6
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/Makefile.Windows
Original file line number Diff line number Diff line change
Expand Up @@ -552,18 +552,15 @@ $(OBJ_DIR)/check-for-unused-libs.py: $(THIS_FILE) | $(OBJ_DIR)
ifeq ($(COPY_DLLs),)
DLL_copy:
$(call green_msg, No .DLLs to copy)

DLL_clean:
$(call green_msg, No .DLLs to remove)
else
DLL_copy:
$(call green_msg, Copying '$(COPY_DLLs)' to CWD)
cp --update $(COPY_DLLs) .

DLL_clean:
rm -f $(notdir $(COPY_DLLs))
endif

DLL_clean:
rm -f clang_rt.asan_dynamic*.dll

#
# Clean up after Visual-Studio
#
Expand Down

0 comments on commit 5026cc6

Please sign in to comment.