X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=build.sh;h=fad620190cce6a31a17c14c4b1dc5b418e1efe7f;hb=47941822dae18a018c985847b052e70214a3ccc6;hp=2ceb2fecffb559b6c1c64fb27f73c2102715ccda;hpb=0481656712bdc72d2a7ffa80f74702f87b20e051;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/build.sh b/build.sh index 2ceb2fe..fad6201 100755 --- a/build.sh +++ b/build.sh @@ -23,7 +23,7 @@ _windows_asan="" _windows_linksteam="vg/dep/steam/steam_api.dll" _windows_folder="bin/win32" -_options_debugmode="-O0 -ggdb3 -fno-omit-frame-pointer" +_options_debugmode="-O0 -ggdb3 -fno-omit-frame-pointer -rdynamic" _options_release="-O3 -DVG_RELEASE" # Compiler lines @@ -57,7 +57,7 @@ compile_miniaudio(){ # TODO run_game(){ cd $_linux_folder - ./skaterift + ./skaterift --samples=4 cd ./../ } @@ -73,9 +73,13 @@ delay_run_game(){ } link_content(){ - ln -sr bin/content/textures/ $1/textures - ln -sr bin/content/models/ $1/models - ln -sr bin/content/sound/ $1/sound + unlink $1/textures + unlink $1/models + unlink $1/sound + + ln -srf bin/content/textures $1/textures + ln -srf bin/content/models $1/models + ln -srf bin/content/sound $1/sound } TIMESTAMP=`date +%Y-%m-%d_%H-%M-%S` @@ -198,7 +202,7 @@ vg_command(){ run_command game run_command server ;; - distribution) + disb) mkdir -p ./dist run_command release run_command tools @@ -207,7 +211,9 @@ vg_command(){ run_command content run_command textures run_command server + ;; + distribution) titleit "Compressing distributions" logit "Linux" tar -chzvf dist/skaterift_linux__$TIMESTAMP.tar.gz bin/linux/ @@ -215,12 +221,18 @@ vg_command(){ tar -chzvf dist/skaterift_server__$TIMESTAMP.tar.gz bin/linux_server logit "Windows" tar -chzvf dist/skaterift_win32__$TIMESTAMP.tar.gz bin/win32/ + zip -r9 dist/skaterift_win32__$TIMESTAMP.zip bin/win32/ ;; # Runners # ======================================================================== test) run_game ;; + gdb) + cd $_linux_folder + gdb -tui ./skaterift + cd ./../ + ;; testserver) run_server ;;