The clean target in the cygwin/ming makefile does not delete map files created by the linker. The attached patch is my proposed fix.
-- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/0bb2ae53-0754-4189-88cf-3ba7004d735c%40googlegroups.com.
>From 781aa8d20b3ece9beff8e0da484928f154483ee8 Mon Sep 17 00:00:00 2001 From: msoyka-of-wharton <[email protected]> Date: Mon, 9 Dec 2019 21:41:42 -0500 Subject: [PATCH] add .map files to clean target --- src/Make_cyg_ming.mak | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak index 8654ca3a5..46c68ab02 100644 --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -1071,6 +1071,7 @@ clean: -$(DEL) $(OUTDIR)$(DIRSLASH)pathdef.c -rmdir $(OUTDIR) -$(DEL) $(MAIN_TARGET) vimrun.exe install.exe uninstall.exe + -$(DEL) *.map ifdef PERL -$(DEL) if_perl.c -$(DEL) auto$(DIRSLASH)if_perl.c -- 2.23.0.windows.1
