From: Holger Dengler Date: Thu, 21 Aug 2025 12:14:04 +0000 (+0200) Subject: Ignore generated assembler files for cpuid functions X-Git-Tag: openssl-3.6.0-alpha1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfaea0aa4bd789dd7e51d94643f403afb0dd532a;p=thirdparty%2Fopenssl.git Ignore generated assembler files for cpuid functions The architecture-specific code to detect CPU features at runtime is generated from Perl Assembler. Modify the ignore pattern to match the generated .S files for all architectures. Signed-off-by: Holger Dengler Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale Reviewed-by: Todd Short (Merged from https://github.com/openssl/openssl/pull/28318) --- diff --git a/.gitignore b/.gitignore index ed2d2ae1a66..ed722bcf1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -348,7 +348,7 @@ providers/implementations/rands/test_rng.c # Auto generated assembly language source files *.s !/crypto/*/asm/*.s -/crypto/arm*.S +/crypto/*.S /crypto/*/*.S *.asm !/crypto/*/asm/*.asm