From b6e8be23893925329898b476f352373ddd089b85 Mon Sep 17 00:00:00 2001 From: Oskari Rauta Date: Fri, 16 Feb 2024 10:44:11 +0200 Subject: [PATCH] micropython: disable mold package fails to build with mold linker due to unregocnized flag. Signed-off-by: Oskari Rauta --- lang/python/micropython/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python/micropython/Makefile b/lang/python/micropython/Makefile index cca62f3541..5867da1de7 100644 --- a/lang/python/micropython/Makefile +++ b/lang/python/micropython/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=micropython PKG_VERSION:=1.21.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/micropython/micropython/releases/download/v$(PKG_VERSION) @@ -21,7 +21,7 @@ PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:micropython:micropython PKG_BUILD_DEPENDS:=python3/host -PKG_BUILD_FLAGS:=no-mips16 +PKG_BUILD_FLAGS:=no-mips16 no-mold PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/host-build.mk