forked from ariya/phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·199 lines (170 loc) · 5.56 KB
/
build.sh
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#!/usr/bin/env bash
set -e
QT_CFG=''
BUILD_CONFIRM=0
COMPILE_JOBS=1
MAKEFLAGS_JOBS=''
if [[ "$MAKEFLAGS" != "" ]]; then
MAKEFLAGS_JOBS=$(echo $MAKEFLAGS | egrep -o '\-j[0-9]+' | egrep -o '[0-9]+')
fi
if [[ "$MAKEFLAGS_JOBS" != "" ]]; then
# user defined number of jobs in MAKEFLAGS, re-use that number
COMPILE_JOBS=$MAKEFLAGS_JOBS
elif [[ $OSTYPE = darwin* ]]; then
# We only support modern Mac machines, they are at least using
# hyperthreaded dual-core CPU.
COMPILE_JOBS=4
elif [[ $OSTYPE == freebsd* ]] || [[ $OSTYPE == openbsd* ]]; then
COMPILE_JOBS=`sysctl -n hw.ncpu`
else
CPU_CORES=`grep -c ^processor /proc/cpuinfo`
if [[ "$CPU_CORES" -gt 1 ]]; then
COMPILE_JOBS=$CPU_CORES
fi
fi
if [[ "$COMPILE_JOBS" -gt 8 ]]; then
# Safety net.
COMPILE_JOBS=8
fi
SILENT=
QT_CFG=
QTCORE=bundled
QTWEBKIT=bundled
until [[ -z "$1" ]]; do
case $1 in
(--qt-config)
shift
QT_CFG+=" $1"
shift;;
(--qmake-args)
shift
QMAKE_ARGS=$1
shift;;
(--jobs)
shift
COMPILE_JOBS=$1
shift;;
(--confirm)
BUILD_CONFIRM=1
shift;;
(--silent)
SILENT=silent
shift;;
(--qt=system)
QTCORE=system
shift;;
(--qtwebkit=system)
QTCORE=system
QTWEBKIT=system
shift;;
(--*=system | --*=bundled)
QT_CFG+=" $1"
shift;;
"--help")
cat <<EOF
Usage: $0 [--qt-config CONFIG] [--jobs NUM]
--confirm Do not prompt for confirmation of this
very slow build process.
--silent Produce less verbose output.
--jobs NUM How many parallel compile jobs to use.
Defaults to the number of CPU cores you have,
with a maximum of 8.
--qtdeps=system|bundled Use system-provided | bundled libraries for
all of Qt's dependencies. EXPERIMENTAL.
--LIBRARY=system|bundled Use system-provided | bundled LIBRARY.
See src/qt/preconfig.sh for all possible
LIBRARY values. EXPERIMENTAL.
--qt-config OPTION Specify extra config options to be used when
configuring Qt.
--qt=system Use system-provided Qt core libraries.
EXPERIMENTAL, build may not succeed.
Mutually exclusive with --qt-config and all
--LIBRARY= / --qtdeps= options.
--qtwebkit=system Use system-provided QtWebkit.
EXPERIMENTAL, build may not succeed.
Implies --system-qt.
Mutually exclusive with --qt-config and all
--LIBRARY= / --qtdeps= options.
EOF
exit 0
;;
*)
echo "Unrecognised option: $1" >&2
exit 1;;
esac
done
if [[ "$QTCORE" = system ]] && [[ -n "$QT_CFG" ]]; then
echo "$0: --qt=system prevents fine-tuning the Qt configuration" >&2
exit 1
fi
if [[ "$BUILD_CONFIRM" -eq 0 ]]; then
cat << EOF
----------------------------------------
WARNING
----------------------------------------
Building PhantomJS from source takes a very long time, anywhere from 30
minutes to several hours (depending on the machine configuration).
We recommend you use the premade binary packages on supported operating
systems.
For details, please go the the web site: http://phantomjs.org/download.html.
EOF
echo "Do you want to continue (y/n)?"
read continue
if [[ "$continue" != "y" ]]; then
exit 1
fi
echo
echo
fi
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
MAKE_S=""
if [[ "$SILENT" == "silent" ]]; then
MAKE_S="-s"
QT_CFG+=" --silent"
fi
echo "System architecture... ($UNAME_SYSTEM $UNAME_RELEASE $UNAME_MACHINE)"
echo
if [[ "$QTCORE" == "bundled" ]]; then
export QMAKE=$PWD/src/qt/qtbase/bin/qmake
( cd src/qt && ./preconfig.sh $QTDEPLIBS $QT_CFG )
echo
echo "Building Qt..."
echo
( cd src/qt/qtbase && make -j$COMPILE_JOBS $MAKE_S )
else
export QMAKE=qmake
# some Linux distros (e.g. Debian) allow you to parallel-install
# Qt4 and Qt5, using this environment variable to declare which
# one you want
export QT_SELECT=qt5
fi
if [[ "$QTWEBKIT" == "bundled" ]]; then
echo
echo "Building QtWebkit..."
echo
if grep -qEe '-qt-sql-sqlite\>' src/qt/qtbase/config.status; then
export SQLITE3SRCDIR=$PWD/src/qt/qtbase/src/3rdparty/sqlite/
fi
# By default, suppress video and audio-related features.
# They can be reactivated with e.g.
# --qmake-args WEBKIT_CONFIG+='use_gstreamer video'
WEBKIT_DISABLE=
WEBKIT_DISABLE+=' use_glib'
WEBKIT_DISABLE+=' use_gstreamer'
WEBKIT_DISABLE+=' use_gstreamer010'
WEBKIT_DISABLE+=' use_native_fullscreen_video'
WEBKIT_DISABLE+=' legacy_web_audio'
WEBKIT_DISABLE+=' web_audio'
WEBKIT_DISABLE+=' video'
WEBKIT_DISABLE+=' gamepad'
( cd src/qt/qtwebkit &&
$QMAKE "WEBKIT_CONFIG -= $WEBKIT_DISABLE" $QMAKE_ARGS &&
make -j$COMPILE_JOBS $MAKE_S )
fi
echo
echo "Building main PhantomJS application..."
echo
$QMAKE $QMAKE_ARGS
make -j$COMPILE_JOBS