| To: vim_dev@googlegroups.com |
| Subject: Patch 7.3.665 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.3.665 |
| Problem: MSVC 11 is not supported. |
| Solution: Recognize MSVC 11. (Raymond Ko) |
| Files: src/Make_mvc.mak |
| |
| |
| |
| |
| |
| *** 395,400 **** |
| --- 395,403 ---- |
| !if "$(_NMAKE_VER)" == "10.00.30319.01" |
| MSVCVER = 10.0 |
| !endif |
| + !if "$(_NMAKE_VER)" == "11.00.50727.1" |
| + MSVCVER = 11.0 |
| + !endif |
| !endif |
| |
| # Abort bulding VIM if version of VC is unrecognised. |
| |
| *** 409,415 **** |
| !endif |
| |
| # Convert processor ID to MVC-compatible number |
| ! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") |
| !if "$(CPUNR)" == "i386" |
| CPUARG = /G3 |
| !elseif "$(CPUNR)" == "i486" |
| --- 412,418 ---- |
| !endif |
| |
| # Convert processor ID to MVC-compatible number |
| ! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0") |
| !if "$(CPUNR)" == "i386" |
| CPUARG = /G3 |
| !elseif "$(CPUNR)" == "i486" |
| |
| *** 443,449 **** |
| OPTFLAG = /Ox |
| !endif |
| |
| ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") |
| # Use link time code generation if not worried about size |
| !if "$(OPTIMIZE)" != "SPACE" |
| OPTFLAG = $(OPTFLAG) /GL |
| --- 446,452 ---- |
| OPTFLAG = /Ox |
| !endif |
| |
| ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") |
| # Use link time code generation if not worried about size |
| !if "$(OPTIMIZE)" != "SPACE" |
| OPTFLAG = $(OPTFLAG) /GL |
| |
| |
| |
| *** 721,722 **** |
| --- 721,724 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 665, |
| /**/ |
| |
| -- |
| There are 10 kinds of people: Those who understand binary and those who don't. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- 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 /// |