Skip to content

Commit

Permalink
add disable flag
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Jul 8, 2024
1 parent a6d586e commit 5b65fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/imports/awslc.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ def cmake_args(self, env):
if env.spec.compiler == 'gcc' and env.spec.compiler_version.startswith('4.'):
# Disable AVX512 on old GCC for aws-lc
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
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']
else:
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']

0 comments on commit 5b65fc5

Please sign in to comment.