summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2017-11-02 18:20:05 +0000
committerjkim <jkim@FreeBSD.org>2017-11-02 18:20:05 +0000
commitd0f679d19590dcf57d36d384f51bc880d17d1b0c (patch)
treeae4eb904fdbec6311cc62904a76bde4178dcd57b /crypto
parent0517887e7b0c526d672bf895c4b1e763b9dda0d1 (diff)
downloadFreeBSD-src-d0f679d19590dcf57d36d384f51bc880d17d1b0c.zip
FreeBSD-src-d0f679d19590dcf57d36d384f51bc880d17d1b0c.tar.gz
MFC: r316607 (andrew)
Fix linking with lld by marking OPENSSL_armcap_P as hidden. Linking with lld fails as it contains a relative address, however the data this address is for may be relocated from the shared object to the main executable. Fix this by adding the hidden attribute. This stops moving this value to the main executable. It seems this is implicit upstream as it uses a version script.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/openssl/crypto/armcap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/openssl/crypto/armcap.c b/crypto/openssl/crypto/armcap.c
index 356fa15..ff9b317 100644
--- a/crypto/openssl/crypto/armcap.c
+++ b/crypto/openssl/crypto/armcap.c
@@ -7,6 +7,7 @@
#include "arm_arch.h"
+__attribute__ ((visibility("hidden")))
unsigned int OPENSSL_armcap_P = 0;
#if __ARM_MAX_ARCH__<7
OpenPOWER on IntegriCloud