On Fri Jul 14, 2023 at 07:01:43AM -0600, phess...@openbsd.org wrote: > bulk build on arm64.ports.openbsd.org > started on Wed Jul 12 00:15:28 MDT 2023 > finished at Fri Jul 14 07:01:29 MDT 2023 > lasted 2D06h46m > done with kern.version=OpenBSD 7.3-current (GENERIC.MP) #2188: Mon Jul 10 > 14:25:11 MDT 2023 > > built packages:11632 > Jul 12:4144 > Jul 13:3045 > Jul 14:4442 > > > critical path missing pkgs: > http://build-failures.rhaalovely.net/aarch64/2023-07-12/summary.log > > build failures: 3 > http://build-failures.rhaalovely.net/aarch64/2023-07-12/emulators/qemu,-ga.log > http://build-failures.rhaalovely.net/aarch64/2023-07-12/games/lwjgl3.log > http://build-failures.rhaalovely.net/aarch64/2023-07-12/x11/qt5/qtwebengine.log
I think I have forgotten something here... https://github.com/openbsd/ports/commit/c5e352c5ad13660f0f776ff76dd50938d3fc780d#diff-8f2b3d2c3c34018653754a138bfea6016d6ea85f3f0f5c86f53a9e011fd37eb8 Lets bring it back. Could you give it a spin? diff --git a/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_src_opts_SkRasterPipeline_opts_h b/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_src_opts_SkRasterPipeline_opts_h new file mode 100644 index 00000000000..332804ac499 --- /dev/null +++ b/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_src_opts_SkRasterPipeline_opts_h @@ -0,0 +1,22 @@ +Revert b2de8e8046dc1c558465f74b4afe11d57cbc6cf3 (with new defined check) +Index: src/3rdparty/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h +--- src/3rdparty/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h.orig ++++ src/3rdparty/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h +@@ -980,7 +980,7 @@ SI F approx_powf(F x, F y) { + SI F from_half(U16 h) { + #if defined(JUMPER_IS_NEON) && defined(SK_CPU_ARM64) \ + && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds. +-#if defined(SK_BUILD_FOR_MAC) ++#if defined(SK_BUILD_FOR_MAC) || defined(__OpenBSD__) + return vcvt_f32_f16(h); + #else + __fp16 fp16; +@@ -1006,7 +1006,7 @@ SI F from_half(U16 h) { + SI U16 to_half(F f) { + #if defined(JUMPER_IS_NEON) && defined(SK_CPU_ARM64) \ + && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds. +-#if defined(SK_BUILD_FOR_MAC) ++#if defined(SK_BUILD_FOR_MAC) || defined(__OpenBSD__) + return vcvt_f16_f32(f); + #else + __fp16 fp16 = __fp16(f);