mirror of
https://github.com/vim/vim.git
synced 2025-11-16 23:24:03 -05:00
patch 9.1.1499: MS-Windows: no indication of ARM64 architecture
Problem: MS-Windows: no indication of ARM64 architecture
Solution: Add ARM64 to version output and include in nsis installer
(RestorerZ)
related: vim/vim-win32-installer#381
closes: #17642
Signed-off-by: RestorerZ <restorer@mail2k.ru>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
523f9f5898
commit
54585fd04c
@@ -719,6 +719,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1499,
|
||||
/**/
|
||||
1498,
|
||||
/**/
|
||||
@@ -3926,13 +3928,21 @@ list_version(void)
|
||||
# ifdef FEAT_GUI_MSWIN
|
||||
# ifdef VIMDLL
|
||||
# ifdef _WIN64
|
||||
msg_puts(_("\nMS-Windows 64-bit GUI/console version"));
|
||||
# if defined(_M_ARM64) || defined(_M_ARM64EC)
|
||||
msg_puts(_("\nMS-Windows ARM64 GUI/console version"));
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 64-bit GUI/console version"));
|
||||
# endif
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 32-bit GUI/console version"));
|
||||
# endif
|
||||
# else
|
||||
# ifdef _WIN64
|
||||
msg_puts(_("\nMS-Windows 64-bit GUI version"));
|
||||
# if defined(_M_ARM64) || defined(_M_ARM64EC)
|
||||
msg_puts(_("\nMS-Windows ARM64 GUI version"));
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 64-bit GUI version"));
|
||||
# endif
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 32-bit GUI version"));
|
||||
# endif
|
||||
@@ -3942,7 +3952,11 @@ list_version(void)
|
||||
# endif
|
||||
# else
|
||||
# ifdef _WIN64
|
||||
# if defined(_M_ARM64) || defined(_M_ARM64EC)
|
||||
msg_puts(_("\nMS-Windows ARM64 console version"));
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 64-bit console version"));
|
||||
# endif
|
||||
# else
|
||||
msg_puts(_("\nMS-Windows 32-bit console version"));
|
||||
# endif
|
||||
|
||||
Reference in New Issue
Block a user