From aff903d99f4a6175faef67cc8bff1e893d4a0889 Mon Sep 17 00:00:00 2001 From: Gator96100 Date: Sat, 22 Apr 2017 23:36:43 +0200 Subject: [PATCH] Fix crashes when compiled with a different cpu --- client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 96920229e..764da38a3 100644 --- a/client/Makefile +++ b/client/Makefile @@ -7,7 +7,7 @@ include ../common/Makefile.common CC = gcc CXX = g++ -COMMON_FLAGS += -std=c99 -O3 -march=native -g +COMMON_FLAGS += -std=c99 -O3 -march=x86-64 -g #VPATH = ../common ../zlib OBJDIR = obj