diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2002-06-15 17:31:32 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-06-15 17:31:32 +0000 |
commit | d5355cb2c6e1748f221a88b36902a798fa9a0cd2 (patch) | |
tree | 9cc8a7452fc815ed1f99db6300c934bf5fb50b22 /gcc/config.gcc | |
parent | 8dcb27ed86eb249675749e35b1440a8ccfd03881 (diff) | |
download | gcc-d5355cb2c6e1748f221a88b36902a798fa9a0cd2.zip gcc-d5355cb2c6e1748f221a88b36902a798fa9a0cd2.tar.gz gcc-d5355cb2c6e1748f221a88b36902a798fa9a0cd2.tar.bz2 |
Makefile.in (tm_defines): New configuration variable.
* Makefile.in (tm_defines): New configuration variable.
(cs-config.h, cs-hconfig.h, cs-tconfig.h): Rename DEFINES to XM_DEFINES.
Pass tm_defines in TM_DEFINES.
(cs-tm_p.h): Rename DEFINES to XM_DEFINES. Pass TM_DEFINES.
* config.gcc (tm_defines): New configuration variable.
(hppa*-*-* | parisc*-*-*): Use tm_defines instead of pa-700.h and
pa-7100.h headers. Change hppa1* scheduling default to 7100LC.
* configure.in: Substitute tm_defines.
* configure: Rebuilt.
* mkconfig.sh: Rename DEFINES to XM_DEFINES. Output TM_DEFINES.
* doc/install.texi: Update.
* pa/pa-700.h: Delete file.
* pa/pa-7100.h: Delete file.
From-SVN: r54648
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 38b7adc..16b7011 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -45,6 +45,8 @@ # # cpu_type The name of the cpu, if different from machine. # +# tm_defines List of target macros to define for all compilations. +# # tm_file A list of target macro files, if different from # "$cpu_type/$cpu_type.h". Usually it's constructed # per target in a way like this: @@ -188,6 +190,7 @@ extra_host_objs= extra_gcc_objs= c_target_objs= cxx_target_objs= +tm_defines= xm_defines= float_format= # Set this to force installation and use of collect2. @@ -2850,11 +2853,8 @@ hppa*-*-* | parisc*-*-*) target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY" fi case $machine in - hppa1.0* | parisc1.0*) - tm_file="pa/pa-700.h ${tm_file}" - ;; - hppa1.1* | parisc1.1*) - tm_file="pa/pa-7100.h ${tm_file}" + hppa1* | parisc1*) + tm_defines="TARGET_SCHED_DEFAULT=\\\"7100LC\\\"" ;; esac ;; |