Handbook
Glossary
compile-factor-command ( -- array )
Vocabulary
zealot
.
factor
Inputs
None
Outputs
array
an
object
Definition
USING:
system
;
IN:
zealot.factor
HOOK:
compile-factor-command
os
( -- array )
Methods
USING:
math.parser
sequences
system
system-info
zealot.factor
;
M:
macos
compile-factor-command
{
"arch"
"-x86_64"
"make"
"-j"
}
cpus
number>string
suffix
;
USING:
math.parser
sequences
system
system-info
zealot.factor
;
M:
unix
compile-factor-command
{
"make"
"-j"
}
cpus
number>string
suffix
;
USING:
system
zealot.factor
;
M:
windows
compile-factor-command
{
"nmake"
"/f"
"NMakefile"
"x86-64"
}
;