diff options
author | Jose E. Marchesi <jose.marchesi@oracle.com> | 2016-05-30 21:33:34 +0200 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2016-05-30 19:33:34 +0000 |
commit | 31177ef2527b3b219d4126a332edcf822829e983 (patch) | |
tree | 3e7c63755cf7e5561f96573dc1592ed83ec186a5 /gcc/config.gcc | |
parent | b2f6675b74a6d16ab44202ac0e49587da8f7d4cf (diff) | |
download | gcc-31177ef2527b3b219d4126a332edcf822829e983.zip gcc-31177ef2527b3b219d4126a332edcf822829e983.tar.gz gcc-31177ef2527b3b219d4126a332edcf822829e983.tar.bz2 |
config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and tune_64.
2016-05-30 Jose E. Marchesi <jose.marchesi@oracle.com>
* config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
tune_64.
* doc/install.texi (--with-cpu-32, --with-cpu-64): Document
support on SPARC.
* config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
cpu_32, cpu_64, tune_32 and tune_64.
* config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
From-SVN: r236897
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 51af122a..d0a3880 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -4250,9 +4250,9 @@ case "${target}" in esac ;; sparc*-*-*) - supported_defaults="cpu float tune" + supported_defaults="cpu cpu_32 cpu_64 float tune tune_32 tune_64" - for which in cpu tune; do + for which in cpu cpu_32 cpu_64 tune tune_32 tune_64; do eval "val=\$with_$which" case ${val} in "" | sparc | sparcv9 | sparc64 \ |