This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] -Wall
[perl5.git] / hints / cygwin.sh
CommitLineData
5aabfad6 1#! /bin/sh
2c2d71f5 2# cygwin.sh - hints for building perl using the Cygwin environment for Win32
5aabfad6 3#
f89d6eaa 4
d702ae42 5# not otherwise settable
f89d6eaa 6exe_ext='.exe'
f89d6eaa 7firstmakefile='GNUmakefile'
d702ae42
GS
8case "$ldlibpthname" in
9'') ldlibpthname=PATH ;;
10esac
5db16f6a 11archobjs='cygwin.o'
f89d6eaa 12
4fabb596 13# mandatory (overrides incorrect defaults)
c22e42be 14test -z "$cc" && cc='gcc'
4fabb596 15if test -z "$plibpth"
d702ae42 16then
4fabb596
GS
17 plibpth=`gcc -print-file-name=libc.a`
18 plibpth=`dirname $plibpth`
19 plibpth=`cd $plibpth && pwd`
d702ae42 20fi
f89d6eaa 21so='dll'
5d129265 22# - eliminate -lc, implied by gcc and a symlink to libcygwin.a
4fabb596 23libswanted=`echo " $libswanted " | sed -e 's/ c / /g'`
5d129265
EF
24# - eliminate -lm, symlink to libcygwin.a
25libswanted=`echo " $libswanted " | sed -e 's/ m / /g'`
26libswanted="$libswanted cygipc"
b4bcd662 27test -z "$optimize" && optimize='-O2'
47dafe4d 28ccflags="$ccflags -DPERL_USE_SAFE_PUTENV"
4fabb596 29# - otherwise i686-cygwin
d702ae42 30archname='cygwin'
4fabb596
GS
31
32# dynamic loading
4fabb596
GS
33# - otherwise -fpic
34cccdlflags=' '
5db16f6a 35ld='ld2'
d702ae42
GS
36
37# optional(ish)
38# - perl malloc needs to be unpolluted
39bincompat5005='undef'
5cf1d1f1 40
5db16f6a
EF
41# Win9x problem with non-blocking read from a closed pipe
42d_eofnblk='define'
43
d702ae42
GS
44# strip exe's and dll's
45#ldflags="$ldflags -s"
46#ccdlflags="$ccdlflags -s"
47#lddlflags="$lddlflags -s"