diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/rtdl/riscv64 | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/rtdl/riscv64')
-rw-r--r-- | lib/mlibc/options/rtdl/riscv64/elf.hpp | 37 | ||||
-rw-r--r-- | lib/mlibc/options/rtdl/riscv64/entry.S | 11 | ||||
-rw-r--r-- | lib/mlibc/options/rtdl/riscv64/runtime.S | 5 |
3 files changed, 0 insertions, 53 deletions
diff --git a/lib/mlibc/options/rtdl/riscv64/elf.hpp b/lib/mlibc/options/rtdl/riscv64/elf.hpp deleted file mode 100644 index 5d7039a..0000000 --- a/lib/mlibc/options/rtdl/riscv64/elf.hpp +++ /dev/null @@ -1,37 +0,0 @@ -#pragma once - -#include <elf.h> - -#define ELF_CLASS ELFCLASS64 -#define ELF_MACHINE EM_RISCV - -using elf_ehdr = Elf64_Ehdr; -using elf_phdr = Elf64_Phdr; -using elf_dyn = Elf64_Dyn; -using elf_rel = Elf64_Rel; -using elf_rela = Elf64_Rela; -using elf_relr = Elf64_Relr; -using elf_sym = Elf64_Sym; -using elf_addr = Elf64_Addr; - -using elf_info = Elf64_Xword; -using elf_addend = Elf64_Sxword; - -#define ELF_R_SYM ELF64_R_SYM -#define ELF_R_TYPE ELF64_R_TYPE -#define ELF_ST_BIND ELF64_ST_BIND - -#define R_NONE R_RISCV_NONE -#define R_JUMP_SLOT R_RISCV_JUMP_SLOT -#define R_ABSOLUTE R_RISCV_64 -#define R_GLOB_DAT R_RISCV_64 -#define R_RELATIVE R_RISCV_RELATIVE -#define R_IRELATIVE R_RISCV_IRELATIVE -// #define R_OFFSET -#define R_COPY R_RISCV_COPY -#define R_TLS_DTPMOD R_RISCV_TLS_DTPMOD64 -#define R_TLS_DTPREL R_RISCV_TLS_DTPREL64 -#define R_TLS_TPREL R_RISCV_TLS_TPREL64 -#define R_TLSDESC R_RISCV_TLSDESC - -#define TP_TCB_OFFSET 0 diff --git a/lib/mlibc/options/rtdl/riscv64/entry.S b/lib/mlibc/options/rtdl/riscv64/entry.S deleted file mode 100644 index b7cf854..0000000 --- a/lib/mlibc/options/rtdl/riscv64/entry.S +++ /dev/null @@ -1,11 +0,0 @@ -.global _start -_start: - call relocateSelf - - mv a0, sp - call interpreterMain - - jr a0 - -.section .note.GNU-stack,"",%progbits - diff --git a/lib/mlibc/options/rtdl/riscv64/runtime.S b/lib/mlibc/options/rtdl/riscv64/runtime.S deleted file mode 100644 index 5128fd3..0000000 --- a/lib/mlibc/options/rtdl/riscv64/runtime.S +++ /dev/null @@ -1,5 +0,0 @@ -.global pltRelocateStub -pltRelocateStub: - unimp // TODO -.section .note.GNU-stack,"",%progbits - |