diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2019-06-06 08:20:27 +0900 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2019-06-05 17:20:27 -0600 |
commit | e69a13d15dafb21eaa65ea02dbc80f5045699688 (patch) | |
tree | e052317087d6671566798672d875c0eed7b0fb98 /libgcc | |
parent | b009eac1575fab705384306a5c877945184d7ffc (diff) | |
download | gcc-e69a13d15dafb21eaa65ea02dbc80f5045699688.zip gcc-e69a13d15dafb21eaa65ea02dbc80f5045699688.tar.gz gcc-e69a13d15dafb21eaa65ea02dbc80f5045699688.tar.bz2 |
config.host (rx-*-linux*): Add t-fdpbit to tmake_file Add appropriate tm_file clause as well.
* config.host (rx-*-linux*): Add t-fdpbit to tmake_file
Add appropriate tm_file clause as well.
* config/rx/t-rx (HOST_LIBGCC2_CFLAGS): Remove.
From-SVN: r271978
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 6 | ||||
-rw-r--r-- | libgcc/config.host | 3 | ||||
-rw-r--r-- | libgcc/config/rx/t-rx | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 82c124f..93cdcda 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,9 @@ +2019-06-05 Yoshinori Sato <ysato@users.sourceforge.jp> + + * config.host (rx-*-linux*): Add t-fdpbit to tmake_file + Add appropriate tm_file clause as well. + * config/rx/t-rx (HOST_LIBGCC2_CFLAGS): Remove. + 2019-06-05 James Clarke <jrtc27@jrtc27.com> * config/ia64/crtbegin.S (__dso_handle): Put in .sdata/.sbss diff --git a/libgcc/config.host b/libgcc/config.host index ff2f0fa..d75e2b5 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -1212,7 +1212,8 @@ rx-*-elf) tm_file="$tm_file rx/rx-abi.h rx/rx-lib.h" ;; rx-*-linux*) - tmake_file="rx/t-rx" + tmake_file="rx/t-rx t-fdpbit" + tm_file="$tm_file rx/rx-lib.h" ;; s390-*-linux*) tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi t-stack s390/t-stack-s390" diff --git a/libgcc/config/rx/t-rx b/libgcc/config/rx/t-rx index 34cdc97..ace3b16 100644 --- a/libgcc/config/rx/t-rx +++ b/libgcc/config/rx/t-rx @@ -23,7 +23,6 @@ # the normal libgcc sources: LIB2ADD = $(srcdir)/config/rx/rx-abi-functions.c -HOST_LIBGCC2_CFLAGS += -DDF=SF # We need special handling of the floating point conversion |