Disable LTO in PKGBUILD (vendored ring/mlua static libs vs makepkg -flto)

This commit is contained in:
Breadway 2026-06-13 17:06:52 +08:00
parent ddfba38fc5
commit b3a3b0609b

View file

@ -7,6 +7,10 @@ pkgdesc="Package manager for the bread ecosystem"
arch=('x86_64')
url="https://github.com/Breadway/bread-ecosystem"
license=('MIT')
# Some Rust deps (ring/mlua) build vendored C/asm into static archives; makepkg's
# default -flto=auto emits GCC LTO bitcode the Rust (lld) link cannot read,
# causing undefined-symbol errors. Disable LTO.
options=(!lto)
depends=('glibc' 'gcc-libs')
makedepends=('rust' 'cargo')
source=("${pkgname}-${pkgver}.tar.gz")