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)
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
LIBS=../../libcrypto
|
|
|
|
$POLY1305ASM=
|
|
IF[{- !$disabled{asm} -}]
|
|
$POLY1305ASM_x86=poly1305-x86.S
|
|
$POLY1305ASM_x86_64=poly1305-x86_64.s
|
|
|
|
$POLY1305ASM_ia64=asm/poly1305-ia64.s
|
|
|
|
$POLY1305ASM_sparcv9=poly1305-sparcv9.S
|
|
|
|
$POLY1305ASM_mips64=poly1305-mips.S
|
|
|
|
$POLY1305ASM_s390x=poly1305-s390x.S
|
|
|
|
$POLY1305ASM_armv4=poly1305-armv4.S
|
|
$POLY1305ASM_aarch64=poly1305-armv8.S
|
|
|
|
$POLY1305ASM_ppc32=poly1305_ppc.c poly1305-ppc.s poly1305-ppcfp.s
|
|
$POLY1305ASM_ppc64=$POLY1305ASM_ppc32
|
|
|
|
$POLY1305ASM_c64xplus=poly1305-c64xplus.s
|
|
|
|
# Now that we have defined all the arch specific variables, use the
|
|
# appropriate one, and define the appropriate macros
|
|
IF[$POLY1305ASM_{- $target{asm_arch} -}]
|
|
$POLY1305ASM=$POLY1305ASM_{- $target{asm_arch} -}
|
|
$POLY1305DEF=POLY1305_ASM
|
|
ENDIF
|
|
ENDIF
|
|
|
|
SOURCE[../../libcrypto]=poly1305.c $POLY1305ASM
|
|
|
|
# Implementations are now spread across several libraries, so the defines
|
|
# need to be applied to all affected libraries and modules.
|
|
DEFINE[../../libcrypto]=$POLY1305DEF
|
|
|
|
GENERATE[poly1305-sparcv9.S]=asm/poly1305-sparcv9.pl
|
|
INCLUDE[poly1305-sparcv9.o]=..
|
|
GENERATE[poly1305-x86.S]=asm/poly1305-x86.pl
|
|
GENERATE[poly1305-x86_64.s]=asm/poly1305-x86_64.pl
|
|
GENERATE[poly1305-ppc.s]=asm/poly1305-ppc.pl
|
|
GENERATE[poly1305-ppcfp.s]=asm/poly1305-ppcfp.pl
|
|
GENERATE[poly1305-armv4.S]=asm/poly1305-armv4.pl
|
|
INCLUDE[poly1305-armv4.o]=..
|
|
GENERATE[poly1305-armv8.S]=asm/poly1305-armv8.pl
|
|
INCLUDE[poly1305-armv8.o]=..
|
|
GENERATE[poly1305-mips.S]=asm/poly1305-mips.pl
|
|
INCLUDE[poly1305-mips.o]=..
|
|
GENERATE[poly1305-c64xplus.S]=asm/poly1305-c64xplus.pl
|
|
INCLUDE[poly1305-s390x.o]=..
|
|
GENERATE[poly1305-s390x.S]=asm/poly1305-s390x.pl
|