diff options
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/patches/git/add-crtreloc.frv | 12 | ||||
-rw-r--r-- | toolchain/gdb/Makefile | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/toolchain/gcc/patches/git/add-crtreloc.frv b/toolchain/gcc/patches/git/add-crtreloc.frv new file mode 100644 index 000000000..963fdf0e5 --- /dev/null +++ b/toolchain/gcc/patches/git/add-crtreloc.frv @@ -0,0 +1,12 @@ +diff -Nur gcc-git.orig/gcc/config/frv/linux.h gcc-git/gcc/config/frv/linux.h +--- gcc-git.orig/gcc/config/frv/linux.h 2016-03-23 21:09:04.000000000 +0100 ++++ gcc-git/gcc/config/frv/linux.h 2016-03-26 23:11:48.958579270 +0100 +@@ -27,7 +27,7 @@ + + #undef STARTFILE_SPEC + #define STARTFILE_SPEC \ +- "%{!shared: %{pg|p|profile:gcrt1.o%s;pie:Scrt1.o%s;:crt1.o%s}} \ ++ "%{!shared: %{pg|p|profile:gcrt1.o%s;pie:Scrt1.o%s;:crt1.o%s}} crtreloc.o%s \ + crti.o%s %{static:crtbeginT.o%s;shared|pie:crtbeginS.o%s;:crtbegin.o%s}" + + #undef ENDFILE_SPEC diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index 917aad655..676b9b3a9 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -57,7 +57,7 @@ ifeq ($(ADK_TARGET_ARCH_BFIN),y) $(INSTALL_BIN) $(GDB_BUILD_DIR)/sim/bfin/run $(TARGET_CROSS)run endif ifeq ($(ADK_TARGET_ARCH_FRV),y) - $(INSTALL_BIN) $(WRKBUILD)/sim/frv/run $(TARGET_CROSS)run + $(INSTALL_BIN) $(GDB_BUILD_DIR)/sim/frv/run $(TARGET_CROSS)run endif ifeq ($(ADK_TARGET_ARCH_H8300),y) $(INSTALL_BIN) $(GDB_BUILD_DIR)/sim/h8300/run $(TARGET_CROSS)run |