New comment by motorto on void-packages repository https://github.com/void-linux/void-packages/pull/41084#issuecomment-1385321448 Comment: From my testing the lto is only broken currently on x86_64 so probably we could disable lto only for x86_64 and enable for all the others archs. (Yeah I was working on updating this package, wihtout looking for active PR's) also bump it to x86_64 ``` # lto fails on x86 only, no need to disable on all archs case "$XBPS_TARGET_MACHINE" in x86_64*) configure_args+=" -Db_lto=false" ;; *) configure_args+=" -Db_lto=true" ;; esac ```