mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Makefile: Use -std=c99 and -std=c++03 instead of -std=gnu99 and -std=gnu++03.
git-svn-id: https://svn.eduke32.com/eduke32@6089 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ed75d4086c
commit
b015f1044b
1 changed files with 2 additions and 2 deletions
|
@ -283,9 +283,9 @@ ifneq ($(RELEASE)$(DEBUGANYWAY),10)
|
|||
OPTIMIZATIONS += $(DEBUGFLAG)
|
||||
endif
|
||||
|
||||
CSTD:=-std=gnu99
|
||||
CSTD:=-std=c99
|
||||
CONLYFLAGS=$(CSTD)
|
||||
CXXSTD:=-std=gnu++03
|
||||
CXXSTD:=-std=c++03
|
||||
CXXONLYFLAGS=$(CXXSTD) -fno-exceptions -fno-rtti
|
||||
ASFORMAT=elf$(BITS)
|
||||
ASFLAGS=-s -f $(ASFORMAT) #-g
|
||||
|
|
Loading…
Reference in a new issue