Skip to content

Commit

Permalink
switch to fips of awslc entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Jan 19, 2024
1 parent 62e673e commit 869b82e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions builder/imports/awslc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'targets': ['linux', 'android'],
'test_steps': [],
'build_tests': False,
'cmake_args': ['-DDISABLE_GO=ON', '-DBUILD_LIBSSL=OFF']
'cmake_args': ['-DFIPS=ON', '-DBUILD_LIBSSL=OFF']
}


Expand All @@ -23,6 +23,7 @@ def __init__(self, **kwargs):
library=True,
account='aws',
name='aws-lc',
imports=['golang'],
config=config,
**kwargs)

Expand Down Expand Up @@ -50,6 +51,7 @@ def __init__(self, **kwargs):
super().__init__(
account='aws',
name='aws-lc',
imports=['golang'],
**config,
**kwargs)

Expand All @@ -59,4 +61,4 @@ def cmake_args(self, env):
# 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']
else:
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']
return super().cmake_args(env)

0 comments on commit 869b82e

Please sign in to comment.