Skip to content

Latest commit

 

History

History
executable file
·
306 lines (289 loc) · 7.31 KB

fatbuild.sh

File metadata and controls

executable file
·
306 lines (289 loc) · 7.31 KB
 
1
2
3
4
#!/bin/sh
#
# Build a fat binary on Mac OS X, thanks Ryan!
Apr 27, 2006
Apr 27, 2006
5
6
# Number of CPUs (for make -j)
NCPU=`sysctl -n hw.ncpu`
Aug 14, 2011
Aug 14, 2011
7
8
if test x$NJOB = x; then
NJOB=$NCPU
Jan 17, 2010
Jan 17, 2010
9
10
fi
Aug 14, 2011
Aug 14, 2011
11
12
13
14
# SDK path
if test x$SDK_PATH = x; then
SDK_PATH=/Developer/SDKs
fi
Aug 14, 2011
Aug 14, 2011
16
17
# Generic, cross-platform CFLAGS you always want go here.
CFLAGS="-O3 -g -pipe"
May 10, 2006
May 10, 2006
18
Jan 17, 2010
Jan 17, 2010
19
# We dynamically load X11, so using the system X11 headers is fine.
Sep 19, 2011
Sep 19, 2011
20
BASE_CONFIG_FLAGS="--build=`uname -p`-apple-darwin \
Jan 17, 2010
Jan 17, 2010
21
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib"
Oct 28, 2009
Oct 28, 2009
22
Sep 19, 2011
Sep 19, 2011
23
24
25
26
27
# PowerPC 32-bit compiler flags
CONFIG_PPC="--host=powerpc-apple-darwin"
CC_PPC="gcc-4.0"
CXX_PPC="g++-4.0"
BUILD_FLAGS_PPC="-arch ppc -mmacosx-version-min=10.4"
Jan 17, 2010
Jan 17, 2010
28
Aug 14, 2011
Aug 14, 2011
29
# Intel 32-bit compiler flags
Sep 19, 2011
Sep 19, 2011
30
31
32
33
CONFIG_X86="--host=i386-apple-darwin"
CC_X86="gcc"
CXX_X86="g++"
BUILD_FLAGS_X86="-arch i386 -mmacosx-version-min=10.4"
Aug 14, 2011
Aug 14, 2011
34
35
# Intel 64-bit compiler flags
Sep 19, 2011
Sep 19, 2011
36
37
38
39
CONFIG_X64="--host=x86_64-apple-darwin"
CC_X64="gcc"
CXX_X64="g++"
BUILD_FLAGS_X64="-arch x86_64 -mmacosx-version-min=10.6"
Aug 14, 2011
Aug 14, 2011
40
41
42
43
#
# Find the configure script
#
Apr 22, 2006
Apr 22, 2006
44
45
46
srcdir=`dirname $0`/..
auxdir=$srcdir/build-scripts
cd $srcdir
Sep 19, 2011
Sep 19, 2011
48
49
50
51
52
53
54
55
allow_ppc="yes"
which gcc-4.0 >/dev/null 2>/dev/null
if [ "x$?" = "x1" ]; then
#echo "WARNING: Can't find gcc-4.0, which means you don't have Xcode 3."
#echo "WARNING: Therefore, we can't do PowerPC support."
allow_ppc="no"
fi
56
57
58
#
# Figure out which phase to build:
# all,
Sep 19, 2011
Sep 19, 2011
59
60
# configure, configure-ppc, configure-x86, configure-x64
# make, make-ppc, make-x86, make-x64, merge
Apr 27, 2006
Apr 27, 2006
62
# clean
63
64
65
66
67
68
69
if test x"$1" = x; then
phase=all
else
phase="$1"
fi
case $phase in
all)
Sep 19, 2011
Sep 19, 2011
70
configure_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
72
configure_x64="yes"
Sep 19, 2011
Sep 19, 2011
73
make_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
75
make_x64="yes"
76
77
78
merge="yes"
;;
configure)
Sep 19, 2011
Sep 19, 2011
79
configure_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
81
configure_x64="yes"
Sep 19, 2011
Sep 19, 2011
83
84
85
configure-ppc)
configure_ppc="$allow_ppc"
;;
86
87
88
configure-x86)
configure_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
89
90
91
configure-x64)
configure_x64="yes"
;;
Sep 19, 2011
Sep 19, 2011
93
make_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
95
make_x64="yes"
Sep 19, 2011
Sep 19, 2011
98
99
100
make-ppc)
make_ppc="$allow_ppc"
;;
101
102
103
make-x86)
make_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
104
105
106
make-x64)
make_x64="yes"
;;
107
108
109
110
merge)
merge="yes"
;;
install)
Apr 22, 2006
Apr 22, 2006
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
install_bin="yes"
install_hdrs="yes"
install_lib="yes"
install_data="yes"
install_man="yes"
;;
install-bin)
install_bin="yes"
;;
install-hdrs)
install_hdrs="yes"
;;
install-lib)
install_lib="yes"
;;
install-data)
install_data="yes"
;;
install-man)
install_man="yes"
;;
Apr 27, 2006
Apr 27, 2006
132
clean)
Sep 19, 2011
Sep 19, 2011
133
clean_ppc="yes"
Apr 27, 2006
Apr 27, 2006
134
clean_x86="yes"
Aug 14, 2011
Aug 14, 2011
135
clean_x64="yes"
Apr 27, 2006
Apr 27, 2006
136
;;
Sep 19, 2011
Sep 19, 2011
137
138
139
clean-ppc)
clean_ppc="yes"
;;
Apr 27, 2006
Apr 27, 2006
140
141
142
clean-x86)
clean_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
143
144
145
clean-x64)
clean_x64="yes"
;;
Apr 22, 2006
Apr 22, 2006
146
*)
Sep 19, 2011
Sep 19, 2011
147
echo "Usage: $0 [all|configure[-ppc|-x86|-x64]|make[-ppc|-x86|-x64]|merge|install|clean[-ppc|-x86|-x64]]"
Apr 22, 2006
Apr 22, 2006
148
149
150
151
152
153
154
exit 1
;;
esac
case `uname -p` in
*86)
native_path=x86
;;
Sep 19, 2011
Sep 19, 2011
155
156
157
*powerpc)
native_path=ppc
;;
Aug 14, 2011
Aug 14, 2011
158
159
160
x86_64)
native_path=x64
;;
Apr 22, 2006
Apr 22, 2006
161
162
163
*)
echo "Couldn't figure out native architecture path"
exit 1
164
165
166
167
168
169
;;
esac
#
# Create the build directories
#
Sep 19, 2011
Sep 19, 2011
170
for dir in build build/ppc build/x86 build/x64; do
171
172
173
174
175
176
177
if test -d $dir; then
:
else
mkdir $dir || exit 1
fi
done
Sep 19, 2011
Sep 19, 2011
178
179
180
181
182
183
184
185
186
187
188
#
# Build the PowerPC 32-bit binary
#
if test x$configure_ppc = xyes; then
(cd build/ppc && \
sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_PPC CC="$CC_PPC" CXX="$CXX_PPC" CFLAGS="$CFLAGS $BUILD_FLAGS_PPC $CFLAGS_PPC" LDFLAGS="$BUILD_FLAGS_PPC $LFLAGS_PPC") || exit 2
fi
if test x$make_ppc = xyes; then
(cd build/ppc && make -j$NJOB) || exit 3
fi
Aug 14, 2011
Aug 14, 2011
190
# Build the Intel 32-bit binary
191
192
193
#
if test x$configure_x86 = xyes; then
(cd build/x86 && \
Sep 19, 2011
Sep 19, 2011
194
sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_X86 CC="$CC_X86" CXX="$CXX_X86" CFLAGS="$CFLAGS $BUILD_FLAGS_X86 $CFLAGS_X86" LDFLAGS="$BUILD_FLAGS_X86 $LFLAGS_X86") || exit 2
195
196
fi
if test x$make_x86 = xyes; then
Apr 28, 2006
Apr 28, 2006
197
(cd build/x86 && make -j$NJOB) || exit 3
Aug 14, 2011
Aug 14, 2011
200
#
Sep 19, 2011
Sep 19, 2011
201
# Build the Intel 64-bit binary
Aug 14, 2011
Aug 14, 2011
202
203
204
#
if test x$configure_x64 = xyes; then
(cd build/x64 && \
Sep 19, 2011
Sep 19, 2011
205
sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_X64 CC="$CC_X64" CXX="$CXX_X64" CFLAGS="$CFLAGS $BUILD_FLAGS_X64 $CFLAGS_X64" LDFLAGS="$BUILD_FLAGS_X64 $LFLAGS_X64") || exit 2
Aug 14, 2011
Aug 14, 2011
206
207
208
209
210
fi
if test x$make_x64 = xyes; then
(cd build/x64 && make -j$NJOB) || exit 3
fi
211
212
213
214
#
# Combine into fat binary
#
if test x$merge = xyes; then
Apr 22, 2006
Apr 22, 2006
215
216
217
output=.libs
sh $auxdir/mkinstalldirs build/$output
cd build
Aug 14, 2011
Aug 14, 2011
218
219
target=`find . -mindepth 4 -maxdepth 4 -type f -name '*.dylib' | head -1 | sed 's|.*/||'`
(lipo -create -o $output/$target `find . -mindepth 4 -maxdepth 4 -type f -name "*.dylib"` &&
Apr 22, 2006
Apr 22, 2006
220
221
222
223
224
225
ln -sf $target $output/libSDL.dylib &&
lipo -create -o $output/libSDL.a */build/.libs/libSDL.a &&
cp $native_path/build/.libs/libSDL.la $output &&
cp $native_path/build/.libs/libSDL.lai $output &&
cp $native_path/build/libSDL.la . &&
lipo -create -o libSDLmain.a */build/libSDLmain.a &&
226
227
echo "Build complete!" &&
echo "Files can be found in the build directory.") || exit 4
Apr 22, 2006
Apr 22, 2006
228
cd ..
229
230
231
232
233
fi
#
# Install
#
Apr 22, 2006
Apr 22, 2006
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
do_install()
{
echo $*
$* || exit 5
}
if test x$prefix = x; then
prefix=/usr/local
fi
if test x$exec_prefix = x; then
exec_prefix=$prefix
fi
if test x$bindir = x; then
bindir=$exec_prefix/bin
fi
if test x$libdir = x; then
libdir=$exec_prefix/lib
fi
if test x$includedir = x; then
includedir=$prefix/include
fi
if test x$datadir = x; then
datadir=$prefix/share
fi
if test x$mandir = x; then
mandir=$prefix/man
fi
if test x$install_bin = xyes; then
do_install sh $auxdir/mkinstalldirs $bindir
do_install /usr/bin/install -c -m 755 build/$native_path/sdl-config $bindir/sdl-config
fi
if test x$install_hdrs = xyes; then
do_install sh $auxdir/mkinstalldirs $includedir/SDL
for src in $srcdir/include/*.h; do \
file=`echo $src | sed -e 's|^.*/||'`; \
do_install /usr/bin/install -c -m 644 $src $includedir/SDL/$file; \
done
do_install /usr/bin/install -c -m 644 $srcdir/include/SDL_config_macosx.h $includedir/SDL/SDL_config.h
fi
if test x$install_lib = xyes; then
do_install sh $auxdir/mkinstalldirs $libdir
do_install sh build/$native_path/libtool --mode=install /usr/bin/install -c build/libSDL.la $libdir/libSDL.la
do_install /usr/bin/install -c -m 644 build/libSDLmain.a $libdir/libSDLmain.a
do_install ranlib $libdir/libSDLmain.a
fi
if test x$install_data = xyes; then
do_install sh $auxdir/mkinstalldirs $datadir/aclocal
do_install /usr/bin/install -c -m 644 $srcdir/sdl.m4 $datadir/aclocal/sdl.m4
fi
if test x$install_man = xyes; then
do_install sh $auxdir/mkinstalldirs $mandir/man3
for src in $srcdir/docs/man3/*.3; do \
file=`echo $src | sed -e 's|^.*/||'`; \
do_install /usr/bin/install -c -m 644 $src $mandir/man3/$file; \
done
Apr 27, 2006
Apr 27, 2006
289
290
291
292
293
294
295
296
297
#
# Clean up
#
do_clean()
{
echo $*
$* || exit 6
}
Sep 19, 2011
Sep 19, 2011
298
299
300
if test x$clean_ppc = xyes; then
do_clean rm -r build/ppc
fi
Apr 27, 2006
Apr 27, 2006
301
302
303
if test x$clean_x86 = xyes; then
do_clean rm -r build/x86
fi
Aug 14, 2011
Aug 14, 2011
304
305
if test x$clean_x64 = xyes; then
do_clean rm -r build/x64
Apr 27, 2006
Apr 27, 2006
306
fi