From 28c48480c0fec4045e9ac254a300c88ad0faa455 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Thu, 5 Jun 2025 22:14:40 +0200 Subject: [PATCH] rio: unbreak, disable lto on i686 --- srcpkgs/rio/template | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/rio/template b/srcpkgs/rio/template index 23597b6d25e..ee0fef0c3bb 100644 --- a/srcpkgs/rio/template +++ b/srcpkgs/rio/template @@ -16,8 +16,10 @@ distfiles="https://github.com/raphamorim/rio/archive/refs/tags/v${version}.tar.g checksum=3290d6c3bf4663432938f17b42310de9cf0327753a75c1f54215ec8f7b66a4eb case "${XBPS_TARGET_MACHINE}" in - i686*) broken="build runs out of memory";; - *) ;; + i686*) + # rustc-LLVM ERROR: out of memory + export CARGO_PROFILE_RELEASE_LTO=off + ;; esac post_install() {