From b0b34eafd682046f8345beeb5df24e8c1eacc231 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 3 Aug 2014 08:43:08 -0700 Subject: [PATCH] add -mtune=generic to get optimization for the most common x86 processors. --- src/lisp/Config.x86_common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lisp/Config.x86_common b/src/lisp/Config.x86_common index 1873f7d01..ad2b1a092 100644 --- a/src/lisp/Config.x86_common +++ b/src/lisp/Config.x86_common @@ -54,7 +54,7 @@ CPP_INCLUDE_OPTIONS := -I. -I$(PATH1) -I- endif CPPFLAGS := $(CPP_DEFINE_OPTIONS) $(CPP_INCLUDE_OPTIONS) -CFLAGS += -Wstrict-prototypes -Wall -O2 -g +CFLAGS += -Wstrict-prototypes -Wall -O2 -g -mtune=generic ASFLAGS = -g ASSEM_SRC = x86-assem.S -- GitLab