-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5aa68a3
commit 4555d86
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule autobuild
updated
28 files
+1 −0 | .github/ISSUE_TEMPLATE/config.yml | |
+29 −0 | .github/ISSUE_TEMPLATE/guess-target.yml | |
+1 −0 | build.rs | |
+3 −1 | src/config.rs | |
+1 −4 | src/config/script.rs | |
+2 −2 | src/config/script/default.rs | |
+1 −2 | src/config/store.rs | |
+2 −1 | src/hash/sha.rs | |
+2 −1 | src/helpers.rs | |
+1 −0 | src/install.rs | |
+2 −0 | src/jobserv.rs | |
+1 −1 | src/jobserv/unix.rs | |
+4 −0 | src/log.rs | |
+3 −4 | src/map.rs | |
+2 −1 | src/map/de.rs | |
+0 −4 | src/map/raw.rs | |
+3 −1 | src/programs.rs | |
+14 −12 | src/programs/rustc.rs | |
+2 −5 | src/serialize/val.rs | |
+16 −22 | src/serialize/val/de_owned.rs | |
+23 −28 | src/serialize/val/ser_owned.rs | |
+2 −1 | src/set/de.rs | |
+1 −1 | src/targ/guess.rs | |
+3 −3 | src/targ/guess/uname.rs | |
+2 −8 | src/tools/config.rs | |
+2 −3 | src/tools/install.rs | |
+2 −7 | src/tools/rustc.rs | |
+1 −1 | src/tools/uname.rs |
Submodule lc-binutils
updated
28 files
+23 −0 | Cargo.lock | |
+79 −3 | binfmt/src/elf.rs | |
+19 −11 | binfmt/src/elf32/w65.rs | |
+159 −14 | binfmt/src/elf64/clever.rs | |
+14 −1 | binfmt/src/elf64/holeybytes.rs | |
+14 −1 | binfmt/src/elf64/x86_64.rs | |
+19 −1 | binfmt/src/howto.rs | |
+0 −3 | binfmt/src/lib.rs | |
+2 −0 | binfmt/src/o65.rs | |
+21 −18 | lcas/src/as_state.rs | |
+8 −8 | lcas/src/expr.rs | |
+9 −6 | lcas/src/lcas.rs | |
+117 −27 | lcas/src/lex.rs | |
+2 −0 | lcas/src/lib.rs | |
+164 −0 | lcas/src/span.rs | |
+219 −0 | lcas/src/sym.rs | |
+0 −2 | lcas/src/targ.rs | |
+14 −13 | lcas/src/targ/clever.rs | |
+17 −15 | lcas/src/targ/holeybytes.rs | |
+27 −23 | lcld/Cargo.toml | |
+0 −7 | lcld/src/arch/mod.rs | |
+0 −1 | lcld/src/arch/traits.rs | |
+0 −1 | lcld/src/arch/w65c816.rs | |
+0 −1 | lcld/src/arch/x86.rs | |
+8 −0 | lcld/src/driver/ld/mod.rs | |
+1 −0 | lcld/src/input.rs | |
+127 −4 | lcld/src/link.rs | |
+29 −0 | lcld/src/script.rs |