Patch 9.0.0860
Problem: MS-Windows: windres fails with clang 15.0.4.
Solution: Use llvm-windres. (John Marriott)
Files: src/Make_cyg_ming.mak
*** ../vim-9.0.0859/src/Make_cyg_ming.mak 2022-10-08 19:26:35.694195418
+0100
--- src/Make_cyg_ming.mak 2022-11-11 21:22:10.071162312 +0000
***************
*** 227,233 ****
--- 227,237 ----
ifeq ($(UNDER_CYGWIN),yes)
WINDRES := $(CROSS_COMPILE)windres
else
+ ifeq ($(findstring clang,$(CC)),)
WINDRES := windres
+ else
+ WINDRES := llvm-windres
+ endif
endif
# Get the default ARCH.
*** ../vim-9.0.0859/src/version.c 2022-11-11 01:40:44.430990388 +0000
--- src/version.c 2022-11-11 21:23:07.775220154 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 860,
/**/
--
I started out with nothing, and I still have most of it.
-- Michael Davis -- "Tonight Show"
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
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/20221111212510.6B6221C1263%40moolenaar.net.