diff options
author | Nick Clifton <nickc@redhat.com> | 2000-11-25 00:33:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2000-11-25 00:33:04 +0000 |
commit | aac69a49c996b35d3dca614d8cf880611423014b (patch) | |
tree | 6a2f9e3542d48d088b440bb3cc3ee9cd0351ebce /gcc/config.gcc | |
parent | 0a534f40cc6e33a32058dbdc534347812d4a1c43 (diff) | |
download | gcc-aac69a49c996b35d3dca614d8cf880611423014b.zip gcc-aac69a49c996b35d3dca614d8cf880611423014b.tar.gz gcc-aac69a49c996b35d3dca614d8cf880611423014b.tar.bz2 |
Add support for target specific, language specific object files.
From-SVN: r37726
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 8d5306a..b2dbe00 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -87,12 +87,15 @@ # host_extra_objs List of extra host-dependant objects that should # be linked into the compiler proper. # -# extra_objs List of extra target-dependant objects that should -# be linked into the compiler proper. -# # host_extra_gcc_objs List of extra host-dependant objects that should # be linked into the gcc driver. # +# c_target_objs List of extra target-dependant objects that be +# linked into the C compiler only. +# +# cxx_target_objs List of extra target-dependant objects that be +# linked into the C++ compiler only. +# # build_xm_defines List of macros to define when compiling for the # build machine. # @@ -171,6 +174,8 @@ extra_programs= extra_objs= extra_host_objs= extra_gcc_objs= +c_target_objs= +cxx_target_objs= xm_defines= float_format= # Set this to force installation and use of collect2. |