From 42ee6e7be43c57136d71e5612fed22a06f7f5d0e Mon Sep 17 00:00:00 2001 From: "Hongren (Zenithal) Zheng" Date: Fri, 13 May 2022 23:23:29 +0800 Subject: [PATCH] Add linux32-riscv32/BSD-riscv32 target Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/18308) --- Configurations/10-main.conf | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 036f0bbbc97..50756cb4255 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -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 -- 2.47.2