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