These produce Mach-o executables for Mac OS X on Intel or PowerPC
processors. Our code generator for PowerPC (mach/powerpc) still has
bugs. Some examples seem to run, but startrek crashes. Our code
generator for Intel (mach/i386) is better.
There is a problem with job control. If you run paranoia or startrek,
then suspend the job (^Z) and resume it ('fg' in bash), then read(2)
might fail with EINTR.
The larger files in this commit are
- plat/osx/cvmach/cvmach.c
- plat/osx/libsys/brk.c
- plat/osx386/libsys/sigaction.s
- plat/osxppc/libsys/sigaction.s
41 lines
586 B
Lua
41 lines
586 B
Lua
vars.cflags = {
|
|
"-g", "-O"
|
|
}
|
|
vars.ackcflags = {
|
|
"-O6"
|
|
}
|
|
vars.plats = {
|
|
"cpm",
|
|
"linux386",
|
|
"linux68k",
|
|
"linuxppc",
|
|
"osx386",
|
|
"osxppc",
|
|
"pc86",
|
|
"rpi",
|
|
}
|
|
|
|
local plat_packages = {}
|
|
for _, p in ipairs(vars.plats) do
|
|
plat_packages[#plat_packages+1] = "plat/"..p.."+pkg"
|
|
end
|
|
|
|
installable {
|
|
name = "ack",
|
|
map = {
|
|
"lang/basic/src+pkg",
|
|
"lang/cem/cemcom.ansi+pkg",
|
|
"lang/m2/comp+pkg",
|
|
"lang/pc/comp+pkg",
|
|
"util/ack+pkg",
|
|
"util/amisc+pkg",
|
|
"util/arch+pkg",
|
|
"util/ego+pkg",
|
|
"util/led+pkg",
|
|
"util/misc+pkg",
|
|
"util/opt+pkg",
|
|
"examples+pkg",
|
|
plat_packages
|
|
}
|
|
}
|
|
|