diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-11 17:22:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-11 17:22:57 +0200 |
commit | 7edf0baef4e11df982bd37356a4e4d28ff046c86 (patch) | |
tree | ca2b726b5025817435c0ffe5d373de7da55f8733 /src/GvimExt | |
parent | 679beba8007b804be210ef118bd23a38cb803ef6 (diff) | |
download | vim-git-7edf0baef4e11df982bd37356a4e4d28ff046c86.tar.gz |
patch 8.1.1152: compiler warning with VS2019v8.1.1152
Problem: Compiler warning with VS2019.
Solution: Specify different offset for "AMD64". (closes #4235)
Diffstat (limited to 'src/GvimExt')
-rw-r--r-- | src/GvimExt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GvimExt/Makefile b/src/GvimExt/Makefile index a865989cf..975ba1170 100644 --- a/src/GvimExt/Makefile +++ b/src/GvimExt/Makefile @@ -58,7 +58,7 @@ SUBSYSTEM = console SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) !endif -!if "$(CPU)" == "ARM64" +!if "$(CPU)" == "AMD64" || "$(CPU)" == "ARM64" OFFSET = 0x11C000000 !else OFFSET = 0x1C000000 |