Turns out I wasn't building the syscall libraries. Do so.
This commit is contained in:
parent
b549980af2
commit
3df4906d52
|
@ -19,7 +19,8 @@ installable {
|
||||||
"+tools",
|
"+tools",
|
||||||
"+libs",
|
"+libs",
|
||||||
"./include+pkg",
|
"./include+pkg",
|
||||||
["$(PLATIND)/cpm/boot.o"] = "+boot"
|
["$(PLATIND)/cpm/boot.o"] = "+boot",
|
||||||
|
["$(PLATIND)/cpm/libsys.a"] = "./libsys+lib",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
11
plat/cpm/libsys/build.lua
Normal file
11
plat/cpm/libsys/build.lua
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
acklibrary {
|
||||||
|
name = "lib",
|
||||||
|
srcs = {
|
||||||
|
"./*.c",
|
||||||
|
"./*.s",
|
||||||
|
},
|
||||||
|
vars = {
|
||||||
|
plat = "cpm"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -18,7 +18,8 @@ installable {
|
||||||
"+tools",
|
"+tools",
|
||||||
"+libs",
|
"+libs",
|
||||||
"./include+pkg",
|
"./include+pkg",
|
||||||
["$(PLATIND)/linux386/boot.o"] = "+boot"
|
["$(PLATIND)/linux386/boot.o"] = "+boot",
|
||||||
|
["$(PLATIND)/linux386/libsys.a"] = "./libsys+lib",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,8 +67,7 @@ name led
|
||||||
(.ocm:{TAIL}={PLATFORMDIR}/liboccam.a) \
|
(.ocm:{TAIL}={PLATFORMDIR}/liboccam.a) \
|
||||||
(.ocm.b.mod.c.p:{TAIL}={PLATFORMDIR}/libc.a) \
|
(.ocm.b.mod.c.p:{TAIL}={PLATFORMDIR}/libc.a) \
|
||||||
{FLOATS?} \
|
{FLOATS?} \
|
||||||
(.e:{TAIL}={PLATFORMDIR}/liblinux.a \
|
(.e:{TAIL}={PLATFORMDIR}/libem.a \
|
||||||
{PLATFORMDIR}/libem.a \
|
|
||||||
{PLATFORMDIR}/liblinux.a \
|
{PLATFORMDIR}/liblinux.a \
|
||||||
{PLATFORMDIR}/libsys.a \
|
{PLATFORMDIR}/libsys.a \
|
||||||
{PLATFORMDIR}/libend.a)
|
{PLATFORMDIR}/libend.a)
|
||||||
|
|
12
plat/linux386/libsys/build.lua
Normal file
12
plat/linux386/libsys/build.lua
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
acklibrary {
|
||||||
|
name = "lib",
|
||||||
|
srcs = {
|
||||||
|
"./*.s",
|
||||||
|
"plat/linux/libsys/*.c",
|
||||||
|
"plat/linux/libsys/*.s",
|
||||||
|
},
|
||||||
|
vars = {
|
||||||
|
plat = "linux386"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -18,7 +18,8 @@ installable {
|
||||||
"+tools",
|
"+tools",
|
||||||
"+libs",
|
"+libs",
|
||||||
"./include+pkg",
|
"./include+pkg",
|
||||||
["$(PLATIND)/pc86/boot.o"] = "+boot"
|
["$(PLATIND)/pc86/boot.o"] = "+boot",
|
||||||
|
["$(PLATIND)/pc86/libsys.a"] = "./libsys+lib",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
11
plat/pc86/libsys/build.lua
Normal file
11
plat/pc86/libsys/build.lua
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
acklibrary {
|
||||||
|
name = "lib",
|
||||||
|
srcs = {
|
||||||
|
"./*.c",
|
||||||
|
"./*.s",
|
||||||
|
},
|
||||||
|
vars = {
|
||||||
|
plat = "pc86"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue