On Thu, Dec 02, 2021 at 12:38:10PM +0300, Kirill Bychkov wrote: > On Mon, November 29, 2021 11:04, k...@openbsd.org wrote: > > Bulk build on sparc64-0a.ports.openbsd.org > > > > Started : Fri Nov 26 16:32:18 MST 2021 > > Finished: Mon Nov 29 01:04:37 MST 2021 > > Duration: 2 Days 8 hours 32 minutes > > > > Built using OpenBSD 7.0-current (GENERIC.MP) #1070: Thu Nov 25 01:09:21 MST > > 2021
> > http://build-failures.rhaalovely.net/sparc64/2021-11-26/devel/vte3.log > Hi! > According to meson.build it requires newer GCC for gnu c++20 extensions: > c_req_std = 'gnu11' > cxx_req_std = 'gnu++20' > gxx_req_version = '10.0' > clangxx_req_version = '11.0' > Switching default compiler to ports-clang fixes build. > Some consumers build tested. It takes too much time on my Netra :( > OK? ok kmos --Kurt > Index: Makefile > =================================================================== > RCS file: /cvs/ports/devel/vte3/Makefile,v > retrieving revision 1.111 > diff -u -p -u -r1.111 Makefile > --- Makefile 26 Oct 2021 10:36:48 -0000 1.111 > +++ Makefile 2 Dec 2021 09:29:51 -0000 > @@ -26,7 +26,7 @@ WANTLIB += ${COMPILER_LIBCXX} > MODULES= devel/meson \ > x11/gnome > > -COMPILER = base-clang ports-gcc > +COMPILER = base-clang ports-clang > > DEBUG_PACKAGES = ${BUILD_PACKAGES} > > >