From b420e249370c4a85c4edd65fb445d20f9c19c44d Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Wed, 2 Mar 2022 19:57:24 +0100 Subject: [PATCH] android-x86 target: Add -latomic Fixes https://github.com/openssl/openssl/issues/14083 again after being broken by https://github.com/openssl/openssl/pull/15640. CLA: trivial Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17833) --- Configurations/15-android.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/Configurations/15-android.conf b/Configurations/15-android.conf index 0b6b6d6832..41ad9223e0 100644 --- a/Configurations/15-android.conf +++ b/Configurations/15-android.conf @@ -261,6 +261,7 @@ my %targets = ( bn_ops => add("RC4_INT"), asm_arch => 'x86', perlasm_scheme => "android", + ex_libs => add(threads("-latomic")), }, "android-x86_64" => { inherit_from => [ "android" ], -- GitLab