ack/plat/qemuppc/build-tools.lua
David Given 48e74f46fc Add the very experimental qemuppc plat, intended to generate minimal images
which can be emulated using qemu (for, hopefully, a test suite). Currently it
generates images which won't run because there's no RAM.
2016-11-12 19:20:58 +01:00

34 lines
489 B
Lua

include("plat/build.lua")
build_as {
name = "as",
arch = "powerpc",
}
build_mcg {
name = "mcg",
arch = "powerpc",
}
build_ncg {
name = "ncg",
arch = "powerpc",
}
build_top {
name = "top",
arch = "powerpc",
}
return installable {
name = "tools",
map = {
["$(PLATDEP)/qemuppc/as"] = "+as",
["$(PLATDEP)/qemuppc/ncg"] = "+ncg",
["$(PLATDEP)/qemuppc/mcg"] = "+mcg",
["$(PLATDEP)/qemuppc/top"] = "+top",
["$(PLATIND)/descr/qemuppc"] = "./descr",
"util/opt+pkg",
}
}