blob: aca4c41cd85c975ecc6fc6224f2af8b45c36eb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#!/bin/bash
#
set -e
## This script is invoked by Xcode external targets.
##
## We must guarantee no jobserver is passed through since the file-descriptors
## have been clobbered by Xcode. If this is not done then make behaves as if
## it is allowed to run an infinite number of jobs.
##
MAKEFLAGS=
MFLAGS=
## sanity check - the build system only supports 1 arch at a time
archcount=`echo $ARCHS | awk '{ print NF }'`
if [ "$archcount" -ne 1 ]; then
echo "*********************************************************************"
echo "***"
echo "*** ERROR: invalid number of architectures: $ARCHS"
echo "*** This build system builds one (1) archtecture at a time."
echo "***"
echo "*********************************************************************"
exit 1
fi
## compute if re/configure necessary
if [ $EXTERNAL_METHOD != 'xcode' ]; then
reconfigure="terminal -> Xcode"
elif [ ! -f $EXTERNAL_BUILD/GNUmakefile ]; then
reconfigure="no configuration present"
elif [ $EXTERNAL_SRC/make/configure.py -nt $EXTERNAL_BUILD/GNUmakefile ]; then
reconfigure="configure script was updated"
else
reconfigure=
fi
## perform re/configure
if [ -n "$reconfigure" ]; then
echo "reconfiguring ($reconfigure)"
case "$CONFIGURATION" in
debug*)
debug="--debug=max --optimize=none"
;;
standard*|*)
debug=
;;
esac
## invoke configure with (hidden) option which indicates conf performed by xcode
(set -x; $EXTERNAL_SRC/configure --force --build=$EXTERNAL_BUILD \
$EXTERNAL_CONFARGS \
--arch=$ARCHS $debug --conf-method=xcode PATH=$PATH )
fi
## compute goals; these correlate with TARGET_NAME and ACTION from Xcode
spec="$TARGET_NAME:$ACTION"
echo "env specification: $spec"
case "$spec" in
contrib:clean)
goals=contrib.xclean
;;
contrib:*)
goals=contrib.install
;;
external:clean)
goals=clean
;;
external:*)
if [ -z "$EXTERNAL_GOALS" ]; then
goals=build
else
goals="$EXTERNAL_GOALS"
fi
;;
libhb:clean)
goals=libhb.clean
;;
libhb:*)
goals=libhb.build
;;
*)
echo "ERROR: invalid env specification: $spec"
exit 1
;;
esac
## safeguard against passing blank value which would result in unlimited jobs
if [ -z "$EXTERNAL_JOBS" ]; then
jobs=
else
jobs=--jobs=$EXTERNAL_JOBS
fi
## pull the trigger
set -x
exec make -C $EXTERNAL_BUILD BUILD.method=xcode $jobs $goals $EXTERNAL_VARS
|