Skip to content

Commit

Permalink
fix avx-512 flag
Browse files Browse the repository at this point in the history
  • Loading branch information
yretenai committed Oct 2, 2023
1 parent 47e60ff commit 54b16f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subprojects/packagefiles/compressonator/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ arch_avx512 = []
if cxx_compiler.has_argument('-march=knl')
arch_avx512 += ['-march=knl', '-mtune=knl']
endif
if cxx_compiler.has_argument('/arch:AVX-512')
arch_avx512 += ['/arch:AVX-512']
if cxx_compiler.has_argument('/arch:AVX512')
arch_avx512 += ['/arch:AVX512']
endif

cmp_core_avx512 = static_library(
Expand Down

0 comments on commit 54b16f5

Please sign in to comment.