mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	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:
		| @@ -227,7 +227,11 @@ endif | |||||||
| ifeq ($(UNDER_CYGWIN),yes) | ifeq ($(UNDER_CYGWIN),yes) | ||||||
| WINDRES := $(CROSS_COMPILE)windres | WINDRES := $(CROSS_COMPILE)windres | ||||||
| else | else | ||||||
|  | ifeq ($(findstring clang,$(CC)),) | ||||||
| WINDRES := windres | WINDRES := windres | ||||||
|  | else | ||||||
|  | WINDRES := llvm-windres | ||||||
|  | endif | ||||||
| endif | endif | ||||||
|  |  | ||||||
| # Get the default ARCH. | # Get the default ARCH. | ||||||
|   | |||||||
| @@ -695,6 +695,8 @@ static char *(features[]) = | |||||||
|  |  | ||||||
| static int included_patches[] = | static int included_patches[] = | ||||||
| {   /* Add new patch number below this line */ | {   /* Add new patch number below this line */ | ||||||
|  | /**/ | ||||||
|  |     860, | ||||||
| /**/ | /**/ | ||||||
|     859, |     859, | ||||||
| /**/ | /**/ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user