mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
adjust hardnested compiler fix to accurate version
avx512f is only available in gcc 5.3 and above.
This commit is contained in:
parent
f950ce1cb9
commit
e5baf1ef79
3 changed files with 16 additions and 16 deletions
|
@ -69,7 +69,7 @@ static float brute_force_per_second;
|
|||
|
||||
|
||||
static void get_SIMD_instruction_set(char* instruction_set) {
|
||||
#if (__GNUC__ > 4)
|
||||
#if (__GNUC__ >= 5) && (__GNUC__ > 5 || __GNUC_MINOR__ > 2)
|
||||
if (__builtin_cpu_supports("avx512f")) strcpy(instruction_set, "AVX512F");
|
||||
else if (__builtin_cpu_supports("avx2")) strcpy(instruction_set, "AVX2");
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue