From: Rudolf Polzer Date: Tue, 18 Dec 2012 09:33:19 +0000 (+0100) Subject: fix compile flags X-Git-Tag: xonotic-v0.7.0~178 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8a3147820e1a84cddc755b09c54c3ca46743306f;p=xonotic%2Fxonotic-data.pk3dir.git fix compile flags --- diff --git a/qcsrc/Makefile b/qcsrc/Makefile index a0c4d3fd5..3c55455ac 100644 --- a/qcsrc/Makefile +++ b/qcsrc/Makefile @@ -6,7 +6,7 @@ QCC ?= fteqcc VERSION_MESSAGE = $(shell $(QCC) --version --help) ifneq (,$(findstring GMQCC,$(VERSION_MESSAGE))) # this is gmqcc -QCCFLAGS ?= -Wall -Wno-field-redeclared -Wno-double-declaration -Wno-assign-function-types -Wno-unused-variable -std=fteqcc -fshort-logic -O1 -flno $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK) +QCCFLAGS ?= -Wall -Wno-field-redeclared -Wno-double-declaration -Wno-assign-function-types -Wno-unused-variable -std=fteqcc -O1 -fshort-logic -ftranslatable-strings -flno $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK) else # this. is. fteqccccccccccccccccccc! QCCFLAGS ?= -Werror -Wno-Q302 -O3 -Ono-return_only -fno-fastarrays $(QCCFLAGS_EXTRA) $(QCCFLAGS_WATERMARK)