This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
After Yosemite there's no /usr/include.
[perl5.git] / hints / darwin.sh
... / ...
CommitLineData
1##
2# Darwin (Mac OS) hints
3# Wilfredo Sanchez <wsanchez@wsanchez.net>
4##
5
6##
7# Paths
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
16# Pretend that Darwin doesn't know about those system calls in Tiger
17# (10.4/darwin 8) and earlier [perl #24122]
18case "$osvers" in
19[1-8].*)
20 d_setregid='undef'
21 d_setreuid='undef'
22 d_setrgid='undef'
23 d_setruid='undef'
24 ;;
25esac
26
27# finite() deprecated in 10.9, use isfinite() instead.
28case "$osvers" in
29[1-8].*) ;;
30*) d_finite='undef' ;;
31esac
32
33# This was previously used in all but causes three cases
34# (no -Ddprefix=, -Dprefix=/usr, -Dprefix=/some/thing/else)
35# but that caused too much grief.
36# vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
37
38# BSD paths
39case "$prefix" in
40'') # Default install; use non-system directories
41 prefix='/usr/local';
42 siteprefix='/usr/local';
43 ;;
44'/usr') # We are building/replacing the built-in perl
45 prefix='/';
46 installprefix='/';
47 bin='/usr/bin';
48 siteprefix='/usr/local';
49 # We don't want /usr/bin/HEAD issues.
50 sitebin='/usr/local/bin';
51 sitescript='/usr/local/bin';
52 installusrbinperl='define'; # You knew what you were doing.
53 privlib="/System/Library/Perl/${version}";
54 sitelib="/Library/Perl/${version}";
55 vendorprefix='/';
56 usevendorprefix='define';
57 vendorbin='/usr/bin';
58 vendorscript='/usr/bin';
59 vendorlib="/Network/Library/Perl/${version}";
60 # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
61 man1dir='/usr/share/man/man1';
62 man3dir='/usr/share/man/man3';
63 # But users' installs shouldn't touch the system man pages.
64 # Transient obsoleted style.
65 siteman1='/usr/local/share/man/man1';
66 siteman3='/usr/local/share/man/man3';
67 # New style.
68 siteman1dir='/usr/local/share/man/man1';
69 siteman3dir='/usr/local/share/man/man3';
70 ;;
71 *) # Anything else; use non-system directories, use Configure defaults
72 ;;
73esac
74
75##
76# Tool chain settings
77##
78
79# Since we can build fat, the archname doesn't need the processor type
80archname='darwin';
81
82# nm isn't known to work after Snow Leopard and XCode 4; testing with OS X 10.5
83# and Xcode 3 shows a working nm, but pretending it doesn't work produces no
84# problems.
85usenm='false';
86
87case "$optimize" in
88'')
89# Optimizing for size also mean less resident memory usage on the part
90# of Perl. Apple asserts that this is a more important optimization than
91# saving on CPU cycles. Given that memory speed has not increased at
92# pace with CPU speed over time (on any platform), this is probably a
93# reasonable assertion.
94if [ -z "${optimize}" ]; then
95 case "`${cc:-gcc} -v 2>&1`" in
96 *"gcc version 3."*) optimize='-Os' ;;
97 *) optimize='-O3' ;;
98 esac
99else
100 optimize='-O3'
101fi
102;;
103esac
104
105# -fno-common because common symbols are not allowed in MH_DYLIB
106# -DPERL_DARWIN: apparently the __APPLE__ is not sanctioned by Apple
107# as the way to differentiate Mac OS X. (The official line is that
108# *no* cpp symbol does differentiate Mac OS X.)
109ccflags="${ccflags} -fno-common -DPERL_DARWIN"
110
111# At least on Darwin 1.3.x:
112#
113# # define INT32_MIN -2147483648
114# int main () {
115# double a = INT32_MIN;
116# printf ("INT32_MIN=%g\n", a);
117# return 0;
118# }
119# will output:
120# INT32_MIN=2.14748e+09
121# Note that the INT32_MIN has become positive.
122# INT32_MIN is set in /usr/include/stdint.h by:
123# #define INT32_MIN -2147483648
124# which seems to break the gcc. Defining INT32_MIN as (-2147483647-1)
125# seems to work. INT64_MIN seems to be similarly broken.
126# -- Nicholas Clark, Ken Williams, and Edward Moy
127#
128# This seems to have been fixed since at least Mac OS X 10.1.3,
129# stdint.h defining INT32_MIN as (-INT32_MAX-1)
130# -- Edward Moy
131#
132if test -f /usr/include/stdint.h; then
133 case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
134 *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
135 esac
136fi
137
138# Avoid Apple's cpp precompiler, better for extensions
139if [ "X`echo | ${cc} -no-cpp-precomp -E - 2>&1 >/dev/null`" = "X" ]; then
140 cppflags="${cppflags} -no-cpp-precomp"
141
142 # This is necessary because perl's build system doesn't
143 # apply cppflags to cc compile lines as it should.
144 ccflags="${ccflags} ${cppflags}"
145fi
146
147# Known optimizer problems.
148case "`cc -v 2>&1`" in
149 *"3.1 20020105"*) toke_cflags='optimize=""' ;;
150esac
151
152# Shared library extension is .dylib.
153# Bundle extension is .bundle.
154so='dylib';
155dlext='bundle';
156usedl='define';
157
158# 10.4 can use dlopen.
159# 10.4 broke poll().
160case "$osvers" in
161[1-7].*)
162 dlsrc='dl_dyld.xs';
163 ;;
164*)
165 dlsrc='dl_dlopen.xs';
166 d_poll='undef';
167 i_poll='undef';
168 ;;
169esac
170
171case "$ccdlflags" in # If passed in from command line, presume user knows best
172'')
173 cccdlflags=' '; # space, not empty, because otherwise we get -fpic
174;;
175esac
176
177# Allow the user to override ld, but modify it as necessary below
178case "$ld" in
179 '') case "$cc" in
180 # If the cc is explicitly something else than cc (or empty),
181 # set the ld to be that explicitly something else. Conversely,
182 # if the cc is 'cc' (or empty), set the ld to be 'cc'.
183 cc|'') ld='cc';;
184 *) ld="$cc" ;;
185 esac
186 ;;
187esac
188
189# Perl bundles do not expect two-level namespace, added in Darwin 1.4.
190# But starting from perl 5.8.1/Darwin 7 the default is the two-level.
191case "$osvers" in
1921.[0-3].*)
193 lddlflags="${ldflags} -bundle -undefined suppress"
194 ;;
1951.*)
196 ldflags="${ldflags} -flat_namespace"
197 lddlflags="${ldflags} -bundle -undefined suppress"
198 ;;
199[2-6].*)
200 ldflags="${ldflags} -flat_namespace"
201 lddlflags="${ldflags} -bundle -undefined suppress"
202 ;;
203*)
204 lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
205 case "$ld" in
206 *MACOSX_DEVELOPMENT_TARGET*) ;;
207 *) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
208 esac
209 ;;
210esac
211ldlibpthname='DYLD_LIBRARY_PATH';
212
213# useshrplib=true results in much slower startup times.
214# 'false' is the default value. Use Configure -Duseshrplib to override.
215
216cat > UU/archname.cbu <<'EOCBU'
217# This script UU/archname.cbu will get 'called-back' by Configure
218# after it has otherwise determined the architecture name.
219case "$ldflags" in
220*"-flat_namespace"*) ;; # Backward compat, be flat.
221# If we are using two-level namespace, we will munge the archname to show it.
222*) archname="${archname}-2level" ;;
223esac
224EOCBU
225
226# 64-bit addressing support. Currently strictly experimental. DFD 2005-06-06
227case "$use64bitall" in
228$define|true|[yY]*)
229case "$osvers" in
230[1-7].*)
231 cat <<EOM >&4
232
233
234
235*** 64-bit addressing is not supported for Mac OS X versions
236*** below 10.4 ("Tiger") or Darwin versions below 8. Please try
237*** again without -Duse64bitall. (-Duse64bitint will work, however.)
238
239EOM
240 exit 1
241 ;;
242*)
243 case "$osvers" in
244 8.*)
245 cat <<EOM >&4
246
247
248
249*** Perl 64-bit addressing support is experimental for Mac OS X
250*** 10.4 ("Tiger") and Darwin version 8. System V IPC is disabled
251*** due to problems with the 64-bit versions of msgctl, semctl,
252*** and shmctl. You should also expect the following test failures:
253***
254*** ext/threads-shared/t/wait (threaded builds only)
255
256EOM
257
258 [ "$d_msgctl" ] || d_msgctl='undef'
259 [ "$d_semctl" ] || d_semctl='undef'
260 [ "$d_shmctl" ] || d_shmctl='undef'
261 ;;
262 esac
263
264 case `uname -p` in
265 powerpc) arch=ppc64 ;;
266 i386) arch=x86_64 ;;
267 *) cat <<EOM >&4
268
269*** Don't recognize processor, can't specify 64 bit compilation.
270
271EOM
272 ;;
273 esac
274 for var in ccflags cppflags ld ldflags
275 do
276 eval $var="\$${var}\ -arch\ $arch"
277 done
278
279 ;;
280esac
281;;
282esac
283
284##
285# System libraries
286##
287
288# vfork works
289usevfork='true';
290
291# malloc wrap works
292case "$usemallocwrap" in
293'') usemallocwrap='define' ;;
294esac
295
296# our malloc works (but allow users to override)
297case "$usemymalloc" in
298'') usemymalloc='n' ;;
299esac
300# However sbrk() returns -1 (failure) somewhere in lib/unicore/mktables at
301# around 14M, so we need to use system malloc() as our sbrk()
302malloc_cflags='ccflags="-DUSE_PERL_SBRK -DPERL_SBRK_VIA_MALLOC $ccflags"'
303
304# Locales aren't feeling well.
305LC_ALL=C; export LC_ALL;
306LANG=C; export LANG;
307
308#
309# The libraries are not threadsafe as of OS X 10.1.
310#
311# Fix when Apple fixes libc.
312#
313case "$usethreads$useithreads" in
314 *define*)
315 case "$osvers" in
316 [12345].*) cat <<EOM >&4
317
318
319
320*** Warning, there might be problems with your libraries with
321*** regards to threading. The test ext/threads/t/libc.t is likely
322*** to fail.
323
324EOM
325 ;;
326 *) usereentrant='define';;
327 esac
328
329esac
330
331# Fink can install a GDBM library that claims to have the ODBM interfaces
332# but Perl dynaloader cannot for some reason use that library. We don't
333# really need ODBM_FIle, though, so let's just hint ODBM away.
334i_dbm=undef;
335
336# Configure doesn't detect ranlib on Tiger properly.
337# NeilW says this should be acceptable on all darwin versions.
338ranlib='ranlib'
339
340# Catch MacPorts gcc/g++ extra libdir
341case "$($cc -v 2>&1)" in
342*"MacPorts gcc"*) loclibpth="$loclibpth /opt/local/lib/libgcc" ;;
343esac
344
345##
346# Build process
347##
348
349# Case-insensitive filesystems don't get along with Makefile and
350# makefile in the same place. Since Darwin uses GNU make, this dodges
351# the problem.
352firstmakefile=GNUmakefile;