aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2016-05-10 07:11:00 +0000
committerSebastian Huber <sh@gcc.gnu.org>2016-05-10 07:11:00 +0000
commitad251dfd97b5d640a6db3a85bdad272e780f65e0 (patch)
tree742441a2825961c97f3ff296648cd99ff2e3d845
parent9b6ffe72c8c39d21eb7680a91ac718c4ea2086c3 (diff)
downloadgcc-ad251dfd97b5d640a6db3a85bdad272e780f65e0.zip
gcc-ad251dfd97b5d640a6db3a85bdad272e780f65e0.tar.gz
gcc-ad251dfd97b5d640a6db3a85bdad272e780f65e0.tar.bz2
[RTEMS] Fix moxie libgcc support
libgcc/ PR libgcc/70720 * config.host (moxie-*-rtems*): Merge this stanza with other moxie targets so the same extra_parts are built. Also have tmake_file add on to its value rather than override. From-SVN: r236064
-rw-r--r--libgcc/ChangeLog7
-rw-r--r--libgcc/config.host9
2 files changed, 9 insertions, 7 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 58a3bc7..91f968a 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,10 @@
+2016-05-10 Joel Sherrill <joel@rtems.org>
+
+ PR libgcc/70720
+ * config.host (moxie-*-rtems*): Merge this stanza with other moxie
+ targets so the same extra_parts are built. Also have tmake_file add
+ on to its value rather than override.
+
2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
* config.host: Remove SH5 support.
diff --git a/libgcc/config.host b/libgcc/config.host
index 8bd7bb6..4fe3085 100644
--- a/libgcc/config.host
+++ b/libgcc/config.host
@@ -933,14 +933,9 @@ mmix-knuth-mmixware)
mn10300-*-*)
tmake_file=t-fdpbit
;;
-moxie-*-elf | moxie-*-moxiebox* | moxie-*-uclinux*)
- tmake_file="moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
- extra_parts="$extra_parts crti.o crtn.o crtbegin.o crtend.o"
- ;;
-moxie-*-rtems*)
+moxie-*-elf | moxie-*-moxiebox* | moxie-*-uclinux* | moxie-*-rtems*)
tmake_file="$tmake_file moxie/t-moxie t-softfp-sfdf t-softfp-excl t-softfp"
- # Don't use default.
- extra_parts=
+ extra_parts="$extra_parts crti.o crtn.o crtbegin.o crtend.o"
;;
msp430*-*-elf)
tmake_file="$tm_file t-crtstuff t-fdpbit msp430/t-msp430"