Skip to content

Commit 29ed5d6

Browse files
committed
Script for win-x86
1 parent 75af53f commit 29ed5d6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0 OR ISC
3+
// Fri Oct 17 20:41:37 UTC 2025
34

45
pub(super) const CRYPTO_LIBRARY: &[&str] = &[
5-
"generated-src/win-x86/crypto/test/trampoline-x86.asm",
66
"generated-src/win-x86/crypto/chacha/chacha-x86.asm",
7-
"generated-src/win-x86/crypto/fipsmodule/sha256-586.asm",
87
"generated-src/win-x86/crypto/fipsmodule/aesni-x86.asm",
9-
"generated-src/win-x86/crypto/fipsmodule/sha512-586.asm",
10-
"generated-src/win-x86/crypto/fipsmodule/co-586.asm",
118
"generated-src/win-x86/crypto/fipsmodule/bn-586.asm",
12-
"generated-src/win-x86/crypto/fipsmodule/vpaes-x86.asm",
9+
"generated-src/win-x86/crypto/fipsmodule/co-586.asm",
1310
"generated-src/win-x86/crypto/fipsmodule/ghash-ssse3-x86.asm",
1411
"generated-src/win-x86/crypto/fipsmodule/ghash-x86.asm",
1512
"generated-src/win-x86/crypto/fipsmodule/md5-586.asm",
16-
"generated-src/win-x86/crypto/fipsmodule/x86-mont.asm",
1713
"generated-src/win-x86/crypto/fipsmodule/sha1-586.asm",
14+
"generated-src/win-x86/crypto/fipsmodule/sha256-586.asm",
15+
"generated-src/win-x86/crypto/fipsmodule/sha512-586.asm",
16+
"generated-src/win-x86/crypto/fipsmodule/vpaes-x86.asm",
17+
"generated-src/win-x86/crypto/fipsmodule/x86-mont.asm",
18+
"generated-src/win-x86/crypto/test/trampoline-x86.asm",
1819
];

aws-lc-sys/scripts/cc_builder/win_x86.sh

100644100755
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ source "${SCRIPT_DIR}/_common.sh"
1111

1212
pushd "${AWS_LC_DIR}"
1313
declare -a SOURCE_FILES
14-
SOURCE_FILES=("generated-src/err_data.c")
15-
mapfile -O 1 -t SOURCE_FILES < <(find crypto -name "*.c" -type f | rg --pcre2 -v 'crypto/fipsmodule/(?!(bcm.c|cpucap/cpucap.c))' | rg --pcre2 -v 'crypto/kyber/pqcrystals_kyber_ref_common/(?!fips202.c)' | rg --pcre2 -v '_test\.c$' | sort -f)
16-
echo "${SOURCE_FILES[@]}"
17-
mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find third_party/jitterentropy/jitterentropy-library/src -type f -name "*.c" | sort -f)
14+
SOURCE_FILES=( )
15+
mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find generated-src/win-x86/crypto -name "*.asm" -type f | sort -f)
1816
echo "${SOURCE_FILES[@]}"
17+
1918
popd
2019

2120
# Sort SOURCE_FILES array

0 commit comments

Comments
 (0)