diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-04-14 22:03:31 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-04-14 22:03:31 +0000 |
commit | f4132507a0bdafa27fdd2c84b3c9006744906dce (patch) | |
tree | 27afe14f13760f423323c656ac8c0caef7d85f08 /configure.in | |
parent | 489564e28be40521a179c48df3ca3c984f84d978 (diff) | |
download | gdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.zip gdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.tar.gz gdb-f4132507a0bdafa27fdd2c84b3c9006744906dce.tar.bz2 |
* configure.in: Don't set PICFLAG on ix86-cygwin32.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
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" ;; |