diff options
author | Kelley Cook <kcook@gcc.gnu.org> | 2004-02-25 21:43:26 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2004-02-25 21:43:26 +0000 |
commit | 30500d84920d80fc55e9e7b3446e56bb5016f52e (patch) | |
tree | d10df9390f82bf7098df1a1f0306773ae83bbd32 /gcc/configure.ac | |
parent | bb9f8a85b103be64e123d79d04be735a32a40c3a (diff) | |
download | gcc-30500d84920d80fc55e9e7b3446e56bb5016f52e.zip gcc-30500d84920d80fc55e9e7b3446e56bb5016f52e.tar.gz gcc-30500d84920d80fc55e9e7b3446e56bb5016f52e.tar.bz2 |
config.gcc: Add comment describing extra_gcc_objs.
2004-02-25 Kelley Cook <kcook@gcc.gnu.org>
* config.gcc: Add comment describing extra_gcc_objs.
i[34567]86-*-cygwin*): Replace host_extra_gcc_objs with extra_gcc_objs.
* configure.ac (extra_gcc_objs): New substitution variable.
(host_extra_gcc_objs): Don't substitute.
* configure: Regenerate.
* Makefile.in: Use extra_gcc_objs.
From-SVN: r78459
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index d117428..a6b43bd 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1010,6 +1010,7 @@ target_gtfiles= . ${srcdir}/config.gcc extra_objs="${host_extra_objs} ${extra_objs}" +extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}" # Default the target-machine variables that were not explicitly set. if test x"$tm_file" = x @@ -3024,6 +3025,7 @@ AC_SUBST(quoted_cc_set_by_configure) AC_SUBST(cpp_install_dir) AC_SUBST(xmake_file) AC_SUBST(tmake_file) +AC_SUBST(extra_gcc_objs) AC_SUBST(extra_headers_list) AC_SUBST(extra_objs) AC_SUBST(extra_parts) @@ -3037,7 +3039,6 @@ AC_SUBST(gcc_version) AC_SUBST(gcc_version_full) AC_SUBST(gcc_version_trigger) AC_SUBST(host_exeext) -AC_SUBST(host_extra_gcc_objs) AC_SUBST(host_xm_file_list) AC_SUBST(host_xm_include_list) AC_SUBST(host_xm_defines) |