Adding AVX512 support would need the following flags added: msvc/clang-cl ([src/tools/msc.lua](https://github.com/premake/premake-core/blob/55fc4b2deac045ca06dc23d98426423356c507c1/src/tools/msc.lua#L113)) -> /arch:AVX512 gcc/clang ([src/tools/gcc.lua](https://github.com/premake/premake-core/blob/55fc4b2deac045ca06dc23d98426423356c507c1/src/tools/gcc.lua#L101)) -> -mavx512f Visual Studio 2026 supports AVX512 in the dropdown for `EnableEnhancedInstructionSet`.
Adding AVX512 support would need the following flags added:
msvc/clang-cl (src/tools/msc.lua) -> /arch:AVX512
gcc/clang (src/tools/gcc.lua) -> -mavx512f
Visual Studio 2026 supports AVX512 in the dropdown for
EnableEnhancedInstructionSet.