diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-27 15:34:19 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-27 15:34:19 +0000 |
commit | 2b41198eb0d536c2b4f79ff65d5eaf18ce7c1b4d (patch) | |
tree | 080a30ce9b5d8880b0d443e55b5d385122730e57 /gcc/config.gcc | |
parent | 3df7811bd551604c6b9c4705a1f502372ac42a0f (diff) | |
download | gcc-2b41198eb0d536c2b4f79ff65d5eaf18ce7c1b4d.tar.gz |
* config/i386/cygwin.h: Don't include any other files directly.
* config/i386/mingw32.h: Don't include cygwin.h directly.
* config.gcc (cygwin, mingw32, uwin): Instead make these files
explicit in the tm_files variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63508 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 71ee45d52fc..baa22d0cfc5 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1312,7 +1312,7 @@ i[34567]86-*-pe | i[34567]86-*-cygwin*) xm_defines=POSIX xm_file=i386/xm-cygwin.h tmake_file=i386/t-cygwin - tm_file=i386/cygwin.h + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h" extra_objs=winnt.o if test x$enable_threads = xyes; then thread_file='win32' @@ -1320,7 +1320,7 @@ i[34567]86-*-pe | i[34567]86-*-cygwin*) exeext=.exe ;; i[34567]86-*-mingw32*) - tm_file=i386/mingw32.h + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/mingw32.h" xm_defines=POSIX xm_file=i386/xm-mingw32.h tmake_file="i386/t-cygwin i386/t-mingw32" @@ -1338,7 +1338,7 @@ i[34567]86-*-mingw32*) esac ;; i[34567]86-*-uwin*) - tm_file="i386/cygwin.h i386/uwin.h" + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h" tmake_file="i386/t-cygwin i386/t-uwin" extra_objs=winnt.o if test x$enable_threads = xyes; then |