diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2015-04-28 04:16:27 +0900 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2015-04-27 13:16:27 -0600 |
commit | 2f6bd6eb67a11faef36ab3420cf6783de15e4760 (patch) | |
tree | a67446cf5b576ae16aac0ce5b4210d02ea3e99ef /gcc/config.gcc | |
parent | d5302f06b81185a1c785263358f204fc0f5bdba2 (diff) | |
download | gcc-2f6bd6eb67a11faef36ab3420cf6783de15e4760.zip gcc-2f6bd6eb67a11faef36ab3420cf6783de15e4760.tar.gz gcc-2f6bd6eb67a11faef36ab3420cf6783de15e4760.tar.bz2 |
config.gcc: Add h8300-*-linux.
gcc/
* config.gcc: Add h8300-*-linux.
* config/h8300/linux.h: New.
* config/h8300/t-linux: New.
* config/h8300/h8300.c (h8300_option_override): Normal mode
is not supported for h8300-*-linux.
(h8300_file_start): Target priority change.
(get_shift_alg): Likewise.
(h8300_shift_need_scratch_p): Likewise.
* config/h8300/h8300.h (TARGET_CPU_CPP_BUILTINS): Likewise.
* config/h8300/h8300.md (define_peephole2): Remove duplicate condition.
libgcc/
* config.host: Add h8300-*-linux
* config/h8300/t-linux: New file.
* config/h8300/lib1funs.s: Change symbol prefix.
* config/h8300/sfp-machine.h: 64bit double support.
From-SVN: r222479
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index a1df043..5c48cd0 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1218,6 +1218,10 @@ h8300-*-elf*) tmake_file="h8300/t-h8300" tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h" ;; +h8300-*-linux*) + tmake_file="${tmake_file} h8300/t-h8300 h8300/t-linux" + tm_file="h8300/h8300.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h h8300/linux.h" + ;; hppa*64*-*-linux*) target_cpu_default="MASK_PA_11|MASK_PA_20" tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h gnu-user.h linux.h \ |