ref: 93bc546ee1ca298c7d65e35f0f4863a2b3408864
parent: 1f770c488cfd5400e6e0092a3e49aef841f6c5de
author: Martin Storsjö <martin@martin.st>
date: Wed Jul 20 07:57:47 EDT 2016
Consistently use Yes instead of true for makefile variables All similar variables use Yes so far; if we want to change what strings we use for booleans in makefiles, the change should be consistent.
--- a/build/arch.mk
+++ b/build/arch.mk
@@ -1,10 +1,10 @@
#for x86
-HAVE_AVX2 := true
+HAVE_AVX2 := Yes
ifneq ($(filter %86 x86_64, $(ARCH)),)
include $(SRC_PATH)build/x86-common.mk
ifeq ($(USE_ASM), Yes)
-ifeq ($(HAVE_AVX2), true)
+ifeq ($(HAVE_AVX2), Yes)
CFLAGS += -DHAVE_AVX2
CXXFLAGS += -DHAVE_AVX2
ASMFLAGS += -DHAVE_AVX2