mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 11:10:39 +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)
|
OPTIMIZATIONS += $(DEBUGFLAG)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CSTD:=-std=gnu99
|
CSTD:=-std=c99
|
||||||
CONLYFLAGS=$(CSTD)
|
CONLYFLAGS=$(CSTD)
|
||||||
CXXSTD:=-std=gnu++03
|
CXXSTD:=-std=c++03
|
||||||
CXXONLYFLAGS=$(CXXSTD) -fno-exceptions -fno-rtti
|
CXXONLYFLAGS=$(CXXSTD) -fno-exceptions -fno-rtti
|
||||||
ASFORMAT=elf$(BITS)
|
ASFORMAT=elf$(BITS)
|
||||||
ASFLAGS=-s -f $(ASFORMAT) #-g
|
ASFLAGS=-s -f $(ASFORMAT) #-g
|
||||||
|
|
Loading…
Reference in a new issue