From b0c2f708bc29530069a4abe38a87bfebe1eba183 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 15 Feb 2016 22:06:17 +0100 Subject: [PATCH] CHG: -O4 changed into -O3 to remove some compiler warnings clang, on mac .. --- client/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/Makefile b/client/Makefile index 5e15e6fb..56ae7de8 100644 --- a/client/Makefile +++ b/client/Makefile @@ -14,7 +14,7 @@ OBJDIR = obj LDLIBS = -L/mingw/lib -L/opt/local/lib -L/usr/local/lib -lm -lreadline -lpthread -lgdi32 LUALIB = ../liblua/liblua.a LDFLAGS = $(COMMON_FLAGS) -CFLAGS = -std=c99 -I. -I../include -I../common -I../zlib -I/mingw/include -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4 +CFLAGS = -std=c99 -I. -I../include -I../common -I../zlib -I/mingw/include -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O3 LUAPLATFORM = generic ifneq (,$(findstring MINGW,$(platform))) @@ -28,12 +28,12 @@ ifneq (,$(findstring MINGW,$(platform))) QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4 endif else ifeq ($(platform),Darwin) - CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 + CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) MOC = $(shell pkg-config --variable=moc_location QtCore) LUAPLATFORM = macosx else - CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 + CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) LUALIB += -ldl MOC = $(shell pkg-config --variable=moc_location QtCore) @@ -54,7 +54,7 @@ endif # easy variable to pass to allow this to build on ubutnu 14.04.2 ifeq (1,$(UBUNTU_1404_QT4)) - CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4 + CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) LUALIB = ../liblua/liblua.a LUALIB += -ldl -- 2.39.2