summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPrashanth Swaminathan <prashanthsw@google.com>2024-01-29 13:20:54 -0800
committerTomas Mraz <tomas@openssl.org>2024-02-05 10:08:23 +0100
commit2d321448b245a239c49a54e31cbd9d97a14b5d4e (patch)
treefc601e927c4c96eb5547c34da833786aacd7e213 /util
parented0f79c7ae63f7f29c9bfce2e0f960f0803be350 (diff)
Add support in configuration for android-riscv64
Android is enabling support for the riscv64 ISA. Add a configuration option to support building for it, aligned with the existing linux-riscv64 configuration. Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Todd Short <todd.short@me.com> (Merged from https://github.com/openssl/openssl/pull/23427)
Diffstat (limited to 'util')
-rwxr-xr-xutil/perl/OpenSSL/config.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index 970e65dc97..78e1e3774b 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -859,6 +859,7 @@ EOF
cflags => [ '-march=armv7-a' ],
cxxflags => [ '-march=armv7-a' ] } ],
[ 'arm.*-.*-android', { target => "android-armeabi" } ],
+ [ 'riscv64-.*-android', { target => "android-riscv64" } ],
[ '.*-hpux1.*',
sub {
my $KERNEL_BITS = $ENV{KERNEL_BITS};