From: Martin Kroeker Date: Mon, 25 Feb 2019 16:55:36 +0000 (+0100) Subject: Fix missing -c option in AVX512 test X-Git-Tag: v0.3.6^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=918a0cc4d1548617478f925c8341461c055268e5;p=platform%2Fupstream%2Fopenblas.git Fix missing -c option in AVX512 test --- diff --git a/c_check b/c_check index 38f9170..d93b756 100644 --- a/c_check +++ b/c_check @@ -232,7 +232,7 @@ if (($architecture eq "x86") || ($architecture eq "x86_64")) { ($fh,$tmpf) = tempfile( UNLINK => 1 ); $code = '"vbroadcastss -4 * 4(%rsi), %zmm2"'; print $tmpf "#include \n\nint main(void){ __asm__ volatile($code); }\n"; - $args = " -march=skylake-avx512 -o $tmpf.o -x c $tmpf"; + $args = " -march=skylake-avx512 -c -o $tmpf.o -x c $tmpf"; my @cmd = ("$compiler_name $args >/dev/null 2>/dev/null"); system(@cmd) == 0; if ($? != 0) {