On Sat, Mar 01, 2025 at 02:04:59PM +0100, Ramiro Aceves wrote: > https://github.com/opencv/opencv/wiki/CPU-optimizations-build-options > > Not sure how to materialize it into the pkgsrc Makefile build rules of > graphics/openvcv
Build time configuration is bad, it should be detected at runtime. On NetBSD that is done via sysctl machdep e.g.: machdep.fpu_present = 1 machdep.hwdiv_present = 1 machdep.neon_present = 1 machdep.simd_present = 1 machdep.simdex_present = 1 Martin