]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.207 v7.3.207
authorBram Moolenaar <Bram@vim.org>
Sun, 12 Jun 2011 18:31:31 +0000 (20:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 12 Jun 2011 18:31:31 +0000 (20:31 +0200)
Problem:    Can't compile with MSVC with pentium4 and 64 bit.
Solution:   Only use SSE2 for 32 bit. (Mike Williams)

src/Make_mvc.mak
src/version.c

index 7b56243835567648928cb8b4d9bc4a64f66f8d65..88f092bfa46462b1ee448703a4a3a0fd454e3a6a 100644 (file)
@@ -409,8 +409,8 @@ CPUARG = /G7 /arch:SSE2
 CPUARG =
 !endif
 !else
-# VC8/9 only allows specifying SSE architecture
-!if "$(CPUNR)" == "pentium4"
+# VC8/9/10 only allows specifying SSE architecture but only for 32bit
+!if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4"
 CPUARG = /arch:SSE2
 !endif
 !endif
index 65de7c9e5f6f12a63e04986131f42a03e93f814c..d3c2421b91b0119cb4ca6606df14277801065e32 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    207,
 /**/
     206,
 /**/