We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2729b03 commit 11ea8fdCopy full SHA for 11ea8fd
.github/workflows/linux.yml
@@ -81,9 +81,6 @@ jobs:
81
if [[ '${{ matrix.sys.flags }}' == 'enable_xtl_complex' ]]; then
82
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DENABLE_XTL_COMPLEX=ON"
83
fi
84
- if [[ '${{ matrix.sys.flags }}' == 'force_no_instr_set' ]]; then
85
- :
86
- fi
87
if [[ '${{ matrix.sys.flags }}' == 'avx' ]]; then
88
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DTARGET_ARCH=sandybridge"
89
@@ -99,6 +96,11 @@ jobs:
99
96
if [[ '${{ matrix.sys.flags }}' == 'i386' ]]; then
100
97
CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DCMAKE_CXX_FLAGS='-m32'"
101
98
+ if [[ '${{ matrix.sys.flags }}' == 'force_no_instr_set' ]]; then
+ :
+ else
102
+ CMAKE_EXTRA_ARGS="$CMAKE_EXTRA_ARGS -DXSIMD_ENABLE_WERROR=ON"
103
+ fi
104
105
mkdir _build
106
cd _build
0 commit comments