mirror of https://github.com/openssl/openssl.git
Add linux32-riscv32/BSD-riscv32 target
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18308)
This commit is contained in:
parent
b1b889d1b3
commit
42ee6e7be4
|
@ -811,7 +811,7 @@ my %targets = (
|
|||
multilib => "64",
|
||||
},
|
||||
|
||||
# riscv64 below refers to contemporary RISCV Architecture
|
||||
# riscv below refers to contemporary RISCV Architecture
|
||||
# specifications,
|
||||
"linux64-riscv64" => {
|
||||
inherit_from => [ "linux-generic64"],
|
||||
|
@ -819,6 +819,12 @@ my %targets = (
|
|||
asm_arch => 'riscv64',
|
||||
},
|
||||
|
||||
"linux32-riscv32" => {
|
||||
inherit_from => [ "linux-generic32"],
|
||||
perlasm_scheme => "linux32",
|
||||
asm_arch => 'riscv32',
|
||||
},
|
||||
|
||||
# loongarch64 below refers to contemporary LOONGARCH Architecture
|
||||
# specifications,
|
||||
"linux64-loongarch64" => {
|
||||
|
@ -1103,7 +1109,7 @@ my %targets = (
|
|||
perlasm_scheme => "linux64le",
|
||||
},
|
||||
|
||||
# riscv64 below refers to contemporary RISCV Architecture
|
||||
# riscv below refers to contemporary RISCV Architecture
|
||||
# specifications,
|
||||
"BSD-riscv64" => {
|
||||
inherit_from => [ "BSD-generic64"],
|
||||
|
@ -1111,6 +1117,12 @@ my %targets = (
|
|||
asm_arch => 'riscv64',
|
||||
},
|
||||
|
||||
"BSD-riscv32" => {
|
||||
inherit_from => [ "BSD-generic32"],
|
||||
perlasm_scheme => "linux32",
|
||||
asm_arch => 'riscv32',
|
||||
},
|
||||
|
||||
"BSD-armv4" => {
|
||||
################################################################
|
||||
# Note that -march is not among compiler options in linux-armv4
|
||||
|
|
Loading…
Reference in New Issue