aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config.gcc4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f936a3e..358ced1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2013-04-22 Nick Clifton <nickc@redhat.com>
+
+ * config.gcc (tilegx-linux): Extend extra_objs rather than
+ overwriting it.
+ (tilepro-linux): Likewise.
+
2013-04-22 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/aarch64-builtins.c
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 44ed1907..5c5ddcc 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -2573,7 +2573,7 @@ tic6x-*-uclinux)
tilegx-*-linux*)
tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilegx/linux.h ${tm_file}"
tmake_file="${tmake_file} tilegx/t-tilegx"
- extra_objs="mul-tables.o"
+ extra_objs="${extra_objs} mul-tables.o"
c_target_objs="${c_target_objs} tilegx-c.o"
cxx_target_objs="${cxx_target_objs} tilegx-c.o"
extra_headers="feedback.h"
@@ -2581,7 +2581,7 @@ tilegx-*-linux*)
tilepro-*-linux*)
tm_file="elfos.h gnu-user.h linux.h glibc-stdint.h tilepro/linux.h ${tm_file}"
tmake_file="${tmake_file} tilepro/t-tilepro"
- extra_objs="mul-tables.o"
+ extra_objs="${extra_objs} mul-tables.o"
c_target_objs="${c_target_objs} tilepro-c.o"
cxx_target_objs="${cxx_target_objs} tilepro-c.o"
extra_headers="feedback.h"