mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
CPLUSPLUS mode by default in Makefile.common, C99 otherwise. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4704 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ce210a9fd7
commit
0dcca1f305
1 changed files with 2 additions and 2 deletions
|
@ -197,7 +197,7 @@ endif
|
|||
# OPTLEVEL - 0..3 = GCC optimization strategy
|
||||
# LTO - 1 = enable link-time optimization, for GCC 4.5 and up
|
||||
#
|
||||
CPLUSPLUS?=0
|
||||
CPLUSPLUS?=1
|
||||
RELEASE?=1
|
||||
DEBUGANYWAY?=0
|
||||
KRANDDEBUG?=0
|
||||
|
@ -264,7 +264,7 @@ ifneq ($(RELEASE)$(DEBUGANYWAY),10)
|
|||
OPTIMIZATIONS += $(DEBUGFLAG)
|
||||
endif
|
||||
|
||||
CONLYFLAGS=-std=gnu89 -Wimplicit -Wdeclaration-after-statement
|
||||
CONLYFLAGS=-std=c99 -Wimplicit -Wdeclaration-after-statement
|
||||
CPPONLYFLAGS= -fno-exceptions -fno-rtti -Wno-write-strings
|
||||
ASFORMAT=elf$(SYSBITS)
|
||||
ASFLAGS=-s -f $(ASFORMAT) #-g
|
||||
|
|
Loading…
Reference in a new issue