From fb9a422eba604cbdcd78826a6d520146c4fffad2 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 18 Apr 2022 11:19:09 +0200 Subject: [PATCH] package/botan: fix mips64 build Disable cc-tests to avoid the following build failure on mips64: ERROR: Configured target is mips64 but compiler probe indicates mips32 Fixes: - http://autobuild.buildroot.org/results/c44f44f36686268479563afd879db588e15ede7d Signed-off-by: Fabrice Fontaine Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/botan/botan.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/botan/botan.mk b/package/botan/botan.mk index f9ebcf8d0a..6095844b14 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -15,6 +15,7 @@ BOTAN_INSTALL_STAGING = YES BOTAN_CONF_OPTS = \ --cpu=$(BR2_ARCH) \ + --disable-cc-tests \ --os=linux \ --cc=gcc \ --cc-bin="$(TARGET_CXX)" \