aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1998-04-14 22:03:31 +0000
committerIan Lance Taylor <ian@airs.com>1998-04-14 22:03:31 +0000
commitf4132507a0bdafa27fdd2c84b3c9006744906dce (patch)
tree27afe14f13760f423323c656ac8c0caef7d85f08
parent489564e28be40521a179c48df3ca3c984f84d978 (diff)
downloadgdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.zip
gdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.tar.gz
gdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.tar.bz2
* configure.in: Don't set PICFLAG on ix86-cygwin32.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index df795a3..e2ed8f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
+
+ * configure.in: Don't set PICFLAG on ix86-cygwin32.
+
Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
* configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
diff --git a/configure.in b/configure.in
index 6a84d36..fd8b28c 100644
--- a/configure.in
+++ b/configure.in
@@ -276,6 +276,9 @@ if [ x${shared} = xyes ]; then
hppa*)
host_makefile_frag="${host_makefile_frag} config/mh-papic"
;;
+ i[3456]86-*-cygwin32*)
+ # We don't want -fPIC on cygwin32.
+ ;;
i[3456]86-*)
host_makefile_frag="${host_makefile_frag} config/mh-x86pic"
;;