dev-python/pyblake2: Try to disable -ftree-vectorize to avoid segv

Bug: https://bugs.gentoo.org/638428
This commit is contained in:
Michał Górny
2017-11-22 14:21:05 +01:00
parent c3579f35bc
commit 5dddb56946

View File

@@ -47,6 +47,11 @@ python_prepare_all() {
distutils-r1_python_prepare_all
}
python_configure_all() {
# reported to break stuff, https://bugs.gentoo.org/638428
append-flags -fno-tree-vectorize
}
python_test() {
"${EPYTHON}" test/test.py || die "Tests fail with ${EPYTHON}"
}