mirror of
https://github.com/openssl/openssl.git
synced 2025-04-12 20:30:52 +08:00
Detect arm64-*-*bsd and enable assembly optimizations
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17084)
This commit is contained in:
parent
bc6d9c9395
commit
8e22f9d6d9
@ -1062,6 +1062,14 @@ my %targets = (
|
||||
perlasm_scheme => "elf",
|
||||
},
|
||||
|
||||
"BSD-aarch64" => {
|
||||
inherit_from => [ "BSD-generic64" ],
|
||||
lib_cppflags => add("-DL_ENDIAN"),
|
||||
bn_ops => "SIXTY_FOUR_BIT_LONG",
|
||||
asm_arch => 'aarch64',
|
||||
perlasm_scheme => "linux64",
|
||||
},
|
||||
|
||||
"bsdi-elf-gcc" => {
|
||||
inherit_from => [ "BASE_unix" ],
|
||||
CC => "gcc",
|
||||
|
@ -745,6 +745,7 @@ EOF
|
||||
[ 'ia64-.*-.*bsd.*', { target => "BSD-ia64" } ],
|
||||
[ 'x86_64-.*-dragonfly.*', { target => "BSD-x86_64" } ],
|
||||
[ 'amd64-.*-.*bsd.*', { target => "BSD-x86_64" } ],
|
||||
[ 'arm64-.*-.*bsd.*', { target => "BSD-aarch64" } ],
|
||||
[ '.*86.*-.*-.*bsd.*',
|
||||
sub {
|
||||
# mimic ld behaviour when it's looking for libc...
|
||||
|
Loading…
x
Reference in New Issue
Block a user