Skip to content

Commit 5b65fc5

Browse files
add disable flag
1 parent a6d586e commit 5b65fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/imports/awslc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ def cmake_args(self, env):
5757
if env.spec.compiler == 'gcc' and env.spec.compiler_version.startswith('4.'):
5858
# Disable AVX512 on old GCC for aws-lc
5959
# 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']
60+
return super().cmake_args(env) + ['-DDISABLE_PERL=ON', '-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
6161
else:
6262
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']

0 commit comments

Comments
 (0)