diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-13 22:08:28 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-13 22:08:28 +0000 |
commit | 67f25eeb3d5ebb1832d9328beed72482627458f0 (patch) | |
tree | 3653f7f254f7770099248bb332b52411a4e98d96 /gcc/config.gcc | |
parent | 4da3983f1da7428707a3e3109fe2da89b592595f (diff) | |
download | gcc-67f25eeb3d5ebb1832d9328beed72482627458f0.tar.gz |
* config.gcc (powerpc|rs6000): Set default cpp options based
on --with-cpu settings.
* config/rs6000/softfloat.h: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46993 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f6169ddc3ab..29029738b08 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3409,11 +3409,15 @@ powerpc*-*-* | rs6000-*-*) xcommon | xpower | xpower2 | xpowerpc | xrios \ | xrios1 | xrios2 | xrsc | xrsc1 \ | x601 | x602 | x603 | x603e | x604 | x604e | x620 \ - | xec603e | x740 | x750 | x401 \ - | x403 | x505 | x801 | x821 | x823 | x860) + | x740 | x750 | x505) target_cpu_default2="\\\"$with_cpu\\\"" ;; + x401 | x403 | xec603e | x801 | x821 | x823 | x860) + target_cpu_default2="\\\"$with_cpu\\\"" + tm_file="$tm_file rs6000/softfloat.h" + ;; + xyes | xno) echo "--with-cpu must be passed a value" 1>&2 exit 1 |