aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2006-05-16 03:14:00 +0000
committerDanny Smith <dannysmith@gcc.gnu.org>2006-05-16 03:14:00 +0000
commit2102802062c79ec73a99143d9daab7174b4b12fe (patch)
tree542a8e46cdf200f403571af3098d7ca1770ac953
parent4741d956ad818704d6831b61bf45981202bc81b0 (diff)
downloadgcc-2102802062c79ec73a99143d9daab7174b4b12fe.zip
gcc-2102802062c79ec73a99143d9daab7174b4b12fe.tar.gz
gcc-2102802062c79ec73a99143d9daab7174b4b12fe.tar.bz2
re PR target/27599 (build failure on mingw)
PR target/27599 * config.host (i[34567]86-*-mingw*): Append i386/x-mingw32 to host_xmake_file. From-SVN: r113816
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config.host2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a92d553..fc93eff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2006-05-16 Danny Smith <dannysmith@users.sourceforge.net>
+
+ PR target/27599
+ * config.host (i[34567]86-*-mingw*): Append i386/x-mingw32 to
+ host_xmake_file.
+
2006-05-16 Ben Elliston <bje@au.ibm.com>
* tree-cfg.c (split_edge_bb_loc): Remove unused variable `src'.
diff --git a/gcc/config.host b/gcc/config.host
index be5ac82..64d3dbc 100644
--- a/gcc/config.host
+++ b/gcc/config.host
@@ -168,7 +168,7 @@ case ${host} in
;;
i[34567]86-*-mingw32*)
host_xm_file=i386/xm-mingw32.h
- host_xmake_file=i386/x-mingw32
+ host_xmake_file="${host_xmake_file} i386/x-mingw32"
host_exeext=.exe
out_host_hook_obj=host-mingw32.o
;;