From fe41bdd6de739ca547d43635e7f4f25914474490 Mon Sep 17 00:00:00 2001 From: Andreas Runfalk Date: Tue, 16 Jul 2019 15:14:24 +0200 Subject: [PATCH] Added denverton to list of architectures with HAS_MEMNEQ=1 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index cc3b6c1..52a0007 100755 --- a/build.sh +++ b/build.sh @@ -45,7 +45,7 @@ set +e # built in memneq support. Unless HAS_MEMNEQ is defined we set it for models # that support it here. if [ -z ${HAS_MEMNEQ+x} ]; then - if [ "$PACKAGE_ARCH" == "apollolake" ]; then + if [[ "$PACKAGE_ARCH" == ^apollolake|denverton$ ]]; then export HAS_MEMNEQ=1 fi fi