mirror of
https://github.com/nzp-team/quakec.git
synced 2025-04-04 17:05:54 +00:00
FTEQCC: Optimize SSQC with -O3
This commit is contained in:
parent
021ba6a5ee
commit
7fc46d68b9
3 changed files with 6 additions and 6 deletions
|
@ -15,8 +15,8 @@ cd bin/
|
|||
echo "Compiling FTE CSQC.."
|
||||
./fteqcc-cli-lin -srcfile ../progs/csqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
echo "Compiling FTE SSQC.."
|
||||
./fteqcc-cli-lin -O2 -DFTE -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
./fteqcc-cli-lin -O3 -DFTE -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
echo "Compiling Standard/Id SSQC.."
|
||||
./fteqcc-cli-lin -O2 -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
./fteqcc-cli-lin -O3 -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
|
||||
echo "End of script."
|
|
@ -15,8 +15,8 @@ cd bin/
|
|||
echo "Compiling FTE CSQC.."
|
||||
./fteqcc-cli-mac -srcfile ../progs/csqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
echo "Compiling FTE SSQC.."
|
||||
./fteqcc-cli-mac -O2 -DFTE -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
./fteqcc-cli-mac -O3 -DFTE -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
echo "Compiling Standard/Id SSQC.."
|
||||
./fteqcc-cli-mac -O2 -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
./fteqcc-cli-mac -O3 -srcfile ../progs/ssqc.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
||||
|
||||
echo "End of script."
|
|
@ -16,9 +16,9 @@ REM ****** build.. ******
|
|||
echo Compiling FTE CSQC..
|
||||
fteqcc-cli-win.exe -srcfile ../progs/csqc.src
|
||||
echo Compiling FTE SSQC..
|
||||
fteqcc-cli-win.exe -O2 -DFTE -srcfile ../progs/ssqc.src
|
||||
fteqcc-cli-win.exe -O3 -DFTE -srcfile ../progs/ssqc.src
|
||||
echo Compiling Standard/Id SSQC..
|
||||
fteqcc-cli-win.exe -O2 -srcfile ../progs/ssqc.src
|
||||
fteqcc-cli-win.exe -O3 -srcfile ../progs/ssqc.src
|
||||
|
||||
echo End of script.
|
||||
pause
|
Loading…
Reference in a new issue