]> gitweb.factorcode.org Git - factor.git/commitdiff
mason.child: Compile for Windows Vista+ in the build farm. Fixes 1867.
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 30 Dec 2017 08:05:10 +0000 (00:05 -0800)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 30 Dec 2017 08:05:10 +0000 (00:05 -0800)
We get Ctrl-Break if we compile for this target. Compiling for Windows XP should be a special-case now.

extra/mason/child/child.factor

index 30c6dda9b138b7993cbd23608d0eddcd837e89ca..1d0574cf98debbbd00d397f3f62cf84454b43d6c 100644 (file)
@@ -19,7 +19,7 @@ M: unix compile-factor-command ( -- array )
 ! Windows has separate 32/64 bit shells, so assuming the cell bits here is fine
 ! because it won't find the right toolchain otherwise.
 M: windows compile-factor-command ( -- array )
-    { "nmake" "/f" "NMakefile" } cell-bits 64 = "x86-64" "x86-32" ? suffix ;
+    { "nmake" "/f" "NMakefile" } cell-bits 64 = "x86-64-vista" "x86-32-vista" ? suffix ;
 
 HOOK: factor-path os ( -- path )
 M: unix factor-path "./factor" ;