Moved stdlib to a seperate folder and added some more headers that are required for compiling libgcc (no implementation yet).

This commit is contained in:
2024-02-02 00:01:48 +01:00
parent 00f4e0de3a
commit 712b95c9d7
22 changed files with 154 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
Import('env')
stdlib_sources = Split('''
src/assert.cpp
src/stdio.cpp
src/stdlib.cpp
src/string.cpp
''')
env.Append(KERNEL_SOURCES = [env.File(f) for f in stdlib_sources])
Return('env')