diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-06-22 10:47:28 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-22 16:59:23 +0200 |
commit | cc89c4c5b0c9540d1935cd6a945b3a0908946db3 (patch) | |
tree | b48c18fcdd5616f852e7d16e21c64630961a7d38 | |
parent | cc48d7b80e16710e79563e15aeabf74c1e78b171 (diff) |
openssl: disable assembly for ARMv7M
It requires interwork and v7M is thumb-only. Fixes:
http://autobuild.buildroot.net/results/55d/55dc9d6826defd2c9048c2991019d4d573d34af4/
[Peter: use R2_ARM_CPU_HAS_ARM for logic]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/openssl/openssl.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index 2368aa913..e34868e84 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -34,7 +34,8 @@ OPENSSL_DEPENDENCIES += ocf-linux endif # Some architectures are optimized in OpenSSL -ifeq ($(ARCH),arm) +# Doesn't work for thumb-only (Cortex-M?) +ifeq ($(BR2_ARM_CPU_HAS_ARM),y) OPENSSL_TARGET_ARCH = armv4 endif ifeq ($(ARCH),aarch64) |