Raspberry Pi backend now builds.

This commit is contained in:
David Given
2016-08-20 12:40:13 +02:00
parent 23e8d5af5a
commit 204f932ed2
8 changed files with 110 additions and 1 deletions

View File

@@ -10,7 +10,10 @@ definerule("build_as",
local archlib = clibrary {
name = e.name.."/archlib",
srcs = {},
hdrs = { "mach/"..e.arch.."/as/mach*.c" }
hdrs = {
"mach/"..e.arch.."/as/mach*.c",
"mach/"..e.arch.."/as/*.h"
}
}
local preprocessedy = cppfile {

8
mach/vc4/libem/build.lua Normal file
View File

@@ -0,0 +1,8 @@
for _, plat in ipairs(vars.plats) do
acklibrary {
name = "lib_"..plat,
srcs = { "./*.s" },
vars = { plat = plat },
}
end

View File

@@ -0,0 +1,8 @@
for _, plat in ipairs(vars.plats) do
acklibrary {
name = "lib_"..plat,
srcs = { "./*.s" },
vars = { plat = plat },
}
end