4 misc/tools/xonotic-map-compiler-autobuild download
8 msg "Usage: ./all compile-map mapname1 mapname2 mapname3"
9 msg "For example: ./all compile-map dance xoylent"
11 if ! [ -f "netradiant/install/q3map2.x86" ] ; then
12 msg "q3map2 needed! Building netradiant..."
13 make -C netradiant install/q3map2.x86
15 for mapfile in "$@"; do
16 mapfile="data/xonotic-maps.pk3dir/maps/$mapfile.map"
17 if [ ! -f "$mapfile" ] ; then
18 msg "ERROR, $mapfile not found!"
20 time misc/tools/xonotic-map-compiler-optionsfile "$mapfile"
35 export CC="$CC -DSUPPORTIPV6"
59 case "`$CC -dumpversion`" in
60 [5-9]*|[1-9][0-9]*|4.[3-9]*|4.[1-9][0-9]*)
62 # -march=native is broken < 4.3
63 if $CC -mtune=native -march=native misc/tools/conftest.c -o conftest >/dev/null 2>&1; then
64 export CC="$CC -mtune=native -march=native"
68 if [ -n "$WE_HATE_OUR_USERS" ]; then
69 export CC="$CC -fno-common"
78 if [ -n "$WE_HATE_OUR_USERS" ]; then
79 TARGETS="sv-$debug cl-$debug"
80 elif [ x"`uname`" = x"Darwin" ]; then
83 TARGETS="sv-$debug cl-$debug sdl-$debug"
86 # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
88 TARGETS="sv-$debug sdl-$debug"
91 export CC="$CC -fno-reorder-blocks -I$PWD/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks/SDL.framework/Headers -F$PWD/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks"
93 TARGETS="sv-$debug cl-$debug sdl-$debug"
95 if [ $# -gt 0 ] && [ x"$1" = x"" ]; then
96 # if we give the command make the arg "", it will surely fail (invalid filename),
97 # so better handle it as an empty client option
100 elif [ -n "$1" ]; then
102 TARGETS_SAVE=$TARGETS
107 TARGETS="$TARGETS sdl-$debug"
110 TARGETS="$TARGETS cl-$debug"
111 if $snowleopardhack; then
112 export CC="$CC -arch i386"
116 TARGETS="$TARGETS cl-$debug"
119 TARGETS="$TARGETS sv-$debug"
122 BAD_TARGETS="$BAD_TARGETS $X"
126 if [ -n "$TARGETS" ]; then # at least a valid client
128 else # no valid client, let's assume this option is not meant to be a client then
129 TARGETS=$TARGETS_SAVE
133 if [ -z "$MAKEFLAGS" ]; then
134 ncpus=`getconf _NPROCESSORS_ONLN 2>/dev/null || getconf NPROCESSORS_ONLN 2>/dev/null || echo 1`
135 if [ $ncpus -gt 1 ]; then
138 if [ -n "$WE_HATE_OUR_USERS" ]; then
139 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw LIB_JPEG= CFLAGS_LIBJPEG="
143 # workaround ARM issue in DP's makefile.inc
148 MAKEFLAGS="$MAKEFLAGS CFLAGS_SSE= CFLAGS_SSE2="
152 if ! verbose $CC misc/tools/conftest.c -o conftest; then
154 msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
155 msg "~~~~~~~~~~ COMPILER ~~~~~~~~~~"
156 msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
157 msg "~~~~~~~~~~~~~~_...._~~~~~~~~~~"
158 msg "~~~~~~~~~~~,-' \\\`-._~~~~~~"
159 msg "~~~~~~~~~~/ --. >< \\~~~~~"
160 msg "~~~~~~~~~/ (*)> -<: \\~~~~"
161 msg "~~~~~~~~~( ^~-' (*) )~~~~"
162 msg "~~~~~~~~~\\ ^+-_/ |~~~~"
163 msg "~~~~~~~~~~\\ {vvv} |~~~~"
164 msg "~~~~~~~~~~,\\ , {^^^},/~~~~~"
165 msg "~~~~~~~~,/ \`---.....-'~~W~~~~"
166 msg "~~~~~~,/ \\_____/_\\_W~~/~~~~~"
167 msg "~~~~~/ /~~~\\__/~~~~~~"
168 msg "~~~~/ /~~~~~~~~~~~~~~"
169 msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
170 msg "~~~~~~~ Y U NO COMPILE ~~~~~~~"
171 msg "~~~~~~~~~~~~ CODE ~~~~~~~~~~~~"
172 msg "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
178 verbose cd "$d0/d0_blind_id"
179 if ! $compiled0; then
180 # compilation of crypto library failed
181 # use binaries then, if we can...
183 if [ -n "$WE_HATE_OUR_USERS" ]; then
184 verbose cp "$d0/misc/buildfiles/win32/libd0_blind_id"-* .libs/
185 verbose cp "$d0/misc/buildfiles/win32/libd0_rijndael"-* .libs/
186 verbose cp "$d0/misc/buildfiles/win32/libgmp"-* .libs/
192 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libd0_blind_id".* .libs/
193 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libd0_rijndael".* .libs/
194 #verbose cp "$d0/misc/builddeps/dp.linux64/lib/libgmp".* .libs/
195 MAKEFLAGS="$MAKEFLAGS DP_CRYPTO_STATIC_LIBDIR=../misc/builddeps/dp.linux64/lib/ DP_CRYPTO_RIJNDAEL_STATIC_LIBDIR=../misc/builddeps/dp.linux64/lib/ DP_GMP_STATIC_LIBDIR=../misc/builddeps/dp.linux64/lib/"
198 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libd0_blind_id".* .libs/
199 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libd0_rijndael".* .libs/
200 #verbose cp "$d0/misc/builddeps/dp.linux32/lib/libgmp".* .libs/
201 MAKEFLAGS="$MAKEFLAGS DP_CRYPTO_STATIC_LIBDIR=../misc/builddeps/dp.linux32/lib/ DP_CRYPTO_RIJNDAEL_STATIC_LIBDIR=../misc/builddeps/dp.linux32/lib/ DP_GMP_STATIC_LIBDIR=../misc/builddeps/dp.linux32/lib/"
209 verbose cp "$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS/libd0_blind_id".* .libs/
210 verbose cp "$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS/libd0_rijndael".* .libs/
220 if [ -f Makefile ]; then
221 verbose make $MAKEFLAGS distclean
224 if ! [ -f Makefile ]; then
225 verbose sh autogen.sh
228 verbose make $MAKEFLAGS
231 verbose cd "$d0/gmqcc"
233 verbose make $MAKEFLAGS clean
235 if [ -n "$WE_HATE_OUR_USERS" ]; then
236 verbose make $MAKEFLAGS gmqcc.exe
238 verbose make $MAKEFLAGS gmqcc
241 verbose cd "$d0/data/xonotic-data.pk3dir"
243 verbose make QCC="../../../../gmqcc/gmqcc" "$@" $MAKEFLAGS clean
245 verbose make QCC="../../../../gmqcc/gmqcc" "$@" $MAKEFLAGS
246 # 4 levels up: data, xonotic-data, qcsrc, server
248 verbose cd "$d0/darkplaces"
249 if [ x"$BAD_TARGETS" = x" " ]; then
250 $ECHO "Warning: invalid empty client, default clients will be used."
253 verbose make $MAKEFLAGS clean
255 for T in $TARGETS; do
256 verbose make $MAKEFLAGS STRIP=: "$@" "$T"
258 for T in $BAD_TARGETS; do
259 $ECHO "Warning: discarded invalid client $T."
262 verbose "$SELF" update-maps
265 if [ -n "$WE_HATE_OUR_USERS" ]; then
267 export PATH="$d0/misc/buildfiles/win32:$d0/d0_blind_id/.libs:$PATH"
268 elif [ x"`uname`" = x"Darwin" ]; then
269 export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic.app/Contents/MacOS:$d0/d0_blind_id/.libs"
270 export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic.app/Contents/Frameworks"
273 export LD_LIBRARY_PATH="$d0/d0_blind_id/.libs"
292 if ! [ -x "darkplaces/darkplaces$client" ]; then
293 if [ -x "darkplaces/darkplaces$client.exe" ]; then
296 $ECHO "Client darkplaces/darkplaces$client not found, aborting"
300 set -- "darkplaces/darkplaces$client" -xonotic "$@"
302 # if pulseaudio is running: USE IT
303 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
304 if ps -C pulseaudio >/dev/null; then
305 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
306 export SDL_AUDIODRIVER=pulse
313 if [ x"$USE_GDB" = x"yes" ]; then
314 set -- gdb --args "$@"
316 elif [ x"$USE_GDB" = x"core" ]; then
317 set -- gdb --batch -x savecore.gdb --args "$@"
319 elif which catchsegv >/dev/null 2>&1; then
320 set -- catchsegv "$@"
322 if [ x"$USE_RLWRAP" != x"no" ] && which rlwrap >/dev/null 2>&1; then
323 set -- rlwrap -A -g '^quit' -q "\"" -r -S ']' -w 100 "$@"
327 if [ -f xonotic.core ]; then
328 if yesno "The program has CRASHED. Do you want to examine the core dump?"; then
329 gdb "$binary" xonotic.core
330 #elif yesno "You did not want to examine the core dump. Do you want to provide it - including your DarkPlaces checkout - to the Xonotic developers?"; then
331 # tar cvzf xonotic.core.tar.gz xonotic.core darkplaces/*.c darkplaces/*.h
333 # rm -f xonotic.core.tar.gz
335 $ECHO "The core dump can be examined later by"
336 $ECHO " gdb $binary xonotic.core"
342 $ECHO " $SELF compile [-c] [-r|-p] [-0] [sdl|glx|wgl|agl|dedicated]"
343 $ECHO " $SELF update-maps"
344 $ECHO " $SELF run [sdl|glx|wgl|agl|dedicated] options..."
345 $ECHO " $SELF compile-map mapname1 mapname2... (e.g. \"./all compile-map dance drain fuse\")"