diff options
author | Oskari Rauta <oskari.rauta@gmail.com> | 2024-02-16 10:44:11 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2024-02-22 16:05:05 -0800 |
commit | b6e8be23893925329898b476f352373ddd089b85 (patch) | |
tree | 353c28bac9aef06ee190fc52e8b481801ac07214 /lang | |
parent | 3e34186c167a1b515dac4aabf44724d2e2bc5417 (diff) |
micropython: disable mold
package fails to build with mold linker due to unregocnized flag.
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/micropython/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/micropython/Makefile b/lang/python/micropython/Makefile index cca62f354..5867da1de 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 |