From d80f17814262258b4a2c8e3b71de7329dd366d5b Mon Sep 17 00:00:00 2001 From: Bruno Tavares Date: Tue, 4 May 2021 00:13:22 -0300 Subject: [PATCH] Keep files only for the big 4 --- build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.rs b/build.rs index ed4b212759..84010f43a0 100644 --- a/build.rs +++ b/build.rs @@ -41,11 +41,11 @@ const RING_SRCS: &[(&[&str], &str)] = &[ (&[], "crypto/poly1305/poly1305.c"), (&[], "crypto/curve25519/curve25519.c"), (&[], "crypto/fipsmodule/ec/ecp_nistz.c"), - (&[], "crypto/fipsmodule/ec/gfp_p256.c"), - (&[], "crypto/fipsmodule/ec/gfp_p384.c"), (&[], "crypto/fipsmodule/ec/p256.c"), - (&[AARCH64, X86_64, X86], "crypto/crypto.c"), + (&[AARCH64, ARM, X86_64, X86], "crypto/crypto.c"), + (&[AARCH64, ARM, X86_64, X86], "crypto/fipsmodule/ec/gfp_p256.c"), + (&[AARCH64, ARM, X86_64, X86], "crypto/fipsmodule/ec/gfp_p384.c"), (&[X86_64, X86], "crypto/cpu-intel.c"),