X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=.travis-script-xonotic.sh;h=c8e2b8b118461cd1360b0d1a3a29686356b75b53;hb=569bdf4312b50327055406243ec991c42cf06563;hp=8b8f5c900adde28903ed122f3dbfc4b69c0d0fd6;hpb=3c69ebebce675210e2cc74c399cedecfac7bdcb0;p=xonotic%2Fdarkplaces.git diff --git a/.travis-script-xonotic.sh b/.travis-script-xonotic.sh index 8b8f5c90..c8e2b8b1 100755 --- a/.travis-script-xonotic.sh +++ b/.travis-script-xonotic.sh @@ -31,7 +31,7 @@ for os in "$@"; do LIB_JPEG=../../../${deps}/lib/libjpeg.a DP_LINK_ODE=shared CFLAGS_ODE="-DUSEODE -DLINK_TO_LIBODE -DdDOUBLE" - LIB_ODE="../../../${deps}/lib/libode.a" + LIB_ODE="../../../${deps}/lib/libode.a -lstdc++" DP_LINK_ZLIB=shared' maketargets='release' outputs='darkplaces-glx:darkplaces-linux32-glx darkplaces-sdl:darkplaces-linux32-sdl darkplaces-dedicated:darkplaces-linux32-dedicated' @@ -48,22 +48,22 @@ for os in "$@"; do LIB_JPEG="../../../${deps}/lib/libjpeg.a" DP_LINK_ODE=shared CFLAGS_ODE="-DUSEODE -DLINK_TO_LIBODE -DdDOUBLE" - LIB_ODE="../../../${deps}/lib/libode.a" + LIB_ODE="../../../${deps}/lib/libode.a -lstdc++" DP_LINK_ZLIB=shared' maketargets='release' outputs='darkplaces-glx:darkplaces-linux64-glx darkplaces-sdl:darkplaces-linux64-sdl darkplaces-dedicated:darkplaces-linux64-dedicated' ;; win32) + # Need to use -mstackrealign as nothing guarantees that callbacks from + # other Win32 DLLs - including SDL2 - retain 16 bytes alignment. chroot= - # -mstackrealign works around SDL2-2.0.3 issue that stack is not 16 bytes aligned, breaking SSE. - # Please kill once SDL comes to its senses. makeflags='STRIP=: D3D=1 DP_MAKE_TARGET=mingw UNAME=MINGW32 WIN32RELEASE=1 - CC="i686-w64-mingw32-gcc -g1 -Wl,--dynamicbase -Wl,--nxcompat -mstackrealign -I../../../${deps}/include -L../../../${deps}/lib -DUSE_WSPIAPI_H -DSUPPORTIPV6" - WINDRES="i686-w64-mingw32-windres" + CC="/opt/cross_toolchain_32/bin/i686-w64-mingw32-gcc -static -g1 -mstackrealign -Wl,--dynamicbase -Wl,--nxcompat -I../../../${deps}/include -L../../../${deps}/lib -DSUPPORTIPV6" + WINDRES="/opt/cross_toolchain_32/bin/i686-w64-mingw32-windres" SDL_CONFIG="../../../${deps}/bin/sdl2-config" DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen @@ -71,7 +71,7 @@ for os in "$@"; do DP_LINK_ODE=dlopen DP_LINK_ZLIB=dlopen' maketargets='release' - outputs='darkplaces.exe:darkplaces-wgl.exe darkplaces-sdl.exe:darkplaces.exe darkplaces-dedicated.exe:darkplaces-dedicated.exe' + outputs='darkplaces.exe:darkplaces-x86-wgl.exe darkplaces-sdl.exe:darkplaces-x86.exe darkplaces-dedicated.exe:darkplaces-x86-dedicated.exe' ;; win64) chroot= @@ -80,8 +80,8 @@ for os in "$@"; do DP_MAKE_TARGET=mingw UNAME=MINGW32 WIN64RELEASE=1 - CC="x86_64-w64-mingw32-gcc -g1 -Wl,--dynamicbase -Wl,--nxcompat -I../../../${deps}/include -L../../../${deps}/lib -DSUPPORTIPV6" - WINDRES="x86_64-w64-mingw32-windres" + CC="/opt/cross_toolchain_64/bin/x86_64-w64-mingw32-gcc -static -g1 -Wl,--dynamicbase -Wl,--nxcompat -I../../../${deps}/include -L../../../${deps}/lib -DSUPPORTIPV6" + WINDRES="/opt/cross_toolchain_64/bin/x86_64-w64-mingw32-windres" SDL_CONFIG="../../../${deps}/bin/sdl2-config" DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen @@ -89,12 +89,12 @@ for os in "$@"; do DP_LINK_ODE=dlopen DP_LINK_ZLIB=dlopen' maketargets='release' - outputs='darkplaces.exe:darkplaces-x64-wgl.exe darkplaces-sdl.exe:darkplaces-x64.exe darkplaces-dedicated.exe:darkplaces-x64-dedicated.exe' + outputs='darkplaces.exe:darkplaces-wgl.exe darkplaces-sdl.exe:darkplaces.exe darkplaces-dedicated.exe:darkplaces-dedicated.exe' ;; osx) chroot= makeflags='STRIP=: - CC="gcc -g1 -arch x86_64 -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -mmacosx-version-min=10.5 -I../../../${deps}/include -L../../../${deps}/lib -DSUPPORTIPV6" + CC="gcc -g1 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -mmacosx-version-min=10.5 -Wl,-rpath -Wl,@loader_path/../Frameworks -Wl,-rpath -Wl,@loader_path -I../../../${deps}/include -L../../../${deps}/lib -DSUPPORTIPV6" SDLCONFIG_MACOSXCFLAGS="-I${PWD}/SDL2.framework/Headers" SDLCONFIG_MACOSXLIBS="-F${PWD} -framework SDL2 -framework Cocoa -I${PWD}/SDL2.framework/Headers" SDLCONFIG_MACOSXSTATICLIBS="-F${PWD} -framework SDL2 -framework Cocoa -I${PWD}/SDL2.framework/Headers" @@ -108,16 +108,21 @@ for os in "$@"; do ;; esac + # Condense whitespace in makeflags. + makeflags=$( + printf "%s\n" "$makeflags" | tr '\n' ' ' + ) + ( - trap "${chroot} make -C ${PWD} ${makeflags} clean" EXIT - eval "${chroot} make -C ${PWD} ${makeflags} ${maketargets}" - for o in $outputs; do - src=${o%%:*} - dst=${o#*:} - sftp -oStrictHostKeyChecking=no -i id_rsa-xonotic -P 2222 -b - autobuild-bin-uploader@beta.xonotic.org <