diff options
author | Sebastian Andrzej Siewior <sebastian@breakpoint.cc> | 2022-05-19 22:09:50 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-05-24 13:16:06 +1000 |
commit | 9968c77539d6f7c5b1dcf0162fd4b57c144318c7 (patch) | |
tree | 38adc879ee30ba8b646216edf8c35c2ee7a76803 /crypto/ripemd | |
parent | a425c0fec6eb74c942ca5bca8e27ff0c9f126d48 (diff) | |
download | openssl-new-9968c77539d6f7c5b1dcf0162fd4b57c144318c7.tar.gz |
Rename x86-32 assembly files from .s to .S.
Rename x86-32 assembly files from .s to .S. While processing the .S file
gcc will use the pre-processor whic will evaluate macros and ifdef. This
is turn will be used to enable the endbr32 opcode based on the __CET__
define.
Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18353)
Diffstat (limited to 'crypto/ripemd')
-rw-r--r-- | crypto/ripemd/build.info | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ripemd/build.info b/crypto/ripemd/build.info index f1845733a8..03f1f98632 100644 --- a/crypto/ripemd/build.info +++ b/crypto/ripemd/build.info @@ -2,7 +2,7 @@ LIBS=../../libcrypto $RMD160ASM= IF[{- !$disabled{asm} -}] - $RMD160ASM_x86=rmd-586.s + $RMD160ASM_x86=rmd-586.S # Now that we have defined all the arch specific variables, use the # appropriate one, and define the appropriate macros @@ -25,5 +25,5 @@ IF[{- $disabled{'deprecated-3.0'} -}] DEFINE[../../providers/liblegacy.a]=$RMD160DEF ENDIF -GENERATE[rmd-586.s]=asm/rmd-586.pl -DEPEND[rmd-586.s]=../perlasm/x86asm.pl +GENERATE[rmd-586.S]=asm/rmd-586.pl +DEPEND[rmd-586.S]=../perlasm/x86asm.pl |