Install only 1 copy, not 2 copies, of osx headers.
Before this commit, the headers in plat/osx/include got installed twice into PLATIND/osx386/include and PLATIND/osxppc/include. This commit installs them once into PLATIND/osx/include and changes both descr files to find them. Several rules in lang/ depend on plat/osx386/include+headers or plat/osxppc/include+headers. They each become a simplerule that depends on plat/osx/include+headers.
This commit is contained in:
parent
ed7fb69f79
commit
0d0495e818
24
plat/osx/include/build.lua
Normal file
24
plat/osx/include/build.lua
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
include("plat/build.lua")
|
||||||
|
|
||||||
|
headermap = {}
|
||||||
|
packagemap = {}
|
||||||
|
|
||||||
|
local function addheader(h)
|
||||||
|
headermap[h] = "plat/osx/include/"..h
|
||||||
|
packagemap["$(PLATIND)/osx/include/"..h] = "plat/osx/include/"..h
|
||||||
|
end
|
||||||
|
|
||||||
|
addheader("ack/config.h")
|
||||||
|
addheader("sys/mman.h")
|
||||||
|
addheader("sys/types.h")
|
||||||
|
addheader("unistd.h")
|
||||||
|
|
||||||
|
acklibrary {
|
||||||
|
name = "headers",
|
||||||
|
hdrs = headermap
|
||||||
|
}
|
||||||
|
|
||||||
|
installable {
|
||||||
|
name = "pkg",
|
||||||
|
map = packagemap
|
||||||
|
}
|
|
@ -17,7 +17,7 @@ installable {
|
||||||
map = {
|
map = {
|
||||||
"+tools",
|
"+tools",
|
||||||
"+libs",
|
"+libs",
|
||||||
"./include+pkg",
|
"plat/osx/include+pkg",
|
||||||
["$(PLATIND)/osx386/boot.o"] = "+boot",
|
["$(PLATIND)/osx386/boot.o"] = "+boot",
|
||||||
["$(PLATIND)/osx386/libsys.a"] = "./libsys+lib",
|
["$(PLATIND)/osx386/libsys.a"] = "./libsys+lib",
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
||||||
# Override the setting in fe so that files compiled for osx386 can see
|
# Override the setting in fe so that files compiled for osx386 can see
|
||||||
# the platform-specific headers.
|
# the platform-specific headers.
|
||||||
|
|
||||||
var C_INCLUDES=-I{PLATFORMDIR}/include -I{EM}/share/ack/include/ansi
|
var C_INCLUDES=-I{EM}/share/ack/osx/include -I{EM}/share/ack/include/ansi
|
||||||
|
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
|
|
|
@ -1,24 +1,7 @@
|
||||||
include("plat/build.lua")
|
simplerule {
|
||||||
|
|
||||||
headermap = {}
|
|
||||||
packagemap = {}
|
|
||||||
|
|
||||||
local function addheader(h)
|
|
||||||
headermap[h] = "plat/osx/include/"..h
|
|
||||||
packagemap["$(PLATIND)/osx386/include/"..h] = "plat/osx/include/"..h
|
|
||||||
end
|
|
||||||
|
|
||||||
addheader("ack/config.h")
|
|
||||||
addheader("sys/mman.h")
|
|
||||||
addheader("sys/types.h")
|
|
||||||
addheader("unistd.h")
|
|
||||||
|
|
||||||
acklibrary {
|
|
||||||
name = "headers",
|
name = "headers",
|
||||||
hdrs = headermap
|
deps = { "plat/osx/include+headers" },
|
||||||
}
|
ins = {},
|
||||||
|
outs = {},
|
||||||
installable {
|
commands = {},
|
||||||
name = "pkg",
|
|
||||||
map = packagemap
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ installable {
|
||||||
map = {
|
map = {
|
||||||
"+tools",
|
"+tools",
|
||||||
"+libs",
|
"+libs",
|
||||||
"./include+pkg",
|
"plat/osx/include+pkg",
|
||||||
["$(PLATIND)/osxppc/boot.o"] = "+boot",
|
["$(PLATIND)/osxppc/boot.o"] = "+boot",
|
||||||
["$(PLATIND)/osxppc/libsys.a"] = "./libsys+lib",
|
["$(PLATIND)/osxppc/libsys.a"] = "./libsys+lib",
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ var MACHOPT_F=-m10
|
||||||
# Override the setting in fe so that files compiled for osxppc can see
|
# Override the setting in fe so that files compiled for osxppc can see
|
||||||
# the platform-specific headers.
|
# the platform-specific headers.
|
||||||
|
|
||||||
var C_INCLUDES=-I{PLATFORMDIR}/include -I{EM}/share/ack/include/ansi
|
var C_INCLUDES=-I{EM}/share/ack/osx/include -I{EM}/share/ack/include/ansi
|
||||||
|
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
|
|
|
@ -1,24 +1,7 @@
|
||||||
include("plat/build.lua")
|
simplerule {
|
||||||
|
|
||||||
headermap = {}
|
|
||||||
packagemap = {}
|
|
||||||
|
|
||||||
local function addheader(h)
|
|
||||||
headermap[h] = "plat/osx/include/"..h
|
|
||||||
packagemap["$(PLATIND)/osxppc/include/"..h] = "plat/osx/include/"..h
|
|
||||||
end
|
|
||||||
|
|
||||||
addheader("ack/config.h")
|
|
||||||
addheader("sys/mman.h")
|
|
||||||
addheader("sys/types.h")
|
|
||||||
addheader("unistd.h")
|
|
||||||
|
|
||||||
acklibrary {
|
|
||||||
name = "headers",
|
name = "headers",
|
||||||
hdrs = headermap
|
deps = { "plat/osx/include+headers" },
|
||||||
}
|
ins = {},
|
||||||
|
outs = {},
|
||||||
installable {
|
commands = {},
|
||||||
name = "pkg",
|
|
||||||
map = packagemap
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue