From 134fa320e66b4bfd256b34fc7ca3d3c499d50cfd Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Thu, 17 Jul 2014 15:02:01 +0800 Subject: [PATCH] Refs #415. Fixed the x86/i386 compiling bug with DYNAMIC_ARCH=1. --- Makefile.system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.system b/Makefile.system index c872a55dc..370da5928 100644 --- a/Makefile.system +++ b/Makefile.system @@ -780,7 +780,7 @@ ifeq ($(NO_AVX), 1) CCOMMON_OPT += -DNO_AVX endif -ifeq ($(BINARY), 32) +ifeq ($(ARCH), x86) CCOMMON_OPT += -DNO_AVX endif