initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-12-10 23:54:47 +01:00
commit 128c2d6e13
Se han modificado 95 ficheros con 26156 adiciones y 0 borrados

17
kernel/.cargo/config.toml Archivo normal
Ver fichero

@@ -0,0 +1,17 @@
[target.x86_64-unknown-none]
rustflags = [
"-C", "link-arg=--no-dynamic-linker",
"-C", "link-arg=-static",
"-C", "relocation-model=static",
"-C", "link-arg=-no-pie",
"-C", "link-arg=-z",
"-C", "link-arg=max-page-size=0x1000",
"-C", "link-arg=--oformat=elf64-x86-64",
]
[build]
target = "x86_64-unknown-none"
[unstable]
build-std = ["core", "alloc"]
build-std-features = ["compiler-builtins-mem"]