IRIX: at some point the cc -version has started
[p5sagit/p5-mst-13.2.git] / hints / darwin.sh
CommitLineData
f556e5b9 1##
2# Darwin (Mac OS) hints
437cf188 3# Wilfredo Sanchez <wsanchez@mit.edu>
f556e5b9 4##
5
6##
7# Paths
8##
9
10# BSD paths
e32f0149 11case "$prefix" in
187122cb 12'')
13 # Default install; use non-system directories
e32f0149 14 prefix='/usr/local'; # Built-in perl uses /usr
15 siteprefix='/usr/local';
16 vendorprefix='/usr/local'; usevendorprefix='define';
17
187122cb 18 # Where to put modules.
19 privlib='/Library/Perl'; # Built-in perl uses /System/Library/Perl
20 sitelib='/Library/Perl';
21 vendorlib='/Network/Library/Perl';
22 ;;
23'/usr')
24 # We are building/replacing the built-in perl
25 siteprefix='/usr/local';
26 vendorprefix='/usr/local'; usevendorprefix='define';
e32f0149 27
28 # Where to put modules.
187122cb 29 privlib='/System/Library/Perl';
e32f0149 30 sitelib='/Library/Perl';
31 vendorlib='/Network/Library/Perl';
32 ;;
33esac
f556e5b9 34
187122cb 35# 4BSD uses ${prefix}/share/man, not ${prefix}/man.
187122cb 36man1dir="${prefix}/share/man/man1";
37man3dir="${prefix}/share/man/man3";
38
f556e5b9 39##
40# Tool chain settings
41##
42
43# Since we can build fat, the archname doesn't need the processor type
44archname='darwin';
45
46# nm works.
47usenm='true';
48
f556e5b9 49# Optimize.
23131aa4 50if [ "x$optimize" = 'x' ]; then
51 optimize='-O3'
52fi
f556e5b9 53
faf52077 54# -pipe: makes compilation go faster.
55# -fno-common: we don't like commons. Common symbols are not allowed
56# in MH_DYLIB binaries, which is what libperl.dylib is. You will fail
57# to link without that option, unless you otherwise eliminate all commons
58# by, for example, initializing all globals.
59# --Fred Sánchez
0ac8ade1 60ccflags="${ccflags} -pipe -fno-common"
f556e5b9 61
4e644a1e 62# At least on Darwin 1.3.x:
ccf87481 63#
64# # define INT32_MIN -2147483648
65# int main () {
66# double a = INT32_MIN;
67# printf ("INT32_MIN=%g\n", a);
68# return 0;
69# }
70# will output:
71# INT32_MIN=2.14748e+09
72# Note that the INT32_MIN has become positive.
73# INT32_MIN is set in /usr/include/stdint.h by:
74# #define INT32_MIN -2147483648
75# which seems to break the gcc. Defining INT32_MIN as (-2147483647-1)
76# seems to work. INT64_MIN seems to be similarly broken.
77# -- Nicholas Clark, Ken Williams, and Edward Moy
78#
79ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN"
80
8f4f83ba 81# cppflags='-traditional-cpp';
82# avoid Apple's cpp precompiler, better for extensions
83cppflags="${cppflags} -no-cpp-precomp"
2ece6c11 84
f556e5b9 85# Shared library extension is .dylib.
86# Bundle extension is .bundle.
87ld='cc';
88so='dylib';
89dlext='bundle';
90dlsrc='dl_dyld.xs'; usedl='define';
c374061b 91cccdlflags=' '; # space, not empty, because otherwise we get -fpic
f29f446b 92# ldflag: -flat_namespace is only available since OS X 10.1 (Darwin 1.4.1)
93# - but not in 10.0.x (Darwin 1.3.x)
94# -- Kay Roepke
95case "$osvers" in
961.[0-3].*) ;;
97*) ldflags="${ldflags} -flat_namespace" ;;
98esac
f556e5b9 99lddlflags="${ldflags} -bundle -undefined suppress";
100ldlibpthname='DYLD_LIBRARY_PATH';
101useshrplib='true';
102
103##
104# System libraries
105##
106
107# vfork works
108usevfork='true';
109
110# malloc works
111usemymalloc='n';
2ece6c11 112
d235852b 113##
114# Build process
115##
116
117# Locales aren't feeling well.
118LC_ALL=C; export LC_ALL;
14c11978 119LANG=C; export LANG;
d235852b 120
4e644a1e 121# Case-insensitive filesystems don't get along with Makefile and
122# makefile in the same place. Since Darwin uses GNU make, this dodges
123# the problem.
d235852b 124firstmakefile=GNUmakefile;
2590a1d7 125
126#
14c11978 127# The libraries are not threadsafe as of OS X 10.1.
2590a1d7 128# Better stop now.
129#
130# Fix when Apple fixes libc.
131#
132case "$usethreads$useithreads$use5005threads" in
133*define*)
134cat <<EOM >&4
135
136*** You do not have threadsafe libraries, I cannot use threads.
137*** Cannot continue, aborting.
138EOM
139 exit 1
140 ;;
141esac