-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
microblaze: apply toolchain patches from meta-xilinx repository
This patchset fixes many known issues on gnu-toolchain for microblaze. But mainly the atomic-cas and binutils incorrect relocation issues. Patches obtained from https://github.com/xilinx/meta-xilinx/ Signed-off-by: Alp Sayin <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule binutils
updated
30 files
+2 −0 | bfd/Makefile.am | |
+3 −0 | bfd/Makefile.in | |
+26 −1 | bfd/bfd-in2.h | |
+2 −0 | bfd/configure | |
+2 −0 | bfd/configure.ac | |
+52 −1 | bfd/cpu-microblaze.c | |
+3 −0 | bfd/elf-eh-frame.c | |
+269 −51 | bfd/elf32-microblaze.c | |
+3,787 −0 | bfd/elf64-microblaze.c | |
+3 −0 | bfd/libbfd.h | |
+20 −0 | bfd/reloc.c | |
+6 −0 | bfd/targets.c | |
+4 −0 | binutils/readelf.c | |
+1,073 −110 | gas/config/tc-microblaze.c | |
+3 −1 | gas/config/tc-microblaze.h | |
+9 −0 | gas/expr.c | |
+4 −0 | include/elf/common.h | |
+4 −0 | include/elf/microblaze.h | |
+4 −0 | ld/Makefile.am | |
+6 −0 | ld/Makefile.in | |
+3 −0 | ld/configure.tgt | |
+23 −0 | ld/emulparams/elf64microblaze.sh | |
+23 −0 | ld/emulparams/elf64microblazeel.sh | |
+5 −3 | ld/ldexp.c | |
+1 −0 | ld/ldexp.h | |
+9 −3 | ld/ldlang.c | |
+12 −0 | ld/ldmain.c | |
+57 −12 | opcodes/microblaze-dis.c | |
+214 −9 | opcodes/microblaze-opc.h | |
+31 −8 | opcodes/microblaze-opcm.h |