diff --git a/aws-lc-sys/scripts/cc_builder/apple_x86_64.sh b/aws-lc-sys/scripts/cc_builder/apple_x86_64.sh index 56f2f61fa810..b3c81d99ad24 100755 --- a/aws-lc-sys/scripts/cc_builder/apple_x86_64.sh +++ b/aws-lc-sys/scripts/cc_builder/apple_x86_64.sh @@ -14,6 +14,8 @@ declare -a SOURCE_FILES SOURCE_FILES=() mapfile -O 0 -t SOURCE_FILES < <(find crypto/fipsmodule/ml_kem/mlkem/native/x86_64/src -name "*.S" -type f | sort -f) echo "${SOURCE_FILES[@]}" +mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find crypto/fipsmodule/ml_dsa/mldsa/native/x86_64/src -name "*.S" -type f | sort -f) +echo "${SOURCE_FILES[@]}" mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find generated-src/mac-x86_64/crypto -name "*.S" -type f | sort -f) echo "${SOURCE_FILES[@]}" mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(s2n_bignum_x86_64) diff --git a/aws-lc-sys/scripts/cc_builder/linux_x86_64.sh b/aws-lc-sys/scripts/cc_builder/linux_x86_64.sh index 6276a1bc76c2..789980e08e45 100755 --- a/aws-lc-sys/scripts/cc_builder/linux_x86_64.sh +++ b/aws-lc-sys/scripts/cc_builder/linux_x86_64.sh @@ -14,6 +14,8 @@ declare -a SOURCE_FILES SOURCE_FILES=() mapfile -O 0 -t SOURCE_FILES < <(find crypto/fipsmodule/ml_kem/mlkem/native/x86_64/src -name "*.S" -type f | sort -f) echo "${SOURCE_FILES[@]}" +mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find crypto/fipsmodule/ml_dsa/mldsa/native/x86_64/src -name "*.S" -type f | sort -f) +echo "${SOURCE_FILES[@]}" mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(find generated-src/linux-x86_64/crypto -name "*.S" -type f | sort -f) echo "${SOURCE_FILES[@]}" mapfile -O ${#SOURCE_FILES[@]} -t SOURCE_FILES < <(s2n_bignum_x86_64)