Skip to content

Commit 869b82e

Browse files
committed
switch to fips of awslc entirely
1 parent 62e673e commit 869b82e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

builder/imports/awslc.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
'targets': ['linux', 'android'],
1212
'test_steps': [],
1313
'build_tests': False,
14-
'cmake_args': ['-DDISABLE_GO=ON', '-DBUILD_LIBSSL=OFF']
14+
'cmake_args': ['-DFIPS=ON', '-DBUILD_LIBSSL=OFF']
1515
}
1616

1717

@@ -23,6 +23,7 @@ def __init__(self, **kwargs):
2323
library=True,
2424
account='aws',
2525
name='aws-lc',
26+
imports=['golang'],
2627
config=config,
2728
**kwargs)
2829

@@ -50,6 +51,7 @@ def __init__(self, **kwargs):
5051
super().__init__(
5152
account='aws',
5253
name='aws-lc',
54+
imports=['golang'],
5355
**config,
5456
**kwargs)
5557

@@ -59,4 +61,4 @@ def cmake_args(self, env):
5961
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
6062
return super().cmake_args(env) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
6163
else:
62-
return super().cmake_args(env) + ['-DDISABLE_PERL=ON']
64+
return super().cmake_args(env)

0 commit comments

Comments
 (0)