mason.child: Compile for Windows Vista+ in the build farm. Fixes 1867.

We get Ctrl-Break if we compile for this target. Compiling for Windows XP should be a special-case now.
factor-shell
Doug Coleman 2017-12-30 00:05:10 -08:00
parent 97a928a1bd
commit 9c8648334a
1 changed files with 1 additions and 1 deletions

View 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 ! Windows has separate 32/64 bit shells, so assuming the cell bits here is fine
! because it won't find the right toolchain otherwise. ! because it won't find the right toolchain otherwise.
M: windows compile-factor-command ( -- array ) 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 ) HOOK: factor-path os ( -- path )
M: unix factor-path "./factor" ; M: unix factor-path "./factor" ;