When trying to build quarterly chromium (Version: chromium-150.0.7871.100-lite), it now fails with such error
CPUTYPE?=haswell
Last working version was: chromium-147.0.7727.101-lite
When I remove the CPUTYPE=haswell, the build runs further, but the log now shows a compiler option -march=x86-64-v4 which is apparently hardcoded from whoknowswhere. So I might very much assume that this build will require AVX512.
Trying to download a readymade binary package from "FreeBSD" repo for comparison - but apparently there is none.
Did anybody succeed in getting this running one way or the other?
CPUTYPE?=haswell
Code:
In file included from ../../third_party/skia/modules/skcms/src/skcms_TransformSkx.cc:53:
../../third_party/skia/modules/skcms/src/Transform_inl.h:152:15: error: always_inline function '_mm512_cvtph_ps' requires target feature 'avx512f', but would be inlined into function 'F_from_Half' that is compiled without support for 'avx512f'
152 | return (F)_mm512_cvtph_ps((__m256i)half);
| ^
Last working version was: chromium-147.0.7727.101-lite
When I remove the CPUTYPE=haswell, the build runs further, but the log now shows a compiler option -march=x86-64-v4 which is apparently hardcoded from whoknowswhere. So I might very much assume that this build will require AVX512.
Trying to download a readymade binary package from "FreeBSD" repo for comparison - but apparently there is none.
Did anybody succeed in getting this running one way or the other?