Disable -Ofast tests for SunCC
parent
69b141efa8
commit
585b63c450
14
cryptest.sh
14
cryptest.sh
|
|
@ -346,12 +346,6 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Fixup... SunCC appears to botch the code generation
|
|
||||||
if [[ ("$SUN_COMPILER" -ne "0" )]];then
|
|
||||||
HAVE_O5=0
|
|
||||||
OPT_O5=
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Hit or miss, mostly hit
|
# Hit or miss, mostly hit
|
||||||
HAVE_OS=0
|
HAVE_OS=0
|
||||||
OPT_OS=
|
OPT_OS=
|
||||||
|
|
@ -583,6 +577,14 @@ if [[ (-z "$HAVE_DISASS") ]]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Fixup... SunCC appears to generate bad code for BLAKE2s
|
||||||
|
if [[ ("$SUN_COMPILER" -ne "0") ]];then
|
||||||
|
HAVE_O5=0
|
||||||
|
OPT_O5=
|
||||||
|
HAVE_OFAST=0
|
||||||
|
OPT_OFAST=
|
||||||
|
fi
|
||||||
|
|
||||||
# Benchmarks take a long time...
|
# Benchmarks take a long time...
|
||||||
if [[ (-z "$WANT_BENCHMARKS") ]]; then
|
if [[ (-z "$WANT_BENCHMARKS") ]]; then
|
||||||
WANT_BENCHMARKS=1
|
WANT_BENCHMARKS=1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue