Skip to content

Latest commit

 

History

History
executable file
·
311 lines (294 loc) · 7.65 KB

fatbuild.sh

File metadata and controls

executable file
·
311 lines (294 loc) · 7.65 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
srcdir=`dirname $0`/..
Feb 4, 2012
Feb 4, 2012
45
srcdir=`cd $srcdir && pwd`
Apr 22, 2006
Apr 22, 2006
46
47
auxdir=$srcdir/build-scripts
cd $srcdir
Sep 19, 2011
Sep 19, 2011
49
50
51
52
53
54
55
56
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
57
58
59
#
# Figure out which phase to build:
# all,
Sep 19, 2011
Sep 19, 2011
60
61
# configure, configure-ppc, configure-x86, configure-x64
# make, make-ppc, make-x86, make-x64, merge
Apr 27, 2006
Apr 27, 2006
63
# clean
64
65
66
67
68
69
70
if test x"$1" = x; then
phase=all
else
phase="$1"
fi
case $phase in
all)
Sep 19, 2011
Sep 19, 2011
71
configure_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
73
configure_x64="yes"
Sep 19, 2011
Sep 19, 2011
74
make_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
76
make_x64="yes"
77
78
79
merge="yes"
;;
configure)
Sep 19, 2011
Sep 19, 2011
80
configure_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
82
configure_x64="yes"
Sep 19, 2011
Sep 19, 2011
84
85
86
configure-ppc)
configure_ppc="$allow_ppc"
;;
87
88
89
configure-x86)
configure_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
90
91
92
configure-x64)
configure_x64="yes"
;;
Sep 19, 2011
Sep 19, 2011
94
make_ppc="$allow_ppc"
Aug 14, 2011
Aug 14, 2011
96
make_x64="yes"
Sep 19, 2011
Sep 19, 2011
99
100
101
make-ppc)
make_ppc="$allow_ppc"
;;
102
103
104
make-x86)
make_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
105
106
107
make-x64)
make_x64="yes"
;;
108
109
110
111
merge)
merge="yes"
;;
install)
Apr 22, 2006
Apr 22, 2006
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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
133
clean)
Sep 19, 2011
Sep 19, 2011
134
clean_ppc="yes"
Apr 27, 2006
Apr 27, 2006
135
clean_x86="yes"
Aug 14, 2011
Aug 14, 2011
136
clean_x64="yes"
Apr 27, 2006
Apr 27, 2006
137
;;
Sep 19, 2011
Sep 19, 2011
138
139
140
clean-ppc)
clean_ppc="yes"
;;
Apr 27, 2006
Apr 27, 2006
141
142
143
clean-x86)
clean_x86="yes"
;;
Aug 14, 2011
Aug 14, 2011
144
145
146
clean-x64)
clean_x64="yes"
;;
Apr 22, 2006
Apr 22, 2006
147
*)
Sep 19, 2011
Sep 19, 2011
148
echo "Usage: $0 [all|configure[-ppc|-x86|-x64]|make[-ppc|-x86|-x64]|merge|install|clean[-ppc|-x86|-x64]]"
Apr 22, 2006
Apr 22, 2006
149
150
151
152
153
154
155
exit 1
;;
esac
case `uname -p` in
*86)
native_path=x86
;;
Sep 19, 2011
Sep 19, 2011
156
157
158
*powerpc)
native_path=ppc
;;
Aug 14, 2011
Aug 14, 2011
159
160
161
x86_64)
native_path=x64
;;
Apr 22, 2006
Apr 22, 2006
162
163
164
*)
echo "Couldn't figure out native architecture path"
exit 1
165
166
167
168
169
170
;;
esac
#
# Create the build directories
#
Sep 19, 2011
Sep 19, 2011
171
for dir in build build/ppc build/x86 build/x64; do
172
173
174
175
176
177
178
if test -d $dir; then
:
else
mkdir $dir || exit 1
fi
done
Sep 19, 2011
Sep 19, 2011
179
180
181
182
183
184
185
186
187
188
189
#
# 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
191
# Build the Intel 32-bit binary
192
193
194
#
if test x$configure_x86 = xyes; then
(cd build/x86 && \
Sep 19, 2011
Sep 19, 2011
195
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
196
197
fi
if test x$make_x86 = xyes; then
Apr 28, 2006
Apr 28, 2006
198
(cd build/x86 && make -j$NJOB) || exit 3
Aug 14, 2011
Aug 14, 2011
201
#
Sep 19, 2011
Sep 19, 2011
202
# Build the Intel 64-bit binary
Aug 14, 2011
Aug 14, 2011
203
204
205
#
if test x$configure_x64 = xyes; then
(cd build/x64 && \
Sep 19, 2011
Sep 19, 2011
206
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
207
208
209
210
211
fi
if test x$make_x64 = xyes; then
(cd build/x64 && make -j$NJOB) || exit 3
fi
212
213
214
215
#
# Combine into fat binary
#
if test x$merge = xyes; then
Apr 22, 2006
Apr 22, 2006
216
217
218
output=.libs
sh $auxdir/mkinstalldirs build/$output
cd build
Aug 14, 2011
Aug 14, 2011
219
220
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
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 . &&
Dec 31, 2011
Dec 31, 2011
226
227
228
229
lipo -create -o $output/libSDLmain.a */build/.libs/libSDLmain.a &&
cp $native_path/build/.libs/libSDLmain.la $output &&
cp $native_path/build/.libs/libSDLmain.lai $output &&
cp $native_path/build/libSDLmain.la . &&
230
231
echo "Build complete!" &&
echo "Files can be found in the build directory.") || exit 4
Apr 22, 2006
Apr 22, 2006
232
cd ..
233
234
235
236
237
fi
#
# Install
#
Apr 22, 2006
Apr 22, 2006
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
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
Dec 31, 2011
Dec 31, 2011
279
do_install sh build/$native_path/libtool --mode=install /usr/bin/install -c build/libSDLmain.la $libdir/libSDLmain.la
Apr 22, 2006
Apr 22, 2006
280
281
282
283
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
Dec 31, 2011
Dec 31, 2011
284
285
do_install sh $auxdir/mkinstalldirs $libdir/pkgconfig
do_install /usr/bin/install -m 644 build/$native_path/sdl.pc $libdir/pkgconfig/sdl.pc
Apr 22, 2006
Apr 22, 2006
286
287
288
289
290
291
292
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
294
295
296
297
298
299
300
301
302
#
# Clean up
#
do_clean()
{
echo $*
$* || exit 6
}
Sep 19, 2011
Sep 19, 2011
303
304
305
if test x$clean_ppc = xyes; then
do_clean rm -r build/ppc
fi
Apr 27, 2006
Apr 27, 2006
306
307
308
if test x$clean_x86 = xyes; then
do_clean rm -r build/x86
fi
Aug 14, 2011
Aug 14, 2011
309
310
if test x$clean_x64 = xyes; then
do_clean rm -r build/x64
Apr 27, 2006
Apr 27, 2006
311
fi