forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#53492 - danc86:lld-riscv, r=alexcrichton
update lld submodule to include RISCV patch This pulls in one new commit, to add support for linking static RISCV binaries, suitable for the new riscv32imac-unknown-none-elf target. See: rust-lang/lld#1
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule lld
updated
19 files
+277 −0 | ELF/Arch/RISCV.cpp | |
+1 −0 | ELF/CMakeLists.txt | |
+4 −1 | ELF/Driver.cpp | |
+34 −0 | ELF/InputSection.cpp | |
+2 −0 | ELF/InputSection.h | |
+5 −0 | ELF/Relocations.cpp | |
+16 −0 | ELF/Relocations.h | |
+1 −0 | ELF/Symbols.cpp | |
+3 −0 | ELF/Symbols.h | |
+2 −0 | ELF/Target.cpp | |
+1 −0 | ELF/Target.h | |
+9 −0 | ELF/Writer.cpp | |
+119 −0 | test/ELF/riscv-branch.test | |
+95 −0 | test/ELF/riscv-call.test | |
+86 −0 | test/ELF/riscv-hi20-lo12.test | |
+93 −0 | test/ELF/riscv-jal-error.test | |
+161 −0 | test/ELF/riscv-jal.test | |
+103 −0 | test/ELF/riscv-pcrel-hilo.test | |
+1 −0 | test/lit.cfg.py |