ack/plat/linuxmips/build-tools.lua
David Given 1d6ecddcf4 The MIPS backend is still full of holes, and cut-and-pasted PowerPC code, but
is beginning to look like an actual code generator.
2018-09-02 18:57:25 +02:00

30 lines
464 B
Lua

include("plat/build.lua")
build_as {
name = "as",
arch = "mips",
deps = { "mach/mips/as+astables" }
}
build_mcg {
name = "mcg",
arch = "mips",
}
build_top {
name = "top",
arch = "mips",
}
return installable {
name = "tools",
map = {
["$(PLATDEP)/linuxmips/as"] = "+as",
["$(PLATDEP)/linuxmips/mcg"] = "+mcg",
["$(PLATDEP)/linuxmips/top"] = "+top",
["$(PLATIND)/descr/linuxmips"] = "./descr",
"util/amisc+aelflod-pkg",
"util/opt+pkg",
}
}