mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-23 11:11:22 +00:00
Make COMPILER_QCC default to please the stuborn Quake community.
This commit is contained in:
parent
ec0aaa72a3
commit
557ad9da1a
3 changed files with 5 additions and 4 deletions
|
@ -5,6 +5,7 @@ the following commands.
|
|||
|
||||
# yum groupinstall "Development Tools"
|
||||
# yum install rpmdevtools
|
||||
# yum install mock
|
||||
# rpmdev-setuptree
|
||||
|
||||
Now, depending on the version of GMQCC you want, there are a serise of
|
||||
|
@ -13,5 +14,5 @@ issue the following to build the RPM.
|
|||
|
||||
# rpmbuild -bs gmqcc-[[version]].spec
|
||||
|
||||
This will create an RPM file in the working directory, which you can
|
||||
install with the rpm command line tool or mock.
|
||||
This will create a src.rpm file in the working directory, which needs
|
||||
to be moved
|
||||
|
|
2
main.c
2
main.c
|
@ -562,7 +562,7 @@ int main(int argc, char **argv) {
|
|||
|
||||
app_name = argv[0];
|
||||
con_init ();
|
||||
opts_init("progs.dat", COMPILER_GMQCC, (1024 << 3));
|
||||
opts_init("progs.dat", COMPILER_QCC, (1024 << 3));
|
||||
|
||||
util_seed(time(0));
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
I: rassign.qc
|
||||
D: test return assignments
|
||||
T: -execute
|
||||
C: -fftepp -freturn-assignments
|
||||
C: -std=gmqcc -fftepp -freturn-assignments
|
||||
M: 200
|
||||
M: '200 200 200'
|
||||
M: world
|
||||
|
|
Loading…
Reference in a new issue