From b9097759c8fa5005c729862f30a4b10d210a6a1a Mon Sep 17 00:00:00 2001 From: pjht Date: Sat, 17 Aug 2024 20:28:20 -0500 Subject: [PATCH] Remove unneccessary cargo config and eh_frame.ld --- .cargo/config.toml | 10 ---------- eh_frame.ld | 2 -- 2 files changed, 12 deletions(-) delete mode 100644 .cargo/config.toml delete mode 100644 eh_frame.ld 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);