diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-07-07 17:33:18 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-07-07 17:33:18 +0100 |
commit | 1e4b2746e01c334c0dc26b8dd421c08812ca3f60 (patch) | |
tree | d715bffd8df79a6144e8cb82b90628815ec0ddb7 /gcc | |
parent | d7ff1e110e6765991e0ff3973a3556dddce98230 (diff) | |
download | gcc-1e4b2746e01c334c0dc26b8dd421c08812ca3f60.zip gcc-1e4b2746e01c334c0dc26b8dd421c08812ca3f60.tar.gz gcc-1e4b2746e01c334c0dc26b8dd421c08812ca3f60.tar.bz2 |
config.gcc (*local*): Remove.
gcc:
* config.gcc (*local*): Remove.
* doc/install-old.texi: Don't mention local configurations.
libgcc:
* config.host (*local*): Remove.
From-SVN: r175988
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 11 | ||||
-rw-r--r-- | gcc/doc/install-old.texi | 10 |
3 files changed, 5 insertions, 21 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 88b0d81..d9670d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-07-07 Joseph Myers <joseph@codesourcery.com> + + * config.gcc (*local*): Remove. + * doc/install-old.texi: Don't mention local configurations. + 2011-07-07 Jakub Jelinek <jakub@redhat.com> PR debug/49522 diff --git a/gcc/config.gcc b/gcc/config.gcc index f8d7274..c190fa7 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -752,17 +752,6 @@ case ${target} in esac case ${target} in -# Support site-specific machine types. -*local*) - rest=`echo ${target} | sed -e "s/$cpu_type-//"` - tm_file=${cpu_type}/$rest.h - if test -f $srcdir/config/${cpu_type}/xm-$rest.h - then xm_file=${cpu_type}/xm-$rest.h - fi - if test -f $srcdir/config/${cpu_type}/t-$rest - then tmake_file=${cpu_type}/t-$rest - fi - ;; alpha*-*-linux*) tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h" extra_options="${extra_options} alpha/elf.opt" diff --git a/gcc/doc/install-old.texi b/gcc/doc/install-old.texi index e349c63..0fc8ba4 100644 --- a/gcc/doc/install-old.texi +++ b/gcc/doc/install-old.texi @@ -183,13 +183,3 @@ sun4, symmetry, tower-32, tower. @noindent Remember that a machine name specifies both the cpu type and the company name. -If you want to install your own homemade configuration files, you can -use @samp{local} as the company name to access them. If you use -configuration @samp{@var{cpu}-local}, the configuration name -without the cpu prefix -is used to form the configuration file names. - -Thus, if you specify @samp{m68k-local}, configuration uses -files @file{m68k.md}, @file{local.h}, @file{m68k.c}, -@file{xm-local.h}, @file{t-local}, and @file{x-local}, all in the -directory @file{config/m68k}. |