diff options
author | John Wehle <john@feith.com> | 2001-03-15 16:29:10 +0000 |
---|---|---|
committer | John Wehle <wehle@gcc.gnu.org> | 2001-03-15 16:29:10 +0000 |
commit | 43fabf7d74fd06fea032efdd9bac58313df5210b (patch) | |
tree | 713e561a36bcdd053f94987456ff3df498f0a3de /gcc/config.gcc | |
parent | a4f4333ade0da6c33abad06e0d60e30f62fc1ce9 (diff) | |
download | gcc-43fabf7d74fd06fea032efdd9bac58313df5210b.zip gcc-43fabf7d74fd06fea032efdd9bac58313df5210b.tar.gz gcc-43fabf7d74fd06fea032efdd9bac58313df5210b.tar.bz2 |
i960.h (i960_maxbitalignment, [...]): Declare.
* i960.h (i960_maxbitalignment,
i960_last_maxbitalignment): Declare.
* i960.c (i960_maxbitalignment,
i960_last_maxbitalignment): Make global.
(process_pragma): Delete.
(i960_pr_align, i960_pr_noalign): Move from here ...
* i960-c.c: ... to this new file.
* t-960bare (i960-c.o): New rule.
* t-vxworks960 (i960-c.o): Likewise.
* config.gcc (i960-*-*): Define c_target_objs and
cxx_target_objs.
From-SVN: r40502
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 830fa11..f3fe3bb 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1519,23 +1519,31 @@ i960-wrs-vxworks5 | i960-wrs-vxworks5.0*) tmake_file=i960/t-vxworks960 use_collect2=yes thread_file='vxworks' + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; i960-wrs-vxworks5* | i960-wrs-vxworks) tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h" tmake_file=i960/t-vxworks960 use_collect2=yes thread_file='vxworks' + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; i960-wrs-vxworks*) tm_file="${tm_file} i960/vx960.h" tmake_file=i960/t-vxworks960 use_collect2=yes thread_file='vxworks' + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; i960-*-coff*) tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h" tmake_file=i960/t-960bare use_collect2=yes + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; i960-*-rtems) tmake_file="i960/t-960bare t-rtems" @@ -1544,9 +1552,13 @@ i960-*-rtems) if test x$enable_threads = xyes; then thread_file='rtems' fi + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; i960-*-*) # Default i960 environment. use_collect2=yes + c_target_objs="i960-c.o" + cxx_target_objs="i960-c.o" ;; ia64*-*-elf*) tm_file=ia64/elf.h |