diff options
author | dzwdz | 2023-08-17 00:36:04 +0200 |
---|---|---|
committer | dzwdz | 2023-08-17 00:50:52 +0200 |
commit | 292b2386d766826b15f5ca084d37aa2c485fdda6 (patch) | |
tree | 125c217a90daa957548e9acb8bdecfff3d8374b2 /sysroot | |
parent | a454a4ee0c50d2a9f4eb340d4a9ec60b9e089c9a (diff) |
build: rework how sysroots work
/usr/include is now built on the fly, letting me merge include files from
multiple modules, which should be a win for organization later on.
binutils & gcc need to be recompiled.
limits.h shamelessly stolen from heat on #osdev, as gcc stopped providing me
with its own header. which was a hack in the first place
Diffstat (limited to 'sysroot')
l--------- | sysroot/usr/include | 1 | ||||
l--------- | sysroot/usr/lib/crt0.o | 1 | ||||
l--------- | sysroot/usr/lib/libc.a | 1 | ||||
l--------- | sysroot/usr/lib/libm.a | 1 | ||||
l--------- | sysroot/usr/local/include | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/sysroot/usr/include b/sysroot/usr/include deleted file mode 120000 index 3f3830c..0000000 --- a/sysroot/usr/include +++ /dev/null @@ -1 +0,0 @@ -../../src/libc/include
\ No newline at end of file diff --git a/sysroot/usr/lib/crt0.o b/sysroot/usr/lib/crt0.o deleted file mode 120000 index 648a150..0000000 --- a/sysroot/usr/lib/crt0.o +++ /dev/null @@ -1 +0,0 @@ -../../../out/obj/libc/_start.s.o
\ No newline at end of file diff --git a/sysroot/usr/lib/libc.a b/sysroot/usr/lib/libc.a deleted file mode 120000 index 135b015..0000000 --- a/sysroot/usr/lib/libc.a +++ /dev/null @@ -1 +0,0 @@ -../../../out/libc.a
\ No newline at end of file diff --git a/sysroot/usr/lib/libm.a b/sysroot/usr/lib/libm.a deleted file mode 120000 index 1c566f4..0000000 --- a/sysroot/usr/lib/libm.a +++ /dev/null @@ -1 +0,0 @@ -../../../out/libm.a
\ No newline at end of file diff --git a/sysroot/usr/local/include b/sysroot/usr/local/include deleted file mode 120000 index f4fd256..0000000 --- a/sysroot/usr/local/include +++ /dev/null @@ -1 +0,0 @@ -../../../src/libk/include
\ No newline at end of file |