This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove, in the main Makefile, the $(LDLIBPTH) variable from
[perl5.git] / hints / darwin.sh
CommitLineData
f556e5b9
JH
1##
2# Darwin (Mac OS) hints
835bc3f3 3# Wilfredo Sanchez <wsanchez@wsanchez.net>
f556e5b9
JH
4##
5
6##
7# Paths
8##
9
21328108
HS
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
f556e5b9 16# BSD paths
e32f0149 17case "$prefix" in
21328108
HS
18 '')
19 # Default install; use non-system directories
20 prefix='/usr/local'; # Built-in perl uses /usr
21 siteprefix='/usr/local';
835bc3f3 22 vendorprefix='/usr'; usevendorprefix='define';
21328108
HS
23
24 # Where to put modules.
835bc3f3
RGS
25 sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also
26 vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
21328108 27 ;;
835bc3f3 28
21328108
HS
29 '/usr')
30 # We are building/replacing the built-in perl
31 siteprefix='/usr/local';
32 vendorprefix='/usr/local'; usevendorprefix='define';
33
34 # Where to put modules.
835bc3f3
RGS
35 sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also
36 vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
21328108 37 ;;
e32f0149 38esac
f556e5b9 39
187122cb 40# 4BSD uses ${prefix}/share/man, not ${prefix}/man.
187122cb
W
41man1dir="${prefix}/share/man/man1";
42man3dir="${prefix}/share/man/man3";
43
f556e5b9
JH
44##
45# Tool chain settings
46##
47
48# Since we can build fat, the archname doesn't need the processor type
49archname='darwin';
50
51# nm works.
52usenm='true';
53
14c26028
MS
54# Optimizing for size also mean less resident memory usage on the part
55# of Perl. Apple asserts that this is a more important optimization than
56# saving on CPU cycles. Given that memory speed has not increased at
57# pace with CPU speed over time (on any platform), this is probably a
58# reasonable assertion.
21328108 59if [ -z "${optimize}" ]; then
c8037037
MS
60 case "`${cc:-gcc} -v 2>&1`" in
61 *"gcc version 3."*) optimize='-Os' ;;
62 *) optimize='-O3' ;;
21328108 63 esac
c8037037
MS
64else
65 optimize='-O3'
23131aa4 66fi
f556e5b9 67
faf52077 68# -pipe: makes compilation go faster.
21328108 69# -fno-common because common symbols are not allowed in MH_DYLIB
0ac8ade1 70ccflags="${ccflags} -pipe -fno-common"
f556e5b9 71
4e644a1e 72# At least on Darwin 1.3.x:
ccf87481
JH
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
JH
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
HS
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
RGS
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
JH
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.
f29f446b 117case "$osvers" in
21328108
HS
118 1.[0-3].*) ;;
119 *) ldflags="${ldflags} -flat_namespace" ;;
f29f446b 120esac
f556e5b9
JH
121lddlflags="${ldflags} -bundle -undefined suppress";
122ldlibpthname='DYLD_LIBRARY_PATH';
123useshrplib='true';
124
125##
126# System libraries
127##
128
129# vfork works
130usevfork='true';
131
132# malloc works
133usemymalloc='n';
2ece6c11 134
d235852b
PP
135# Locales aren't feeling well.
136LC_ALL=C; export LC_ALL;
14c11978 137LANG=C; export LANG;
d235852b 138
2590a1d7 139#
14c11978 140# The libraries are not threadsafe as of OS X 10.1.
2590a1d7
JH
141#
142# Fix when Apple fixes libc.
143#
3db8f154 144case "$usethreads$useithreads" in
21328108 145 *define*)
9bff986a
AB
146 case "$osvers" in
147 [12345].*) cat <<EOM >&4
148
149
2590a1d7 150
4f8ddd77 151*** Warning, there might be problems with your libraries with
00371ed5
JH
152*** regards to threading. The test ext/threads/t/libc.t is likely
153*** to fail.
4f8ddd77 154
2590a1d7 155EOM
21328108 156 ;;
9bff986a
AB
157 *) usereentrant='define';;
158 esac
159
2590a1d7 160esac
835bc3f3
RGS
161
162##
163# Build process
164##
165
166# Case-insensitive filesystems don't get along with Makefile and
167# makefile in the same place. Since Darwin uses GNU make, this dodges
168# the problem.
169firstmakefile=GNUmakefile;