From 2e0ce28ed2851a6644c05ac89af2502dd16118aa Mon Sep 17 00:00:00 2001 From: Sean Leather Date: Fri, 17 Oct 2014 22:38:53 +0200 Subject: [PATCH] Use -march=native for platform-specific optimizations --- build/premake4.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake4.lua b/build/premake4.lua index ba07131..3ab6c27 100644 --- a/build/premake4.lua +++ b/build/premake4.lua @@ -64,7 +64,7 @@ solution "test" defines { "_CRT_SECURE_NO_WARNINGS" } configuration "gmake" - buildoptions "-msse4.2 -Wall -Wextra" + buildoptions "-march=native -Wall -Wextra" project "gtest" kind "StaticLib"