diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 1998-09-20 11:12:53 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-20 05:12:53 -0600 |
commit | 6261669528dbbdcfa11dc079799e4990c6f8229e (patch) | |
tree | f1d7fee4bbe7a64b9cfe45fcbb0a3463cc6e1501 /gcc | |
parent | 0155cab43248f286a139e1cf98414dd115411f78 (diff) | |
download | gcc-6261669528dbbdcfa11dc079799e4990c6f8229e.zip gcc-6261669528dbbdcfa11dc079799e4990c6f8229e.tar.gz gcc-6261669528dbbdcfa11dc079799e4990c6f8229e.tar.bz2 |
configure.in: Add support for c4x targets.
* configure.in: Add support for c4x targets.
* configure: Rebuilt.
From-SVN: r22498
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 10 | ||||
-rw-r--r-- | gcc/configure.in | 4 |
3 files changed, 16 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9bed901..7b9c59d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1998-09-20 Michael Hayes <m.hayes@elec.canterbury.ac.nz> + + * configure.in: Add support for c4x targets. + * configure: Rebuilt. + Sun Sep 20 00:00:51 1998 Richard Henderson <rth@cygnus.com> * combine.c (distribute_notes): If an insn is a cc0 user, only diff --git a/gcc/configure b/gcc/configure index 69c9019..95efa55 100755 --- a/gcc/configure +++ b/gcc/configure @@ -2634,6 +2634,10 @@ for machine in $build $host $target; do use_collect2=yes fixincludes=Makefile.in ;; + c4x-*) + cpu_type=c4x + tmake_file=c4x/t-c4x + ;; clipper-intergraph-clix*) tm_file="${tm_file} svr3.h clipper/clix.h" xm_file=clipper/xm-clix.h @@ -5468,7 +5472,7 @@ fi # Figure out what assembler alignment features are present. echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6 -echo "configure:5472: checking assembler alignment features" >&5 +echo "configure:5476: checking assembler alignment features" >&5 gcc_cv_as= gcc_cv_as_alignment_features= gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas @@ -5537,7 +5541,7 @@ fi echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6 echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6 -echo "configure:5541: checking assembler subsection support" >&5 +echo "configure:5545: checking assembler subsection support" >&5 gcc_cv_as_subsections= if test x$gcc_cv_as != x; then # Check if we have .subsection @@ -5773,7 +5777,7 @@ fi # Warn if using init_priority. echo $ac_n "checking whether to enable init_priority by default""... $ac_c" 1>&6 -echo "configure:5777: checking whether to enable init_priority by default" >&5 +echo "configure:5781: checking whether to enable init_priority by default" >&5 if test x$enable_init_priority != xyes; then enable_init_priority=no fi diff --git a/gcc/configure.in b/gcc/configure.in index fb9e9b1..4a0f929 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -655,6 +655,10 @@ changequote([,])dnl use_collect2=yes fixincludes=Makefile.in ;; + c4x-*) + cpu_type=c4x + tmake_file=c4x/t-c4x + ;; clipper-intergraph-clix*) tm_file="${tm_file} svr3.h clipper/clix.h" xm_file=clipper/xm-clix.h |