diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-07-29 12:47:29 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2022-08-22 08:09:25 +0200 |
commit | a9389c0b75e69ebaf74fdc8fee0c983809e45931 (patch) | |
tree | 6c62e827d0e56fb82e1e9a3a198d9dd95b8c2b2c /util | |
parent | Clarify dashes are required for openssl list command (diff) | |
download | openssl-a9389c0b75e69ebaf74fdc8fee0c983809e45931.tar.xz openssl-a9389c0b75e69ebaf74fdc8fee0c983809e45931.zip |
Add BSD-armv4 target based on linux-armv4
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Todd Short <todd.short@me.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18910)
Diffstat (limited to 'util')
-rwxr-xr-x | util/perl/OpenSSL/config.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm index 380696d818..874e6e6a52 100755 --- a/util/perl/OpenSSL/config.pm +++ b/util/perl/OpenSSL/config.pm @@ -756,6 +756,8 @@ EOF [ 'x86_64-.*-dragonfly.*', { target => "BSD-x86_64" } ], [ 'amd64-.*-.*bsd.*', { target => "BSD-x86_64" } ], [ 'arm64-.*-.*bsd.*', { target => "BSD-aarch64" } ], + [ 'armv6-.*-.*bsd.*', { target => "BSD-armv4" } ], + [ 'armv7-.*-.*bsd.*', { target => "BSD-armv4" } ], [ '.*86.*-.*-.*bsd.*', sub { # mimic ld behaviour when it's looking for libc... |