With my PowerBook G4, a program that converts values from 1.0 to 4000000.0 runs in about 0.32s with the old .cfu8 and 0.29s with this shrunken .cfu8 Leave a comment about other ways to implement .cfu8
17 lines
245 B
Lua
17 lines
245 B
Lua
for _, plat in ipairs(vars.plats) do
|
|
acklibrary {
|
|
name = "headers_"..plat,
|
|
}
|
|
|
|
acklibrary {
|
|
name = "lib_"..plat,
|
|
srcs = {
|
|
"./*.s", -- cfu8.s
|
|
},
|
|
vars = { plat = plat },
|
|
deps = {
|
|
"h+emheaders",
|
|
"+headers_"..plat,
|
|
}
|
|
}
|
|
end
|