blob: c33304a9d8ad002798ad356b9036f81adcd29c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pkg config =
const Sys = "Linux"
const Linkcmd = ["ld"]
const Dlflags : byte[:][0] = []
const Manpath = "share/man/man"
const Instroot = "/"
const Objsuffix = ".o"
const Arcmd = ["ar", "-rcs"]
const Ascmd = ["as"]
const Directlib = false
const Runtime = "_myrrt.o"
const Sharepath = "share"
const Binpath = "bin"
const Libpath = "lib/myr"
const Env : (byte[:], byte[:])[:] = [][:]
const Arch = "x64"
;;
|