Patch 8.2.2174
Problem: Mac version doesn't specify the CPU architecture.
Solution: Add "arm64" or "x86_64". (Yee Cheng Chin, closes #7519)
Files: src/version.c
*** ../vim-8.2.2173/src/version.c 2020-12-20 21:43:31.704882194 +0100
--- src/version.c 2020-12-21 13:05:32.311576924 +0100
***************
*** 5333,5338 ****
--- 5335,5345 ----
# else
msg_puts(_("\nmacOS version w/o darwin feat."));
# endif
+ # if defined(__arm64__)
+ msg_puts(" - arm64");
+ # elif defined(__x86_64__)
+ msg_puts(" - x86_64");
+ # endif
#endif
#ifdef VMS
*** ../vim-8.2.2173/src/version.c 2020-12-20 21:43:31.704882194 +0100
--- src/version.c 2020-12-21 13:05:32.311576924 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2174,
/**/
--
For humans, honesty is a matter of degree. Engineers are always honest in
matters of technology and human relationships. That's why it's a good idea
to keep engineers away from customers, romantic interests, and other people
who can't handle the truth.
(Scott Adams - The Dilbert principle)
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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/202012211206.0BLC6maF2193529%40masaka.moolenaar.net.