diff options
-rw-r--r-- | media-libs/openpgl/openpgl-0.5.0.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/media-libs/openpgl/openpgl-0.5.0.ebuild b/media-libs/openpgl/openpgl-0.5.0.ebuild index 67870a6bfa63..02987ca560ce 100644 --- a/media-libs/openpgl/openpgl-0.5.0.ebuild +++ b/media-libs/openpgl/openpgl-0.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake flag-o-matic DESCRIPTION="Intel Open Path Guiding Library" HOMEPAGE="https://github.com/OpenPathGuidingLibrary/openpgl" @@ -33,6 +33,9 @@ src_configure() { -DOPENPGL_ISA_NEON=$(usex cpu_flags_arm_neon) ) + # This is currently needed on arm64 to get the NEON SIMD wrapper to compile the code successfully + use cpu_flags_arm_neon && append-flags -flax-vector-conversions + # Disable asserts append-cppflags $(usex debug '' '-DNDEBUG') |