From 7695b8ada0be3013bb880e8e8db8c338e4515961 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 17 Aug 2016 08:03:30 +0200 Subject: Linux: Add parameter to Makefile for enabling SSSE3 and SSE4.1 support in compiler --- src/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 4f0a6559..0f7ac328 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,6 +20,8 @@ # RESOURCEDIR: Run-time resource directory # VERBOSE: Enable verbose messages # WXSTATIC: Use static wxWidgets library +# SSSE3: Enable SSSE3 support in compiler +# SSE41: Enable SSE4.1 support in compiler #------ Targets ------ # all @@ -161,12 +163,26 @@ ifeq "$(shell uname -s)" "Linux" PLATFORM := Linux C_CXX_FLAGS += -DTC_UNIX -DTC_LINUX + CFLAGS += -msse2 + CXXFLAGS += -msse2 + GCC_GTEQ_440 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/'` \>= 40400) + GCC_GTEQ_430 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/'` \>= 40300) ifeq "$(GCC_GTEQ_440)" "1" CFLAGS += -maes CXXFLAGS += -maes endif + ifeq "$(GCC_GTEQ_430)" "1" + ifeq "$(origin SSSE3)" "command line" + CFLAGS += -mssse3 -msse4.1 + endif + + ifeq "$(origin SSE41)" "command line" + CXXFLAGS += -mssse3 -msse4.1 + endif + endif + ifeq "$(TC_BUILD_CONFIG)" "Release" C_CXX_FLAGS += -fdata-sections -ffunction-sections LFLAGS += -Wl,--gc-sections -- cgit v1.2.3