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