From d7eeae1c5ba07caa76d82cd543972f476677267f Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 15 Jul 2020 20:17:21 +0200 Subject: [PATCH] don't use mtune, but march --- compile_min_simd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile_min_simd.sh b/compile_min_simd.sh index d11f0712a..9c8659d66 100644 --- a/compile_min_simd.sh +++ b/compile_min_simd.sh @@ -60,7 +60,7 @@ else echo "configuring for 64 bit release" echo # You may add --enable-adms to the following command for adding adms generated devices - ../configure --with-wingui --enable-xspice --enable-cider --enable-openmp --disable-debug --enable-modsimd prefix="C:/Spice64" CFLAGS="-m64 -O3 -mtune=native " LDFLAGS="-m64 -s" + ../configure --with-wingui --enable-xspice --enable-cider --enable-openmp --disable-debug --enable-modsimd prefix="C:/Spice64" CFLAGS="-m64 -O3 -march=native " LDFLAGS="-m64 -s" fi if [ $? -ne 0 ]; then echo "../configure failed"; exit 1 ; fi