This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
SvUTF8_off() in do_join can be unconditional.
[perl5.git] / hints / darwin.sh
CommitLineData
f556e5b9
JH
1##
2# Darwin (Mac OS) hints
835bc3f3 3# Wilfredo Sanchez <wsanchez@wsanchez.net>
f556e5b9
JH
4##
5
6##
7# Paths
6fd18151
JH
8##
9
10# Configure hasn't figured out the version number yet. Bummer.
11perl_revision=`awk '/define[ ]+PERL_REVISION/ {print $3}' $src/patchlevel.h`
12perl_version=`awk '/define[ ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
13perl_subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
14version="${perl_revision}.${perl_version}.${perl_subversion}"
15
0cad7ed8
SR
16# Pretend that Darwin doesn't know about those system calls [perl #24122]
17d_setregid='undef'
18d_setreuid='undef'
19d_setrgid='undef'
20d_setruid='undef'
21
6fd18151
JH
22# This was previously used in all but causes three cases
23# (no -Ddprefix=, -Dprefix=/usr, -Dprefix=/some/thing/else)
24# but that caused too much grief.
25# vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
26
27# BSD paths
28case "$prefix" in
29'') # Default install; use non-system directories
30 prefix='/usr/local';
31 siteprefix='/usr/local';
32 ;;
33'/usr') # We are building/replacing the built-in perl
34 prefix='/';
35 installprefix='/';
36 bin='/usr/bin';
b69885a6
JH
37 siteprefix='/usr/local';
38 # We don't want /usr/bin/HEAD issues.
39 sitebin='/usr/local/bin';
40 sitescript='/usr/local/bin';
6fd18151
JH
41 installusrbinperl='define'; # You knew what you were doing.
42 privlib="/System/Library/Perl/${version}";
43 sitelib="/Library/Perl/${version}";
44 vendorprefix='/';
45 usevendorprefix='define';
46 vendorbin='/usr/bin';
47 vendorscript='/usr/bin';
48 vendorlib="/Network/Library/Perl/${version}";
49 # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
50 man1dir='/usr/share/man/man1';
51 man3dir='/usr/share/man/man3';
b69885a6 52 # But users' installs shouldn't touch the system man pages.
8d4e7e39 53 # Transient obsoleted style.
c975d1a7
JH
54 siteman1='/usr/local/share/man/man1';
55 siteman3='/usr/local/share/man/man3';
8d4e7e39
JH
56 # New style.
57 siteman1dir='/usr/local/share/man/man1';
58 siteman3dir='/usr/local/share/man/man3';
6fd18151
JH
59 ;;
60 *) # Anything else; use non-system directories, use Configure defaults
61 ;;
62esac
f556e5b9
JH
63
64##
65# Tool chain settings
66##
67
68# Since we can build fat, the archname doesn't need the processor type
69archname='darwin';
70
71# nm works.
72usenm='true';
73
318c098a
JH
74case "$optimize" in
75'')
14c26028
MS
76# Optimizing for size also mean less resident memory usage on the part
77# of Perl. Apple asserts that this is a more important optimization than
78# saving on CPU cycles. Given that memory speed has not increased at
79# pace with CPU speed over time (on any platform), this is probably a
80# reasonable assertion.
21328108 81if [ -z "${optimize}" ]; then
c8037037
MS
82 case "`${cc:-gcc} -v 2>&1`" in
83 *"gcc version 3."*) optimize='-Os' ;;
84 *) optimize='-O3' ;;
21328108 85 esac
c8037037
MS
86else
87 optimize='-O3'
23131aa4 88fi
318c098a
JH
89;;
90esac
f556e5b9 91
21328108 92# -fno-common because common symbols are not allowed in MH_DYLIB
6239f2da 93# -DPERL_DARWIN: apparently the __APPLE__ is not sanctioned by Apple
f72d1791
JH
94# as the way to differentiate Mac OS X. (The official line is that
95# *no* cpp symbol does differentiate Mac OS X.)
00e89ad4 96ccflags="${ccflags} -fno-common -DPERL_DARWIN"
f556e5b9 97
4e644a1e 98# At least on Darwin 1.3.x:
ccf87481
JH
99#
100# # define INT32_MIN -2147483648
101# int main () {
102# double a = INT32_MIN;
103# printf ("INT32_MIN=%g\n", a);
104# return 0;
105# }
106# will output:
107# INT32_MIN=2.14748e+09
108# Note that the INT32_MIN has become positive.
109# INT32_MIN is set in /usr/include/stdint.h by:
110# #define INT32_MIN -2147483648
111# which seems to break the gcc. Defining INT32_MIN as (-2147483647-1)
112# seems to work. INT64_MIN seems to be similarly broken.
113# -- Nicholas Clark, Ken Williams, and Edward Moy
114#
65fe0b2a
JH
115# This seems to have been fixed since at least Mac OS X 10.1.3,
116# stdint.h defining INT32_MIN as (-INT32_MAX-1)
117# -- Edward Moy
118#
21328108
HS
119case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
120 *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
65fe0b2a 121esac
ccf87481 122
21328108 123# Avoid Apple's cpp precompiler, better for extensions
8f4f83ba 124cppflags="${cppflags} -no-cpp-precomp"
835bc3f3
RGS
125
126# This is necessary because perl's build system doesn't
127# apply cppflags to cc compile lines as it should.
128ccflags="${ccflags} ${cppflags}"
4f8ddd77 129
00371ed5 130# Known optimizer problems.
f5520784 131case "`cc -v 2>&1`" in
21328108 132 *"3.1 20020105"*) toke_cflags='optimize=""' ;;
00371ed5 133esac
2ece6c11 134
f556e5b9
JH
135# Shared library extension is .dylib.
136# Bundle extension is .bundle.
137ld='cc';
138so='dylib';
139dlext='bundle';
140dlsrc='dl_dyld.xs'; usedl='define';
c374061b 141cccdlflags=' '; # space, not empty, because otherwise we get -fpic
21328108 142# Perl bundles do not expect two-level namespace, added in Darwin 1.4.
986530ea 143# But starting from perl 5.8.1/Darwin 7 the default is the two-level.
f29f446b 144case "$osvers" in
cb3fc426 1451.[0-3].*)
986530ea
JH
146 lddlflags="${ldflags} -bundle -undefined suppress"
147 ;;
1481.*)
149 ldflags="${ldflags} -flat_namespace"
150 lddlflags="${ldflags} -bundle -undefined suppress"
151 ;;
152[2-6].*)
153 ldflags="${ldflags} -flat_namespace"
154 lddlflags="${ldflags} -bundle -undefined suppress"
155 ;;
156*) lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
157 case "$ld" in
158 *MACOSX_DEVELOPMENT_TARGET*) ;;
77397dcf 159 *) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
986530ea
JH
160 esac
161 ;;
f29f446b 162esac
f556e5b9 163ldlibpthname='DYLD_LIBRARY_PATH';
39225f5c
DK
164
165# useshrplib=true results in much slower startup times.
763754f3 166# 'false' is the default value. Use Configure -Duseshrplib to override.
f556e5b9 167
cb3fc426
JH
168cat > UU/archname.cbu <<'EOCBU'
169# This script UU/archname.cbu will get 'called-back' by Configure
170# after it has otherwise determined the architecture name.
171case "$ldflags" in
986530ea 172*"-flat_namespace"*) ;; # Backward compat, be flat.
cb3fc426
JH
173# If we are using two-level namespace, we will munge the archname to show it.
174*) archname="${archname}-2level" ;;
175esac
176EOCBU
177
f556e5b9
JH
178##
179# System libraries
180##
181
182# vfork works
183usevfork='true';
184
9df442c2
NC
185# malloc wrap works
186case "$usemallocwrap" in
187'') usemallocwrap='define' ;;
188esac
189
e88d9d51 190# our malloc works (but allow users to override)
ec5333ab 191case "$usemymalloc" in
e88d9d51
RGS
192'') usemymalloc='n' ;;
193esac
2ece6c11 194
d235852b
PP
195# Locales aren't feeling well.
196LC_ALL=C; export LC_ALL;
14c11978 197LANG=C; export LANG;
d235852b 198
2590a1d7 199#
14c11978 200# The libraries are not threadsafe as of OS X 10.1.
2590a1d7
JH
201#
202# Fix when Apple fixes libc.
203#
3db8f154 204case "$usethreads$useithreads" in
21328108 205 *define*)
9bff986a
AB
206 case "$osvers" in
207 [12345].*) cat <<EOM >&4
208
209
2590a1d7 210
4f8ddd77 211*** Warning, there might be problems with your libraries with
00371ed5
JH
212*** regards to threading. The test ext/threads/t/libc.t is likely
213*** to fail.
4f8ddd77 214
2590a1d7 215EOM
21328108 216 ;;
9bff986a
AB
217 *) usereentrant='define';;
218 esac
219
2590a1d7 220esac
835bc3f3 221
8ba6e877
JH
222# Fink can install a GDBM library that claims to have the ODBM interfaces
223# but Perl dynaloader cannot for some reason use that library. We don't
224# really need ODBM_FIle, though, so let's just hint ODBM away.
225i_dbm=undef;
226
835bc3f3
RGS
227##
228# Build process
229##
230
231# Case-insensitive filesystems don't get along with Makefile and
232# makefile in the same place. Since Darwin uses GNU make, this dodges
233# the problem.
234firstmakefile=GNUmakefile;