1
0
forked from aniani/vim

patch 9.0.0860: MS-Windows: windres fails with clang 15.0.4

Problem:    MS-Windows: windres fails with clang 15.0.4.
Solution:   Use llvm-windres. (John Marriott)
This commit is contained in:
Bram Moolenaar 2022-11-11 21:24:18 +00:00
parent fd3084b6e2
commit a20be06f97
2 changed files with 6 additions and 0 deletions

View File

@ -227,7 +227,11 @@ endif
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.

View File

@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
860,
/**/
859,
/**/