arm: string = "--cpu:arm -t:-marm -l:-marm"
-
Source
Edit
bit_32: string = "--cpu:i386 -t:-m32 -l:-m32"
-
Source
Edit
bit_64: string = "--cpu:amd64 -t:-m64 -l:-m64"
-
Source
Edit
windows: string = "-d:mingw"
-
Source
Edit
linux: string = "--os:linux"
-
Source
Edit
macosx: string = "--os:macosx"
-
Source
Edit
options: seq[string] = ["--os:linux --cpu:arm -t:-marm -l:-marm",
"--os:linux --cpu:i386 -t:-m32 -l:-m32",
"--os:linux --cpu:amd64 -t:-m64 -l:-m64",
"-d:mingw --cpu:i386 -t:-m32 -l:-m32",
"-d:mingw --cpu:amd64 -t:-m64 -l:-m64",
"--os:macosx --cpu:i386 -t:-m32 -l:-m32",
"--os:macosx --cpu:amd64 -t:-m64 -l:-m64"]
-
Source
Edit