dev-util/wasm3: filter lto and strict-aliasing

Closes: https://bugs.gentoo.org/925933
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2024-03-04 01:22:34 +01:00
parent 2a790add35
commit 7fb3a58a39

View File

@@ -3,7 +3,7 @@
EAPI=8
inherit cmake
inherit cmake flag-o-matic
DESCRIPTION="A fast WebAssembly interpreter and the most universal WASM runtime"
HOMEPAGE="https://github.com/wasm3/wasm3/"
@@ -25,6 +25,10 @@ SLOT="0"
DOCS=( README.md docs )
src_configure() {
# bug https://bugs.gentoo.org/925933
filter-lto
append-flags -fno-strict-aliasing
local -a mycmakeargs=(
-DBUILD_WASI=simple
)