Skip to content

Commit

Permalink
package/libressl: disable asm for mips64/mips64el
Browse files Browse the repository at this point in the history
LibreSSL fails in the same way as powerpc, so disable
asm too for these architectures.

Fixes:
 - http://autobuild.buildroot.net/results/788/7883ffe9ed96f38f9ca359e99a18a548b6f35c24/

Signed-off-by: Waldemar Brodkorb <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
wbx-github authored and tpetazzoni committed Aug 6, 2024
1 parent a3a7e67 commit 7c11f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/libressl/libressl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LIBRESSL_CONF_OPTS = -DLIBRESSL_TESTS=OFF -DOPENSSLDIR="/etc/ssl"

# Otherwise fails to build with undefined reference to
# `bn_mul_add_words'
ifeq ($(BR2_powerpc),y)
ifeq ($(BR2_powerpc)$(BR2_mips64)$(BR2_mips64el),y)
LIBRESSL_CONF_OPTS += -DENABLE_ASM=OFF
endif

Expand Down

0 comments on commit 7c11f0b

Please sign in to comment.