You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The remaining issue is the check for sve and sve2 support in CMakeLists.txt. If the string sve is found in the compile options which will be true for systems that support sve2, then you do not set either SVE2_FOUND or SVE2_BITPERM. So later in the process you attempt to append sve2 to the end of the compile flags which violates the same gcc rule as shown in #106
I propose either rearranging the search order like below or breaking up the if ... elseif ... endif to three separate if statements.
indeed, the order should be reversed as you note. I will need to test this on both SVE and SVE2 systems and will probably release a new version soon with a fix.
The remaining issue is the check for sve and sve2 support in CMakeLists.txt. If the string sve is found in the compile options which will be true for systems that support sve2, then you do not set either SVE2_FOUND or SVE2_BITPERM. So later in the process you attempt to append sve2 to the end of the compile flags which violates the same gcc rule as shown in #106
I propose either rearranging the search order like below or breaking up the if ... elseif ... endif to three separate if statements.
The text was updated successfully, but these errors were encountered: