diff options
author | Nathan Sidwell <nathan@gcc.gnu.org> | 2008-07-07 11:14:37 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2008-07-07 11:14:37 +0000 |
commit | 368b55f6b083a01df284be8d536b4977da612894 (patch) | |
tree | 517b07dfb6608aca5b2c97cf3af88c2112bd2263 /gcc/config.gcc | |
parent | b2aa7a643731875539bdee8150e9c02c5a0dea44 (diff) | |
download | gcc-368b55f6b083a01df284be8d536b4977da612894.zip gcc-368b55f6b083a01df284be8d536b4977da612894.tar.gz gcc-368b55f6b083a01df284be8d536b4977da612894.tar.bz2 |
config.gcc (m68k-*-linux*): Add with_arch.
* config.gcc (m68k-*-linux*): Add with_arch. Add sysroot-suffix.h
to tm_file. Add m68k/t-floatlib, m68k/t-linux & m68k/t-mlibs to
tmake_file.
* config/m68k/t-linux: New.
* doc/install.texi: Document m68k-*-linux is now multilibbed by
default.
From-SVN: r137557
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index eda2812..e73223b 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1459,9 +1459,11 @@ m68k-*-linux*) # Motorola m68k's running GNU/Linux # aka the GNU/Linux C library 6. default_m68k_cpu=68020 default_cf_cpu=5475 - tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h m68k/linux.h" + with_arch=${with_arch:-m68k} + tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h m68k/linux.h ./sysroot-suffix.h" extra_options="${extra_options} m68k/ieee.opt" tm_defines="${tm_defines} MOTOROLA=1" + tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs" # if not configured with --enable-sjlj-exceptions, bump the # libgcc version number if test x$sjlj != x1; then |