diff --git a/src/kernel/Jamfile b/src/kernel/Jamfile index d0e35880c9..9a1bde7e9d 100644 --- a/src/kernel/Jamfile +++ b/src/kernel/Jamfile @@ -8,6 +8,7 @@ KernelStaticLibraryObjects libkern.a : <$(SOURCE_GRIST)!libroot!posix!stdio>kvsprintf.o <$(SOURCE_GRIST)!libroot!posix!stdlib>assert.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>atof.o <$(SOURCE_GRIST)!libroot!posix!stdlib>atoi.o <$(SOURCE_GRIST)!libroot!posix!stdlib>bsearch.o <$(SOURCE_GRIST)!libroot!posix!stdlib>heapsort.o @@ -20,6 +21,7 @@ KernelStaticLibraryObjects libkern.a : <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoul.o <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoll.o <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoull.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>strtod.o <$(SOURCE_GRIST)!libroot!posix!sys>chmod.o <$(SOURCE_GRIST)!libroot!posix!sys>stat.o @@ -258,7 +260,8 @@ KernelStaticLibraryObjects libc.a : <$(SOURCE_GRIST)!libroot!posix!stdio>wsetup.o <$(SOURCE_GRIST)!libroot!posix!stdlib>abs.o - <$(SOURCE_GRIST)!libroot!posix!stdlib>assert.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>assert.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>atof.o <$(SOURCE_GRIST)!libroot!posix!stdlib>atoi.o <$(SOURCE_GRIST)!libroot!posix!stdlib>bsearch.o <$(SOURCE_GRIST)!libroot!posix!stdlib>div.o @@ -403,7 +406,8 @@ KernelLd libroot.so : <$(SOURCE_GRIST)!libroot!posix!stdio>wsetup.o <$(SOURCE_GRIST)!libroot!posix!stdlib>abs.o - <$(SOURCE_GRIST)!libroot!posix!stdlib>assert.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>assert.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>atof.o <$(SOURCE_GRIST)!libroot!posix!stdlib>atoi.o <$(SOURCE_GRIST)!libroot!posix!stdlib>bsearch.o <$(SOURCE_GRIST)!libroot!posix!stdlib>div.o @@ -421,6 +425,7 @@ KernelLd libroot.so : <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoul.o <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoll.o <$(SOURCE_GRIST)!libroot!posix!stdlib>strtoull.o + <$(SOURCE_GRIST)!libroot!posix!stdlib>strtod.o <$(SOURCE_GRIST)!libroot!posix!string>memchr.o <$(SOURCE_GRIST)!libroot!posix!string>memcmp.o diff --git a/src/kernel/libroot/posix/stdlib/Jamfile b/src/kernel/libroot/posix/stdlib/Jamfile index c8501fdee5..260bf9cfbd 100644 --- a/src/kernel/libroot/posix/stdlib/Jamfile +++ b/src/kernel/libroot/posix/stdlib/Jamfile @@ -2,7 +2,8 @@ SubDir OBOS_TOP src kernel libroot posix stdlib ; KernelObjects <$(SOURCE_GRIST)>abs.c - <$(SOURCE_GRIST)>assert.c + <$(SOURCE_GRIST)>assert.c + <$(SOURCE_GRIST)>atoi.c <$(SOURCE_GRIST)>atoi.c <$(SOURCE_GRIST)>bsearch.c <$(SOURCE_GRIST)>div.c