We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d586e commit 5b65fc5Copy full SHA for 5b65fc5
builder/imports/awslc.py
@@ -57,6 +57,6 @@ def cmake_args(self, env):
57
if env.spec.compiler == 'gcc' and env.spec.compiler_version.startswith('4.'):
58
# Disable AVX512 on old GCC for aws-lc
59
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
60
- return super().cmake_args(env) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
+ return super().cmake_args(env) + ['-DDISABLE_PERL=ON', '-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
61
else:
62
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']
0 commit comments