From 185ebf04756eda333489bd8a90cc2e2dae7b41a9 Mon Sep 17 00:00:00 2001 From: edoapra Date: Thu, 15 Sep 2022 17:47:41 -0700 Subject: [PATCH] use SIMINT_VEC=scalar when arch!=x86_64 --- travis/compile_nwchem.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/travis/compile_nwchem.sh b/travis/compile_nwchem.sh index 4b928d6c2f..88abc6d6b4 100755 --- a/travis/compile_nwchem.sh +++ b/travis/compile_nwchem.sh @@ -98,6 +98,9 @@ fi if [[ ! -z "$USE_SIMINT" ]] ; then # FOPT="-O0 -fno-aggressive-loop-optimizations" SIMINT_BUILD_TYPE=Debug + if [[ "$arch" != "x86_64" ]]; then + SIMINT_VEC=scalar + fi export PATH="/usr/local/bin:$PATH" # export LDFLAGS="-L/usr/local/opt/python@3.7/lib:$LDFLAGS" fi