diff --git a/.cargo/config.toml b/.cargo/config.toml deleted file mode 100644 index 1563d91..0000000 --- a/.cargo/config.toml +++ /dev/null @@ -1,10 +0,0 @@ -[unstable] -build-std-features = ["compiler-builtins-mem"] -build-std = ["core", "compiler_builtins", "alloc"] - -[build] -target = "x86_64-unknown-none" -rustflags = ["-C", "link-args=--image-base 0xffff800000000000", "-C", "force-unwind-tables", "-C", "link-args=/home/pterpstra/projects/os-rust/kernel/eh_frame.ld"] - -[target.'cfg(target_os = "none")'] -runner = "./run.sh" diff --git a/eh_frame.ld b/eh_frame.ld deleted file mode 100644 index 614acd3..0000000 --- a/eh_frame.ld +++ /dev/null @@ -1,2 +0,0 @@ -__eh_frame = ADDR(.eh_frame); -__etext = ADDR(.text) + SIZEOF(.text);