More Darwin/MacOSX paths twiddling.
[p5sagit/p5-mst-13.2.git] / hints / darwin.sh
CommitLineData
f556e5b9 1##
2# Darwin (Mac OS) hints
835bc3f3 3# Wilfredo Sanchez <wsanchez@wsanchez.net>
f556e5b9 4##
5
6##
7# Paths
8##
9
21328108 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
f9655257 16# This was previously used in all but causes three cases
17# (no -Ddprefix=, -Dprefix=/usr, -Dprefix=/some/thing/else)
18# but that caused too much grief.
19# vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
20
f556e5b9 21# BSD paths
e32f0149 22case "$prefix" in
f9655257 23 ''|'/usr')
24 # Default install; use non-system directories
25 prefix='/usr/local'; # Built-in perl uses /usr
26 siteprefix=''/usr/local';
27 # Where to put modules.
28 sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also
29 # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
30 man1dir='/usr/share/man/man1';
31 man3dir='/usr/share/man/man3';
32 ;;
33 *) # Anything else; use non-system directories
34 ;;
e32f0149 35esac
f556e5b9 36
37##
38# Tool chain settings
39##
40
41# Since we can build fat, the archname doesn't need the processor type
42archname='darwin';
43
44# nm works.
45usenm='true';
46
318c098a 47case "$optimize" in
48'')
14c26028 49# Optimizing for size also mean less resident memory usage on the part
50# of Perl. Apple asserts that this is a more important optimization than
51# saving on CPU cycles. Given that memory speed has not increased at
52# pace with CPU speed over time (on any platform), this is probably a
53# reasonable assertion.
21328108 54if [ -z "${optimize}" ]; then
c8037037 55 case "`${cc:-gcc} -v 2>&1`" in
56 *"gcc version 3."*) optimize='-Os' ;;
57 *) optimize='-O3' ;;
21328108 58 esac
c8037037 59else
60 optimize='-O3'
23131aa4 61fi
318c098a 62;;
63esac
f556e5b9 64
faf52077 65# -pipe: makes compilation go faster.
21328108 66# -fno-common because common symbols are not allowed in MH_DYLIB
f72d1791 67# -DDARWIN: apparently the __APPLE__ is not sanctioned by Apple
68# as the way to differentiate Mac OS X. (The official line is that
69# *no* cpp symbol does differentiate Mac OS X.)
70ccflags="${ccflags} -pipe -fno-common -DDARWIN"
f556e5b9 71
4e644a1e 72# At least on Darwin 1.3.x:
ccf87481 73#
74# # define INT32_MIN -2147483648
75# int main () {
76# double a = INT32_MIN;
77# printf ("INT32_MIN=%g\n", a);
78# return 0;
79# }
80# will output:
81# INT32_MIN=2.14748e+09
82# Note that the INT32_MIN has become positive.
83# INT32_MIN is set in /usr/include/stdint.h by:
84# #define INT32_MIN -2147483648
85# which seems to break the gcc. Defining INT32_MIN as (-2147483647-1)
86# seems to work. INT64_MIN seems to be similarly broken.
87# -- Nicholas Clark, Ken Williams, and Edward Moy
88#
65fe0b2a 89# This seems to have been fixed since at least Mac OS X 10.1.3,
90# stdint.h defining INT32_MIN as (-INT32_MAX-1)
91# -- Edward Moy
92#
21328108 93case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
94 *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
65fe0b2a 95esac
ccf87481 96
21328108 97# Avoid Apple's cpp precompiler, better for extensions
8f4f83ba 98cppflags="${cppflags} -no-cpp-precomp"
835bc3f3 99
100# This is necessary because perl's build system doesn't
101# apply cppflags to cc compile lines as it should.
102ccflags="${ccflags} ${cppflags}"
4f8ddd77 103
00371ed5 104# Known optimizer problems.
f5520784 105case "`cc -v 2>&1`" in
21328108 106 *"3.1 20020105"*) toke_cflags='optimize=""' ;;
00371ed5 107esac
2ece6c11 108
f556e5b9 109# Shared library extension is .dylib.
110# Bundle extension is .bundle.
111ld='cc';
112so='dylib';
113dlext='bundle';
114dlsrc='dl_dyld.xs'; usedl='define';
c374061b 115cccdlflags=' '; # space, not empty, because otherwise we get -fpic
21328108 116# Perl bundles do not expect two-level namespace, added in Darwin 1.4.
986530ea 117# But starting from perl 5.8.1/Darwin 7 the default is the two-level.
f29f446b 118case "$osvers" in
cb3fc426 1191.[0-3].*)
986530ea 120 lddlflags="${ldflags} -bundle -undefined suppress"
121 ;;
1221.*)
123 ldflags="${ldflags} -flat_namespace"
124 lddlflags="${ldflags} -bundle -undefined suppress"
125 ;;
126[2-6].*)
127 ldflags="${ldflags} -flat_namespace"
128 lddlflags="${ldflags} -bundle -undefined suppress"
129 ;;
130*) lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
131 case "$ld" in
132 *MACOSX_DEVELOPMENT_TARGET*) ;;
133 *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
134 esac
135 ;;
f29f446b 136esac
f556e5b9 137ldlibpthname='DYLD_LIBRARY_PATH';
39225f5c 138
139# useshrplib=true results in much slower startup times.
763754f3 140# 'false' is the default value. Use Configure -Duseshrplib to override.
f556e5b9 141
cb3fc426 142cat > UU/archname.cbu <<'EOCBU'
143# This script UU/archname.cbu will get 'called-back' by Configure
144# after it has otherwise determined the architecture name.
145case "$ldflags" in
986530ea 146*"-flat_namespace"*) ;; # Backward compat, be flat.
cb3fc426 147# If we are using two-level namespace, we will munge the archname to show it.
148*) archname="${archname}-2level" ;;
149esac
150EOCBU
151
f556e5b9 152##
153# System libraries
154##
155
156# vfork works
157usevfork='true';
158
159# malloc works
160usemymalloc='n';
2ece6c11 161
d235852b 162# Locales aren't feeling well.
163LC_ALL=C; export LC_ALL;
14c11978 164LANG=C; export LANG;
d235852b 165
2590a1d7 166#
14c11978 167# The libraries are not threadsafe as of OS X 10.1.
2590a1d7 168#
169# Fix when Apple fixes libc.
170#
3db8f154 171case "$usethreads$useithreads" in
21328108 172 *define*)
9bff986a 173 case "$osvers" in
174 [12345].*) cat <<EOM >&4
175
176
2590a1d7 177
4f8ddd77 178*** Warning, there might be problems with your libraries with
00371ed5 179*** regards to threading. The test ext/threads/t/libc.t is likely
180*** to fail.
4f8ddd77 181
2590a1d7 182EOM
21328108 183 ;;
9bff986a 184 *) usereentrant='define';;
185 esac
186
2590a1d7 187esac
835bc3f3 188
189##
190# Build process
191##
192
193# Case-insensitive filesystems don't get along with Makefile and
194# makefile in the same place. Since Darwin uses GNU make, this dodges
195# the problem.
196firstmakefile=GNUmakefile;