Skip to content
Snippets Groups Projects
Commit 28f67274 authored by Oleksii Samorukov's avatar Oleksii Samorukov
Browse files

sysutils/busybox: fix build on non-intel arch

parent c6bde1cb
No related branches found
No related tags found
No related merge requests found
--- libbb/hash_md5_sha.c.shaNI-fix 2024-09-27 09:57:09.601487627 -0400
+++ libbb/hash_md5_sha.c 2024-09-27 09:57:49.167153221 -0400
@@ -1313,7 +1313,9 @@ unsigned FAST_FUNC sha1_end(sha1_ctx_t *
hash_size = 8;
if (ctx->process_block == sha1_process_block64
#if ENABLE_SHA1_HWACCEL
+# if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|| ctx->process_block == sha1_process_block64_shaNI
+# endif
#endif
) {
hash_size = 5;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment