File tree 5 files changed +13
-3
lines changed
5 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ include = [
35
35
" /aws-lc/third_party/fiat/**/*.h" ,
36
36
" /aws-lc/third_party/s2n-bignum/**/*.S" ,
37
37
" /aws-lc/third_party/s2n-bignum/**/*.h" ,
38
- " /aws-lc/third_party/jitterentropy/**" ,
38
+ " /aws-lc/third_party/jitterentropy/**/*.c" ,
39
+ " /aws-lc/third_party/jitterentropy/**/*.h" ,
39
40
" /aws-lc/util/fipstools/**/CMakeLists.txt" ,
40
41
" /aws-lc/util/fipstools/**/*.c" ,
41
42
" /aws-lc/util/fipstools/**/*.cc" ,
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ include = [
32
32
" /aws-lc/third_party/fiat/**/*.h" ,
33
33
" /aws-lc/third_party/s2n-bignum/**/*.S" ,
34
34
" /aws-lc/third_party/s2n-bignum/**/*.h" ,
35
+ " /aws-lc/third_party/jitterentropy/**/*.c" ,
36
+ " /aws-lc/third_party/jitterentropy/**/*.h" ,
35
37
" /aws-lc/util/fipstools/**/CMakeLists.txt" ,
36
38
" /aws-lc/util/fipstools/**/*.c" ,
37
39
" /CMakeLists.txt" ,
Original file line number Diff line number Diff line change @@ -217,6 +217,13 @@ impl CcBuilder {
217
217
. join ( "third_party" )
218
218
. join ( "s2n-bignum" )
219
219
. join ( "include" ) ,
220
+ )
221
+ . include (
222
+ self . manifest_dir
223
+ . join ( "aws-lc" )
224
+ . join ( "third_party" )
225
+ . join ( "jitterentropy" )
226
+ . join ( "jitterentropy-library" ) ,
220
227
) ;
221
228
}
222
229
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ if [[ ! -d "${AWS_LC_DIR}" ]]; then
57
57
fi
58
58
59
59
function filter_symbols() {
60
- grep -E ' ^\w*$' | grep -v -E " ^bignum_" | grep -v " curve25519_x25519" | grep -v " edwards25519_" | grep -v " p256_montj" | grep -v " p384_montj" | grep -v " p521_montj" | grep -v " p521_j"
60
+ grep -E ' ^\w*$' | grep -v -E " ^bignum_" | grep -v " curve25519_x25519" | grep -v " edwards25519_" | grep -v " p256_montj" | grep -v " p384_montj" | grep -v " p521_montj" | grep -v " p521_j" | grep -v " jent_ "
61
61
}
62
62
63
63
function filter_nm_symbols() {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ function cmake_build_options() {
20
20
}
21
21
22
22
function filter_symbols() {
23
- grep -v " ^_\?bignum_" | grep -v " _\?curve25519_x25519" | grep -v " _\?edwards25519_" | grep -v " _\?p256_montj" | grep -v " _\?p384_montj" | grep -v " _\?p521_montj" | grep -v " _\?p521_j"
23
+ grep -v " ^_\?bignum_" | grep -v " _\?curve25519_x25519" | grep -v " _\?edwards25519_" | grep -v " _\?p256_montj" | grep -v " _\?p384_montj" | grep -v " _\?p521_montj" | grep -v " _\?p521_j" | grep -v " _\?jent_ "
24
24
}
25
25
26
26
REPO_ROOT=$( git rev-parse --show-toplevel)
You can’t perform that action at this time.
0 commit comments