diff options
author | Christopher Faylor <cgf@redhat.com> | 2004-02-22 00:04:38 +0000 |
---|---|---|
committer | Christopher Faylor <cgf@gcc.gnu.org> | 2004-02-22 00:04:38 +0000 |
commit | dc4a2f323a11d5af27c486e6f0cc3b394fc8b5fb (patch) | |
tree | 1f48c80cc1d79aae2c609a2f48b879eba1bf72db /gcc/config.gcc | |
parent | afc3bb58d5cb56d62b6b6a5c7bafcc27357e35db (diff) | |
download | gcc-dc4a2f323a11d5af27c486e6f0cc3b394fc8b5fb.zip gcc-dc4a2f323a11d5af27c486e6f0cc3b394fc8b5fb.tar.gz gcc-dc4a2f323a11d5af27c486e6f0cc3b394fc8b5fb.tar.bz2 |
config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): Specify extra host object file when targetting cygwin.
* config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): Specify extra host object
file when targetting cygwin.
* config/i386/t-cygwin (EXTRA_GCC_OBJS): Remove definition since it is
overridden by top-level Makefile.
From-SVN: r78241
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 48f5444..b7946d9 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1019,10 +1019,11 @@ i[4567]86-wrs-vxworks) i[34567]86-*-pe | i[34567]86-*-cygwin*) tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h" xm_file=i386/xm-cygwin.h - tmake_file="i386/t-cygming i386/t-cygwin" + tmake_file="i386/t-cygwin i386/t-cygming" extra_objs=winnt.o c_target_objs=cygwin2.o cxx_target_objs=cygwin2.o + host_extra_objs=cygwin1.o if test x$enable_threads = xyes; then thread_file='posix' fi |