This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl 5.22.1-RC2 today
[perl5.git] / hints / darwin.sh
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.
11 perl_revision=`awk '/define[    ]+PERL_REVISION/ {print $3}' $src/patchlevel.h`
12 perl_version=`awk '/define[     ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
13 perl_subversion=`awk '/define[  ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
14 version="${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]
18 case "$osvers" in
19 [1-8].*)
20     d_setregid='undef'
21     d_setreuid='undef'
22     d_setrgid='undef'
23     d_setruid='undef'
24     ;;
25 esac
26
27 # finite() deprecated in 10.9, use isfinite() instead.
28 case "$osvers" in
29 [1-8].*) ;;
30 *) d_finite='undef' ;;
31 esac
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
39 case "$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         ;;
73 esac
74
75 ##
76 # Tool chain settings
77 ##
78
79 # Since we can build fat, the archname doesn't need the processor type
80 archname='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.
85 usenm='false';
86
87 case "$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.
94 if [ -z "${optimize}" ]; then
95   case "`${cc:-gcc} -v 2>&1`" in
96     *"gcc version 3."*) optimize='-Os' ;;
97     *) optimize='-O3' ;;
98   esac
99 else
100   optimize='-O3'
101 fi
102 ;;
103 esac
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.)
109 ccflags="${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 #
132 if 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
136 fi
137
138 # Avoid Apple's cpp precompiler, better for extensions
139 if [ "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}"
145 fi
146
147 # Known optimizer problems.
148 case "`cc -v 2>&1`" in
149   *"3.1 20020105"*) toke_cflags='optimize=""' ;;
150 esac
151
152 # Shared library extension is .dylib.
153 # Bundle extension is .bundle.
154 so='dylib';
155 dlext='bundle';
156 usedl='define';
157
158 # 10.4 can use dlopen.
159 # 10.4 broke poll().
160 case "$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     ;;
169 esac
170
171 case "$ccdlflags" in            # If passed in from command line, presume user knows best
172 '')
173    cccdlflags=' '; # space, not empty, because otherwise we get -fpic
174 ;;
175 esac
176
177 # Allow the user to override ld, but modify it as necessary below
178 case "$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         ;;
187 esac
188
189 # From http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/mk/platform/Darwin.mk
190 #
191 # OS, Kernel, Xcode Version
192 # Note that Xcode gets updates on older systems sometimes.
193 # pkgsrc generally expects that the most up-to-date xcode available for
194 # an OS version is installed
195 #
196 # Codename        OS      Kernel  Xcode
197 # Cheetah         10.0.x  1.3.1
198 # Puma            10.1    1.4.1
199 #                 10.1.x  5.x.y
200 # Jaguar          10.2.x  6.x.y
201 # Panther         10.3.x  7.x.y
202 # Tiger           10.4.x  8.x.y   2.x (gcc 4.0, 4.0.1 from 2.2)
203 # Leopard         10.5.x  9.x.y   3.x (gcc 4.0.1, 4.0.1 and 4.2.1 from 3.1)
204 # Snow Leopard    10.6.x  10.x.y  3.2+ (gcc 4.0.1 and 4.2.1)
205 # Lion            10.7.x  11.x.y  4.1 (llvm gcc 4.2.1)
206 # Mountain Lion   10.8.x  12.x.y  4.5 (llvm gcc 4.2.1)
207 # Mavericks       10.9.x  13.x.y  6 (llvm clang 6.0)
208 # Yosemite        10.10.x 14.x.y  6 (llvm clang 6.0)
209 # El Capitan      10.11.x 15.x.y  7 (llvm clang 7.0)
210
211 # Processors Supported
212 #
213 # PowerPC (PPC):       10.0.x - 10.5.8 (final 10.5.x)
214 # PowerPC via Rosetta: 10.4.4 - 10.6.8 (final 10.6.x)
215 # IA-32:               10.4.4 - 10.6.8 (though still supported on x86-64)
216 # x86-64:              10.4.7 - current
217
218 # MACOSX_DEPLOYMENT_TARGET selects the minimum OS level we want to support
219 #
220 # It is needed for OS releases before 10.6.
221 #
222 # https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/cross_development/Configuring/configuring.html
223 #
224 # If it is set, we also propagate its value to ccflags and ldflags
225 # using the -mmacosx-version-min flag.  If it is not set, we use
226 # the OS X release as the min value for the flag.
227
228 # Adds "-mmacosx-version-min=$2" to "$1" unless it already is there.
229 add_macosx_version_min () {
230   local v
231   eval "v=\$$1"
232   case " $v " in
233   *"-mmacosx-version-min"*)
234      echo "NOT adding -mmacosx-version-min=$2 to $1 ($v)" >&4
235      ;;
236   *) echo "Adding -mmacosx-version-min=$2 to $1" >&4
237      eval "$1='$v -mmacosx-version-min=$2'"
238      ;;
239   esac
240 }
241
242 # Perl bundles do not expect two-level namespace, added in Darwin 1.4.
243 # But starting from perl 5.8.1/Darwin 7 the default is the two-level.
244 case "$osvers" in  # Note: osvers is the kernel version, not the 10.x
245 1.[0-3].*) # OS X 10.0.x
246    lddlflags="${ldflags} -bundle -undefined suppress"
247    ;;
248 1.*)       # OS X 10.1
249    ldflags="${ldflags} -flat_namespace"
250    lddlflags="${ldflags} -bundle -undefined suppress"
251    ;;
252 [2-6].*)   # OS X 10.1.x - 10.2.x (though [2-4] never existed publicly)
253    ldflags="${ldflags} -flat_namespace"
254    lddlflags="${ldflags} -bundle -undefined suppress"
255    ;;
256 [7-9].*)   # OS X 10.3.x - 10.5.x
257    lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
258    case "$ld" in
259        *MACOSX_DEVELOPMENT_TARGET*) ;;
260        *) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
261    esac
262    ;;
263 *)        # OS X 10.6.x - current
264    # The MACOSX_DEPLOYMENT_TARGET is not needed,
265    # but the -mmacosx-version-min option is always used.
266
267    # We now use MACOSX_DEPLOYMENT_TARGET, if set, as an override by
268    # capturing its value and adding it to the flags.
269     case "$MACOSX_DEPLOYMENT_TARGET" in
270     10.*)
271       add_macosx_version_min ccflags $MACOSX_DEPLOYMENT_TARGET
272       add_macosx_version_min ldflags $MACOSX_DEPLOYMENT_TARGET
273       ;;
274     '')
275       # Empty MACOSX_DEPLOYMENT_TARGET is okay.
276       ;;
277     *)
278       cat <<EOM >&4
279
280 *** Unexpected MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET
281 ***
282 *** Please either set it to 10.something, or to empty.
283
284 EOM
285       exit 1
286       ;;
287     esac
288
289     # Keep the prodvers leading whitespace (Configure magic).
290     # Cannot use $osvers here since that is the kernel version.
291     # sw_vers output                 what we want
292     # "ProductVersion:    10.10.5"   "10.10"
293     # "ProductVersion:    10.11"     "10.11"
294         prodvers=`sw_vers|awk '/^ProductVersion:/{print $2}'|awk -F. '{print $1"."$2}'`
295     case "$prodvers" in
296     10.*)
297       add_macosx_version_min ccflags $prodvers
298       add_macosx_version_min ldflags $prodvers
299       ;;
300     *)
301       cat <<EOM >&4
302
303 *** Unexpected product version $prodvers.
304 ***
305 *** Try running sw_vers and see what its ProductVersion says.
306
307 EOM
308       exit 1
309     esac
310
311    lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
312    ;;
313 esac
314
315 ldlibpthname='DYLD_LIBRARY_PATH';
316
317 # useshrplib=true results in much slower startup times.
318 # 'false' is the default value.  Use Configure -Duseshrplib to override.
319
320 cat > UU/archname.cbu <<'EOCBU'
321 # This script UU/archname.cbu will get 'called-back' by Configure 
322 # after it has otherwise determined the architecture name.
323 case "$ldflags" in
324 *"-flat_namespace"*) ;; # Backward compat, be flat.
325 # If we are using two-level namespace, we will munge the archname to show it.
326 *) archname="${archname}-2level" ;;
327 esac
328 EOCBU
329
330 # 64-bit addressing support. Currently strictly experimental. DFD 2005-06-06
331 case "$use64bitall" in
332 $define|true|[yY]*)
333 case "$osvers" in
334 [1-7].*)
335      cat <<EOM >&4
336
337
338
339 *** 64-bit addressing is not supported for Mac OS X versions
340 *** below 10.4 ("Tiger") or Darwin versions below 8. Please try
341 *** again without -Duse64bitall. (-Duse64bitint will work, however.)
342
343 EOM
344      exit 1
345   ;;
346 *)
347     case "$osvers" in
348     8.*)
349         cat <<EOM >&4
350
351
352
353 *** Perl 64-bit addressing support is experimental for Mac OS X
354 *** 10.4 ("Tiger") and Darwin version 8. System V IPC is disabled
355 *** due to problems with the 64-bit versions of msgctl, semctl,
356 *** and shmctl. You should also expect the following test failures:
357 ***
358 ***    ext/threads-shared/t/wait (threaded builds only)
359
360 EOM
361
362         [ "$d_msgctl" ] || d_msgctl='undef'
363         [ "$d_semctl" ] || d_semctl='undef'
364         [ "$d_shmctl" ] || d_shmctl='undef'
365     ;;
366     esac
367
368     case `uname -p` in 
369     powerpc) arch=ppc64 ;;
370     i386) arch=x86_64 ;;
371     *) cat <<EOM >&4
372
373 *** Don't recognize processor, can't specify 64 bit compilation.
374
375 EOM
376     ;;
377     esac
378     for var in ccflags cppflags ld ldflags
379     do
380        eval $var="\$${var}\ -arch\ $arch"
381     done
382
383     ;;
384 esac
385 ;;
386 esac
387
388 ##
389 # System libraries
390 ##
391
392 # vfork works
393 usevfork='true';
394
395 # malloc wrap works
396 case "$usemallocwrap" in
397 '') usemallocwrap='define' ;;
398 esac
399
400 # our malloc works (but allow users to override)
401 case "$usemymalloc" in
402 '') usemymalloc='n' ;;
403 esac
404 # However sbrk() returns -1 (failure) somewhere in lib/unicore/mktables at
405 # around 14M, so we need to use system malloc() as our sbrk()
406 #
407 # sbrk() in Darwin deprecated since Mavericks (10.9), it still exists
408 # in Yosemite (10.10) but that is just an emulation, and fails for
409 # allocations beyond 4MB.  One should use e.g. mmap instead (or system
410 # malloc, as suggested above, that but is kind of backward).
411 malloc_cflags='ccflags="-DUSE_PERL_SBRK -DPERL_SBRK_VIA_MALLOC $ccflags"'
412
413 # Locales aren't feeling well.
414 LC_ALL=C; export LC_ALL;
415 LANG=C; export LANG;
416
417 #
418 # The libraries are not threadsafe as of OS X 10.1.
419 #
420 # Fix when Apple fixes libc.
421 #
422 case "$usethreads$useithreads" in
423   *define*)
424   case "$osvers" in
425     [12345].*)     cat <<EOM >&4
426
427
428
429 *** Warning, there might be problems with your libraries with
430 *** regards to threading.  The test ext/threads/t/libc.t is likely
431 *** to fail.
432
433 EOM
434     ;;
435     *) usereentrant='define';;
436   esac
437
438 esac
439
440 # Fink can install a GDBM library that claims to have the ODBM interfaces
441 # but Perl dynaloader cannot for some reason use that library.  We don't
442 # really need ODBM_FIle, though, so let's just hint ODBM away.
443 i_dbm=undef;
444
445 # Configure doesn't detect ranlib on Tiger properly.
446 # NeilW says this should be acceptable on all darwin versions.
447 ranlib='ranlib'
448
449 # Catch MacPorts gcc/g++ extra libdir
450 case "$($cc -v 2>&1)" in
451 *"MacPorts gcc"*) loclibpth="$loclibpth /opt/local/lib/libgcc" ;;
452 esac
453
454 ##
455 # Build process
456 ##
457
458 # Case-insensitive filesystems don't get along with Makefile and
459 # makefile in the same place.  Since Darwin uses GNU make, this dodges
460 # the problem.
461 firstmakefile=GNUmakefile;