ashley wrote:
> Good day.
>
> I have two different domains, which I would like to redirect to two
> different web servers using relayd (all of them running on the same
> machine). One of them is just httpd serving static files, and the other
> is a web app that I want to run on the alternative domain.
>
> Is such a setup possible? Obviously I can match against the Host header
> when forwarding, but the problem is that when relayd listens with tls
> the server certificates are determined by the listen address. This is
> obviously a problem because each domain has a different certificate
> (both of which acquired from let's encrypt). I understand you can get
> wildcard certs for SLDs, which I guess would circumvent the problem,
> since then both domains would use the same cert for relayd to listen
> with, however I wish to use to completely separate FLDs.
>
> Is the *only* way to achieve this having two separate network interfaces
> with different addresses? With IPv6 that isn't a problem, but I need to
> support IPv4, and v4 addresses are expensive.
>
> So, in summary, is it possible for relayd to know what the correct
> certificate to use is, before receiving the HTTP request from the
> client? Is this possible to achieve with SNI? I haven't found any
> mentions of SNI in the relayd man page, so I can only assume it
> doesn't support SNI?
>
> Any advice, pointers or trout slaps would be greatly appreciated.
>
Actually this works for me:
Define multiple tls keypairs in your protocol block, such as
http protocol "https" {
tls keypair "www.somesite.com"
tls keypair "www.othersite.net"
tls keypair "api.sites.org"
pass request quick header "Host" value "www.somesite.com"
forward to <somesite>
pass request quick header "Host" value "www.othersite.net"
forward to <othersite>
pass request quick header "Host" value "api.sites.org" forward
to <sites>
[...]
}
You then need to have a certificate for each domain. For example,
www.somesite.com needs files
/etc/ssl/www.somesite.com.ctr
/etc/ssl/private/www.somesite.com.key
Sunday, August 31, 2025
Re: graphics/ffmpeg: update to 6.1.3
Hi Ports,
Tested working on my setup as well. If there's interest, I'm providing a
merged version with vulkan support from a previous submission a while
back. I've been running and testing it for the last few days on my
-current/amd64 box. With AV1 support now available it would be nice to
provide the supported devices the performance improvement when possible.
Index: Makefile
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/Makefile,v
retrieving revision 1.246
diff -u -p -u -p -r1.246 Makefile
--- Makefile 24 May 2025 00:26:53 -0000 1.246
+++ Makefile 1 Sep 2025 02:45:41 -0000
@@ -1,8 +1,7 @@
COMMENT= audio/video converter and streamer
-V= 6.1.2
+V= 6.1.3
DISTNAME= ffmpeg-${V}
-REVISION= 3
EPOCH= 1
CATEGORIES= graphics multimedia
SITES= https://ffmpeg.org/releases/
@@ -27,11 +26,11 @@ MAINTAINER= Brad Smith <brad@comstyle.co
PERMIT_PACKAGE= Yes
WANTLIB += SDL2 X11 Xext Xv aom ass bz2 c crypto dav1d fontconfig
-WANTLIB += freetype fribidi gsm harfbuzz iconv lzma m mp3lame opus
-WANTLIB += pthread sndio speex ssl theoradec theoraenc v4l2 va
-WANTLIB += va-drm va-x11 vidstab vorbis vorbisenc vpx webp webpmux
-WANTLIB += x264 x265 xcb xcb-shape xcb-shm xcb-xfixes xml2 xvidcore
-WANTLIB += z zimg
+WANTLIB += freetype fribidi glslang gsm harfbuzz iconv lzma m mp3lame
+WANTLIB += opus pthread sndio speex ssl theoradec theoraenc v4l2 va
+WANTLIB += va-drm va-x11 vidstab vorbis vorbisenc vpx vulkan webp
+WANTLIB += webpmux x264 x265 xcb xcb-shape xcb-shm xcb-xfixes xml2
+WANTLIB += xvidcore z zimg
COMPILER= base-clang ports-gcc
COMPILER_LANGS= c
@@ -39,8 +38,9 @@ COMPILER_LANGS= c
DEBUG_PACKAGES= ${BUILD_PACKAGES}
BUILD_DEPENDS= audio/ladspa \
- textproc/texi2html \
- multimedia/frei0r-plugins
+ graphics/vulkan-headers \
+ multimedia/frei0r-plugins \
+ textproc/texi2html
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= devel/nasm
.endif
@@ -55,7 +55,9 @@ LIB_DEPENDS= archivers/bzip2 \
devel/fribidi \
devel/harfbuzz \
devel/sdl2 \
+ graphics/glslang \
graphics/libwebp \
+ graphics/vulkan-loader \
graphics/zimg \
multimedia/aom \
multimedia/dav1d \
@@ -79,7 +81,7 @@ LIBavdevice_EXTRALIBS=-L${LOCALBASE}/lib
LIBavdevice_EXTRALIBS+=-lxcb-shape -lxcb-shm -lxcb-xfixes -lxcb -lsndio
-lv4l2 -lm
LIBavfilter_EXTRALIBS=-L${LOCALBASE}/lib -L${X11BASE}/lib -lass
-lfontconfig
-LIBavfilter_EXTRALIBS+=-lfreetype -lfribidi -lharfbuzz -lvidstab
+LIBavfilter_EXTRALIBS+=-lfreetype -lfribidi -lglslang -lharfbuzz
-lvidstab
LIBavfilter_EXTRALIBS+=-lm -lz -lzimg -lva -pthread
LIBavformat_EXTRALIBS=-L${LOCALBASE}/lib -lbz2 -lxml2 -lssl -lcrypto
-lm -lz
@@ -111,7 +113,6 @@ CONFIGURE_ARGS+=--enable-shared \
--disable-stripping \
--disable-indev=jack \
--disable-outdev=sdl2 \
- --disable-vulkan \
--enable-fontconfig \
--enable-frei0r \
--enable-gpl \
@@ -122,6 +123,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-libfontconfig \
--enable-libfreetype \
--enable-libfribidi \
+ --enable-libglslang \
--enable-libgsm \
--enable-libharfbuzz \
--enable-libmp3lame \
@@ -129,6 +131,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-libspeex \
--enable-libtheora \
--enable-libv4l2 \
+ --enable-libvidstab \
--enable-libvorbis \
--enable-libvpx \
--enable-libwebp \
@@ -140,6 +143,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-nonfree \
--enable-openssl \
--enable-libvidstab \
+ --enable-vulkan \
--extra-cflags="-I${LOCALBASE}/include -I${X11BASE}/include" \
--extra-libs="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
--extra-ldsoflags="${LDLIBFLAGS}" \
Index: distinfo
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/distinfo,v
retrieving revision 1.68
diff -u -p -u -p -r1.68 distinfo
--- distinfo 24 Nov 2024 08:50:45 -0000 1.68
+++ distinfo 1 Sep 2025 02:45:41 -0000
@@ -1,2 +1,2 @@
-SHA256 (ffmpeg-6.1.2.tar.xz) =
O2JGSXJezcVlyQPKZkPUHzO9SSOZIuRcmxRCxj3KTjg=
-SIZE (ffmpeg-6.1.2.tar.xz) = 10466152
+SHA256 (ffmpeg-6.1.3.tar.xz) =
vF8eSk0oOmSSNUaE7hEkEpxSKTvPxqkWkZNTn77ONIc=
+SIZE (ffmpeg-6.1.3.tar.xz) = 10473704
cvs server: Diffing patches
cvs server: cannot find patches/patch-Makefile
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/patches/patch-configure,v
retrieving revision 1.75
diff -u -p -u -p -r1.75 patch-configure
--- patches/patch-configure 3 Dec 2024 12:50:29 -0000 1.75
+++ patches/patch-configure 1 Sep 2025 02:45:41 -0000
@@ -3,26 +3,16 @@
- riscv: test for assembler support
b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
- lsws/ppc/yuv2rgb_altivec: Fix build in non-VSX environments with
Clang
-
- Fix broken libatomic test
+- Fix libglslang support detection, as our libglslang doesn't provide
+ some deprecated .so stubs (HSLS, OGLCompiler, MachineIndependent,
+ OSDependent, SPIRV, GenericCodeGen), and remove unneeded libs
+
Index: configure
--- configure.orig
+++ configure
-@@ -2146,10 +2146,12 @@ ARCH_EXT_LIST_PPC="
- ldbrx
- power8
- ppc4xx
-+ vec_xl
- vsx
- "
-
- ARCH_EXT_LIST_RISCV="
-+ rv
- rvv
- "
-
-@@ -2296,6 +2298,7 @@ SYSTEM_FUNCS="
+@@ -2300,6 +2300,7 @@ SYSTEM_FUNCS="
clock_gettime
closesocket
CommandLineToArgvW
@@ -30,19 +20,7 @@ Index: configure
fcntl
getaddrinfo
getauxval
-@@ -2674,9 +2677,11 @@ altivec_deps="ppc"
- dcbzl_deps="ppc"
- ldbrx_deps="ppc"
- ppc4xx_deps="ppc"
-+vec_xl_deps="altivec"
- vsx_deps="altivec"
- power8_deps="vsx"
-
-+rv_deps="riscv"
- rvv_deps="riscv"
-
- loongson2_deps="mips"
-@@ -5598,7 +5603,6 @@ case $target_os in
+@@ -5607,7 +5608,6 @@ case $target_os in
enable section_data_rel_ro
striptype=""
SHFLAGS='-shared'
@@ -50,31 +28,16 @@ Index: configure
SLIB_INSTALL_LINKS=
oss_indev_extralibs="-lossaudio"
oss_outdev_extralibs="-lossaudio"
-@@ -5959,7 +5963,7 @@ set_default libdir
- set_default $PATHS_LIST
- set_default nm
-
--disabled optimizations || enabled ossfuzz || check_cflags
-fomit-frame-pointer
-+enabled x86_32 && check_cflags -fomit-frame-pointer
-
- enable_weak_pic() {
- disabled pic && return
-@@ -6215,8 +6219,14 @@ elif enabled ppc; then
+@@ -6224,7 +6224,7 @@ elif enabled ppc; then
check_cpp_condition power8 "altivec.h" "defined(_ARCH_PWR8)"
fi
+- if enabled altivec; then
+ if enabled altivec && disabled vsx; then
-+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
-+ vector unsigned char y0 = vec_xl(0,
y1i);"
-+ fi
-+
- elif enabled riscv; then
-
-+ enabled rv && check_inline_asm rv '".option arch, +zbb\nrev8 t0,
t1"'
- enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli
zero, 0, e8, m1, ta, ma"'
-
- elif enabled x86; then
-@@ -6417,6 +6427,7 @@ check_func_headers mach/mach_time.h
mach_absolute_time
+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
+ vector unsigned char y0 = vec_xl(0,
y1i);"
+ fi
+@@ -6432,6 +6432,7 @@ check_func_headers mach/mach_time.h
mach_absolute_time
check_func_headers stdlib.h getenv
check_func_headers sys/stat.h lstat
check_func_headers sys/auxv.h getauxval
@@ -82,7 +45,7 @@ Index: configure
check_func_headers sys/sysctl.h sysctlbyname
check_func_headers windows.h GetModuleHandle
-@@ -6483,7 +6494,7 @@ check_headers asm/types.h
+@@ -6498,7 +6499,7 @@ check_headers asm/types.h
#
# some configurations also require linking to libatomic, so try
# both with -latomic and without
@@ -91,11 +54,17 @@ Index: configure
check_builtin stdatomic stdatomic.h
\
"atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo,
0); foo += bar" \
$LATOMIC && eval stdatomic_extralibs="\$LATOMIC" && break
-@@ -7748,6 +7759,7 @@ if enabled ppc; then
- echo "POWER8 enabled ${power8-no}"
- echo "PPC 4xx optimizations ${ppc4xx-no}"
- echo "dcbzl available ${dcbzl-no}"
-+ echo "vec_xl available ${vec_xl-no}"
- fi
- if enabled loongarch; then
- echo "LSX enabled ${lsx-no}"
+@@ -6730,11 +6731,9 @@ enabled libfreetype && require_pkg_config
libfre
+ enabled libfribidi && require_pkg_config libfribidi fribidi
fribidi.h fribidi_version_info
+ enabled libharfbuzz && require_pkg_config libharfbuzz harfbuzz
hb.h hb_buffer_create
+ enabled libglslang && { check_lib spirv_compiler
glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lMachineIndependent
-lOSDependent -lHLSL -lOGLCompiler -lGenericCodeGen \
+- -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt
-lSPIRV-Tools -lpthread -lstdc++ -lm ||
++ -lglslang -lpthread -lstdc++ -lm ||
+ require spirv_compiler
glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lOSDependent -lHLSL
-lOGLCompiler \
+- -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt
-lSPIRV-Tools -lpthread -lstdc++ -lm; }
++ -lglslang -lpthread -lstdc++ -lm; }
+ enabled libgme && { check_pkg_config libgme libgme
gme/gme.h gme_new_emu ||
+ require libgme gme/gme.h gme_new_emu
-lgme -lstdc++; }
+ enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
On Sat, Aug 30, 2025 at 04:46:06PM +0200, Kirill A. Korinsky wrote:
>On Sat, 23 Aug 2025 00:53:42 +0200,
>Kirill A. Korinsky <kirill@korins.ky> wrote:
>>
>> Brad,
>>
>> I'd like to update graphics/ffmpeg to 6.1.3.
>>
>> It was tested on -current/amd64 and -current/arm64, no regression.
>>
>> Also, riscv and yuv2rgb_altivec related patched is included into this
>> release.
>>
>
>My bulk build on amd64 is finished. Here updated diff which includes
>increase used version of ffmpeg in x11/mplayer.
>
>It ends as:
>
>Elapsed time=2 days 18:21:28
>I=11935 B=43 Q=0 T=240 F=0 !=104
>L=x11/eterm
>E=math/wxMaxima editors/abiword editors/le games/openmw games/scorched3d games/zelda3-data graphics/enblend-enfuse lang/apl x11/eterm,kanji www/iridium audio/xmms2 databases/mongodb/44! x11/qt6/qtwebengine! x11/ogre games/xye lang/v multimedia/sfml games/zelda3-rom
>
>almost all errors related do libc++, with exception of math/wxMaxima which
>probably fixed by not commited yet updated.
>
>Ok?
>
>Index: x11/mplayer/Makefile
>===================================================================
>RCS file: /home/cvs/ports/x11/mplayer/Makefile,v
>diff -u -p -r1.334 Makefile
>--- x11/mplayer/Makefile 19 Feb 2025 05:43:13 -0000 1.334
>+++ x11/mplayer/Makefile 28 Aug 2025 14:18:00 -0000
>@@ -1,9 +1,9 @@
> COMMENT= movie player supporting many formats
>
> V= 20240803
>-FFMPEG_V= 6.1.2
>+FFMPEG_V= 6.1.3
> DISTNAME= mplayer-${V}
>-REVISION= 2
>+REVISION= 3
> CATEGORIES= x11 multimedia
> SITES= https://comstyle.com/source/
> EXTRACT_SUFX= .tar.xz
>Index: graphics/ffmpeg/Makefile
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/Makefile,v
>diff -u -p -r1.246 Makefile
>--- graphics/ffmpeg/Makefile 24 May 2025 00:26:53 -0000 1.246
>+++ graphics/ffmpeg/Makefile 28 Aug 2025 14:20:03 -0000
>@@ -1,8 +1,8 @@
> COMMENT= audio/video converter and streamer
>
>-V= 6.1.2
>+# keep it synced with x11/mplayer
>+V= 6.1.3
> DISTNAME= ffmpeg-${V}
>-REVISION= 3
> EPOCH= 1
> CATEGORIES= graphics multimedia
> SITES= https://ffmpeg.org/releases/
>Index: graphics/ffmpeg/distinfo
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/distinfo,v
>diff -u -p -r1.68 distinfo
>--- graphics/ffmpeg/distinfo 24 Nov 2024 08:50:45 -0000 1.68
>+++ graphics/ffmpeg/distinfo 23 Aug 2025 09:56:12 -0000
>@@ -1,2 +1,2 @@
>-SHA256 (ffmpeg-6.1.2.tar.xz) = O2JGSXJezcVlyQPKZkPUHzO9SSOZIuRcmxRCxj3KTjg=
>-SIZE (ffmpeg-6.1.2.tar.xz) = 10466152
>+SHA256 (ffmpeg-6.1.3.tar.xz) = vF8eSk0oOmSSNUaE7hEkEpxSKTvPxqkWkZNTn77ONIc=
>+SIZE (ffmpeg-6.1.3.tar.xz) = 10473704
>Index: graphics/ffmpeg/patches/patch-Makefile
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-Makefile
>diff -N graphics/ffmpeg/patches/patch-Makefile
>--- graphics/ffmpeg/patches/patch-Makefile 3 Dec 2024 12:50:29 -0000 1.10
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,20 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: Makefile
>---- Makefile.orig
>-+++ Makefile
>-@@ -93,10 +93,10 @@ ffbuild/.config: $(CONFIGURABLE_COMPONENTS)
>- SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \
>- HEADERS ARCH_HEADERS BUILT_HEADERS SKIPHEADERS \
>- ARMV5TE-OBJS ARMV6-OBJS ARMV8-OBJS VFP-OBJS NEON-OBJS \
>-- ALTIVEC-OBJS VSX-OBJS RVV-OBJS MMX-OBJS X86ASM-OBJS \
>-+ ALTIVEC-OBJS VSX-OBJS MMX-OBJS X86ASM-OBJS \
>- MIPSFPU-OBJS MIPSDSPR2-OBJS MIPSDSP-OBJS MSA-OBJS \
>-- MMI-OBJS LSX-OBJS LASX-OBJS OBJS SLIBOBJS SHLIBOBJS \
>-- STLIBOBJS HOSTOBJS TESTOBJS
>-+ MMI-OBJS LSX-OBJS LASX-OBJS RV-OBJS RVV-OBJS \
>-+ OBJS SLIBOBJS SHLIBOBJS STLIBOBJS HOSTOBJS TESTOBJS
>-
>- define RESET
>- $(1) :=
>Index: graphics/ffmpeg/patches/patch-configure
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/patches/patch-configure,v
>diff -u -p -r1.75 patch-configure
>--- graphics/ffmpeg/patches/patch-configure 3 Dec 2024 12:50:29 -0000 1.75
>+++ graphics/ffmpeg/patches/patch-configure 23 Aug 2025 09:56:12 -0000
>@@ -1,28 +1,12 @@
> - aarch64: Implement support for elf_aux_info(3) on FreeBSD and OpenBSD
> a3f79fd22a367207097c78e0a5d2bc213efe9f80
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-- lsws/ppc/yuv2rgb_altivec: Fix build in non-VSX environments with Clang
>
> - Fix broken libatomic test
>
> Index: configure
> --- configure.orig
> +++ configure
>-@@ -2146,10 +2146,12 @@ ARCH_EXT_LIST_PPC="
>- ldbrx
>- power8
>- ppc4xx
>-+ vec_xl
>- vsx
>- "
>-
>- ARCH_EXT_LIST_RISCV="
>-+ rv
>- rvv
>- "
>-
>-@@ -2296,6 +2298,7 @@ SYSTEM_FUNCS="
>+@@ -2300,6 +2300,7 @@ SYSTEM_FUNCS="
> clock_gettime
> closesocket
> CommandLineToArgvW
>@@ -30,19 +14,7 @@ Index: configure
> fcntl
> getaddrinfo
> getauxval
>-@@ -2674,9 +2677,11 @@ altivec_deps="ppc"
>- dcbzl_deps="ppc"
>- ldbrx_deps="ppc"
>- ppc4xx_deps="ppc"
>-+vec_xl_deps="altivec"
>- vsx_deps="altivec"
>- power8_deps="vsx"
>-
>-+rv_deps="riscv"
>- rvv_deps="riscv"
>-
>- loongson2_deps="mips"
>-@@ -5598,7 +5603,6 @@ case $target_os in
>+@@ -5607,7 +5608,6 @@ case $target_os in
> enable section_data_rel_ro
> striptype=""
> SHFLAGS='-shared'
>@@ -50,7 +22,7 @@ Index: configure
> SLIB_INSTALL_LINKS=
> oss_indev_extralibs="-lossaudio"
> oss_outdev_extralibs="-lossaudio"
>-@@ -5959,7 +5963,7 @@ set_default libdir
>+@@ -5968,7 +5968,7 @@ set_default libdir
> set_default $PATHS_LIST
> set_default nm
>
>@@ -59,22 +31,7 @@ Index: configure
>
> enable_weak_pic() {
> disabled pic && return
>-@@ -6215,8 +6219,14 @@ elif enabled ppc; then
>- check_cpp_condition power8 "altivec.h" "defined(_ARCH_PWR8)"
>- fi
>-
>-+ if enabled altivec && disabled vsx; then
>-+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
>-+ vector unsigned char y0 = vec_xl(0, y1i);"
>-+ fi
>-+
>- elif enabled riscv; then
>-
>-+ enabled rv && check_inline_asm rv '".option arch, +zbb\nrev8 t0, t1"'
>- enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli zero, 0, e8, m1, ta, ma"'
>-
>- elif enabled x86; then
>-@@ -6417,6 +6427,7 @@ check_func_headers mach/mach_time.h mach_absolute_time
>+@@ -6432,6 +6432,7 @@ check_func_headers mach/mach_time.h mach_absolute_time
> check_func_headers stdlib.h getenv
> check_func_headers sys/stat.h lstat
> check_func_headers sys/auxv.h getauxval
>@@ -82,7 +39,7 @@ Index: configure
> check_func_headers sys/sysctl.h sysctlbyname
>
> check_func_headers windows.h GetModuleHandle
>-@@ -6483,7 +6494,7 @@ check_headers asm/types.h
>+@@ -6498,7 +6499,7 @@ check_headers asm/types.h
> #
> # some configurations also require linking to libatomic, so try
> # both with -latomic and without
>@@ -91,11 +48,3 @@ Index: configure
> check_builtin stdatomic stdatomic.h \
> "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0); foo += bar" \
> $LATOMIC && eval stdatomic_extralibs="\$LATOMIC" && break
>-@@ -7748,6 +7759,7 @@ if enabled ppc; then
>- echo "POWER8 enabled ${power8-no}"
>- echo "PPC 4xx optimizations ${ppc4xx-no}"
>- echo "dcbzl available ${dcbzl-no}"
>-+ echo "vec_xl available ${vec_xl-no}"
>- fi
>- if enabled loongarch; then
>- echo "LSX enabled ${lsx-no}"
>Index: graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>diff -N graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>--- graphics/ffmpeg/patches/patch-ffbuild_arch_mak 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,14 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: ffbuild/arch.mak
>---- ffbuild/arch.mak.orig
>-+++ ffbuild/arch.mak
>-@@ -15,6 +15,7 @@ OBJS-$(HAVE_LASX) += $(LASX-OBJS) $(LASX-OB
>- OBJS-$(HAVE_ALTIVEC) += $(ALTIVEC-OBJS) $(ALTIVEC-OBJS-yes)
>- OBJS-$(HAVE_VSX) += $(VSX-OBJS) $(VSX-OBJS-yes)
>-
>-+OBJS-$(HAVE_RV) += $(RV-OBJS) $(RV-OBJS-yes)
>- OBJS-$(HAVE_RVV) += $(RVV-OBJS) $(RVV-OBJS-yes)
>-
>- OBJS-$(HAVE_MMX) += $(MMX-OBJS) $(MMX-OBJS-yes)
>Index: graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>diff -N graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>--- graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,38 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: libavcodec/riscv/Makefile
>---- libavcodec/riscv/Makefile.orig
>-+++ libavcodec/riscv/Makefile
>-@@ -1,14 +1,14 @@
>- OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_init.o
>- RVV-OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_rvv.o
>--OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o \
>-- riscv/ac3dsp_rvb.o
>-+OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o
>-+RV-OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_rvb.o
>- OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_init.o
>- RVV-OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_rvv.o
>--OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o \
>-- riscv/audiodsp_rvf.o
>-+OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o
>-+RV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvf.o
>- RVV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvv.o
>--OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o \
>-- riscv/bswapdsp_rvb.o
>-+OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o
>-+RV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvb.o
>- RVV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvv.o
>- OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_init.o
>- RVV-OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_rvv.o
>-@@ -22,8 +22,8 @@ OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_init.o
>- RVV-OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_rvv.o
>- OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_init.o
>- RVV-OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_rvv.o
>--OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o \
>-- riscv/pixblockdsp_rvi.o
>-+OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o
>-+RV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvi.o
>- RVV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvv.o
>- OBJS-$(CONFIG_VORBIS_DECODER) += riscv/vorbisdsp_init.o
>- RVV-OBJS-$(CONFIG_VORBIS_DECODER) += riscv/vorbisdsp_rvv.o
>Index: graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>diff -N graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>--- graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,19 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: libavcodec/riscv/ac3dsp_init.c
>---- libavcodec/riscv/ac3dsp_init.c.orig
>-+++ libavcodec/riscv/ac3dsp_init.c
>-@@ -29,10 +29,12 @@ void ff_extract_exponents_rvb(uint8_t *exp, int32_t *c
>-
>- av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
>- {
>-+#if HAVE_RV
>- int flags = av_get_cpu_flags();
>-
>- if (flags & AV_CPU_FLAG_RVB_ADDR) {
>- if (flags & AV_CPU_FLAG_RVB_BASIC)
>- c->extract_exponents = ff_extract_exponents_rvb;
>- }
>-+
Tested working on my setup as well. If there's interest, I'm providing a
merged version with vulkan support from a previous submission a while
back. I've been running and testing it for the last few days on my
-current/amd64 box. With AV1 support now available it would be nice to
provide the supported devices the performance improvement when possible.
Index: Makefile
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/Makefile,v
retrieving revision 1.246
diff -u -p -u -p -r1.246 Makefile
--- Makefile 24 May 2025 00:26:53 -0000 1.246
+++ Makefile 1 Sep 2025 02:45:41 -0000
@@ -1,8 +1,7 @@
COMMENT= audio/video converter and streamer
-V= 6.1.2
+V= 6.1.3
DISTNAME= ffmpeg-${V}
-REVISION= 3
EPOCH= 1
CATEGORIES= graphics multimedia
SITES= https://ffmpeg.org/releases/
@@ -27,11 +26,11 @@ MAINTAINER= Brad Smith <brad@comstyle.co
PERMIT_PACKAGE= Yes
WANTLIB += SDL2 X11 Xext Xv aom ass bz2 c crypto dav1d fontconfig
-WANTLIB += freetype fribidi gsm harfbuzz iconv lzma m mp3lame opus
-WANTLIB += pthread sndio speex ssl theoradec theoraenc v4l2 va
-WANTLIB += va-drm va-x11 vidstab vorbis vorbisenc vpx webp webpmux
-WANTLIB += x264 x265 xcb xcb-shape xcb-shm xcb-xfixes xml2 xvidcore
-WANTLIB += z zimg
+WANTLIB += freetype fribidi glslang gsm harfbuzz iconv lzma m mp3lame
+WANTLIB += opus pthread sndio speex ssl theoradec theoraenc v4l2 va
+WANTLIB += va-drm va-x11 vidstab vorbis vorbisenc vpx vulkan webp
+WANTLIB += webpmux x264 x265 xcb xcb-shape xcb-shm xcb-xfixes xml2
+WANTLIB += xvidcore z zimg
COMPILER= base-clang ports-gcc
COMPILER_LANGS= c
@@ -39,8 +38,9 @@ COMPILER_LANGS= c
DEBUG_PACKAGES= ${BUILD_PACKAGES}
BUILD_DEPENDS= audio/ladspa \
- textproc/texi2html \
- multimedia/frei0r-plugins
+ graphics/vulkan-headers \
+ multimedia/frei0r-plugins \
+ textproc/texi2html
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= devel/nasm
.endif
@@ -55,7 +55,9 @@ LIB_DEPENDS= archivers/bzip2 \
devel/fribidi \
devel/harfbuzz \
devel/sdl2 \
+ graphics/glslang \
graphics/libwebp \
+ graphics/vulkan-loader \
graphics/zimg \
multimedia/aom \
multimedia/dav1d \
@@ -79,7 +81,7 @@ LIBavdevice_EXTRALIBS=-L${LOCALBASE}/lib
LIBavdevice_EXTRALIBS+=-lxcb-shape -lxcb-shm -lxcb-xfixes -lxcb -lsndio
-lv4l2 -lm
LIBavfilter_EXTRALIBS=-L${LOCALBASE}/lib -L${X11BASE}/lib -lass
-lfontconfig
-LIBavfilter_EXTRALIBS+=-lfreetype -lfribidi -lharfbuzz -lvidstab
+LIBavfilter_EXTRALIBS+=-lfreetype -lfribidi -lglslang -lharfbuzz
-lvidstab
LIBavfilter_EXTRALIBS+=-lm -lz -lzimg -lva -pthread
LIBavformat_EXTRALIBS=-L${LOCALBASE}/lib -lbz2 -lxml2 -lssl -lcrypto
-lm -lz
@@ -111,7 +113,6 @@ CONFIGURE_ARGS+=--enable-shared \
--disable-stripping \
--disable-indev=jack \
--disable-outdev=sdl2 \
- --disable-vulkan \
--enable-fontconfig \
--enable-frei0r \
--enable-gpl \
@@ -122,6 +123,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-libfontconfig \
--enable-libfreetype \
--enable-libfribidi \
+ --enable-libglslang \
--enable-libgsm \
--enable-libharfbuzz \
--enable-libmp3lame \
@@ -129,6 +131,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-libspeex \
--enable-libtheora \
--enable-libv4l2 \
+ --enable-libvidstab \
--enable-libvorbis \
--enable-libvpx \
--enable-libwebp \
@@ -140,6 +143,7 @@ CONFIGURE_ARGS+=--enable-shared \
--enable-nonfree \
--enable-openssl \
--enable-libvidstab \
+ --enable-vulkan \
--extra-cflags="-I${LOCALBASE}/include -I${X11BASE}/include" \
--extra-libs="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
--extra-ldsoflags="${LDLIBFLAGS}" \
Index: distinfo
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/distinfo,v
retrieving revision 1.68
diff -u -p -u -p -r1.68 distinfo
--- distinfo 24 Nov 2024 08:50:45 -0000 1.68
+++ distinfo 1 Sep 2025 02:45:41 -0000
@@ -1,2 +1,2 @@
-SHA256 (ffmpeg-6.1.2.tar.xz) =
O2JGSXJezcVlyQPKZkPUHzO9SSOZIuRcmxRCxj3KTjg=
-SIZE (ffmpeg-6.1.2.tar.xz) = 10466152
+SHA256 (ffmpeg-6.1.3.tar.xz) =
vF8eSk0oOmSSNUaE7hEkEpxSKTvPxqkWkZNTn77ONIc=
+SIZE (ffmpeg-6.1.3.tar.xz) = 10473704
cvs server: Diffing patches
cvs server: cannot find patches/patch-Makefile
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/graphics/ffmpeg/patches/patch-configure,v
retrieving revision 1.75
diff -u -p -u -p -r1.75 patch-configure
--- patches/patch-configure 3 Dec 2024 12:50:29 -0000 1.75
+++ patches/patch-configure 1 Sep 2025 02:45:41 -0000
@@ -3,26 +3,16 @@
- riscv: test for assembler support
b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
- lsws/ppc/yuv2rgb_altivec: Fix build in non-VSX environments with
Clang
-
- Fix broken libatomic test
+- Fix libglslang support detection, as our libglslang doesn't provide
+ some deprecated .so stubs (HSLS, OGLCompiler, MachineIndependent,
+ OSDependent, SPIRV, GenericCodeGen), and remove unneeded libs
+
Index: configure
--- configure.orig
+++ configure
-@@ -2146,10 +2146,12 @@ ARCH_EXT_LIST_PPC="
- ldbrx
- power8
- ppc4xx
-+ vec_xl
- vsx
- "
-
- ARCH_EXT_LIST_RISCV="
-+ rv
- rvv
- "
-
-@@ -2296,6 +2298,7 @@ SYSTEM_FUNCS="
+@@ -2300,6 +2300,7 @@ SYSTEM_FUNCS="
clock_gettime
closesocket
CommandLineToArgvW
@@ -30,19 +20,7 @@ Index: configure
fcntl
getaddrinfo
getauxval
-@@ -2674,9 +2677,11 @@ altivec_deps="ppc"
- dcbzl_deps="ppc"
- ldbrx_deps="ppc"
- ppc4xx_deps="ppc"
-+vec_xl_deps="altivec"
- vsx_deps="altivec"
- power8_deps="vsx"
-
-+rv_deps="riscv"
- rvv_deps="riscv"
-
- loongson2_deps="mips"
-@@ -5598,7 +5603,6 @@ case $target_os in
+@@ -5607,7 +5608,6 @@ case $target_os in
enable section_data_rel_ro
striptype=""
SHFLAGS='-shared'
@@ -50,31 +28,16 @@ Index: configure
SLIB_INSTALL_LINKS=
oss_indev_extralibs="-lossaudio"
oss_outdev_extralibs="-lossaudio"
-@@ -5959,7 +5963,7 @@ set_default libdir
- set_default $PATHS_LIST
- set_default nm
-
--disabled optimizations || enabled ossfuzz || check_cflags
-fomit-frame-pointer
-+enabled x86_32 && check_cflags -fomit-frame-pointer
-
- enable_weak_pic() {
- disabled pic && return
-@@ -6215,8 +6219,14 @@ elif enabled ppc; then
+@@ -6224,7 +6224,7 @@ elif enabled ppc; then
check_cpp_condition power8 "altivec.h" "defined(_ARCH_PWR8)"
fi
+- if enabled altivec; then
+ if enabled altivec && disabled vsx; then
-+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
-+ vector unsigned char y0 = vec_xl(0,
y1i);"
-+ fi
-+
- elif enabled riscv; then
-
-+ enabled rv && check_inline_asm rv '".option arch, +zbb\nrev8 t0,
t1"'
- enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli
zero, 0, e8, m1, ta, ma"'
-
- elif enabled x86; then
-@@ -6417,6 +6427,7 @@ check_func_headers mach/mach_time.h
mach_absolute_time
+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
+ vector unsigned char y0 = vec_xl(0,
y1i);"
+ fi
+@@ -6432,6 +6432,7 @@ check_func_headers mach/mach_time.h
mach_absolute_time
check_func_headers stdlib.h getenv
check_func_headers sys/stat.h lstat
check_func_headers sys/auxv.h getauxval
@@ -82,7 +45,7 @@ Index: configure
check_func_headers sys/sysctl.h sysctlbyname
check_func_headers windows.h GetModuleHandle
-@@ -6483,7 +6494,7 @@ check_headers asm/types.h
+@@ -6498,7 +6499,7 @@ check_headers asm/types.h
#
# some configurations also require linking to libatomic, so try
# both with -latomic and without
@@ -91,11 +54,17 @@ Index: configure
check_builtin stdatomic stdatomic.h
\
"atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo,
0); foo += bar" \
$LATOMIC && eval stdatomic_extralibs="\$LATOMIC" && break
-@@ -7748,6 +7759,7 @@ if enabled ppc; then
- echo "POWER8 enabled ${power8-no}"
- echo "PPC 4xx optimizations ${ppc4xx-no}"
- echo "dcbzl available ${dcbzl-no}"
-+ echo "vec_xl available ${vec_xl-no}"
- fi
- if enabled loongarch; then
- echo "LSX enabled ${lsx-no}"
+@@ -6730,11 +6731,9 @@ enabled libfreetype && require_pkg_config
libfre
+ enabled libfribidi && require_pkg_config libfribidi fribidi
fribidi.h fribidi_version_info
+ enabled libharfbuzz && require_pkg_config libharfbuzz harfbuzz
hb.h hb_buffer_create
+ enabled libglslang && { check_lib spirv_compiler
glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lMachineIndependent
-lOSDependent -lHLSL -lOGLCompiler -lGenericCodeGen \
+- -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt
-lSPIRV-Tools -lpthread -lstdc++ -lm ||
++ -lglslang -lpthread -lstdc++ -lm ||
+ require spirv_compiler
glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lOSDependent -lHLSL
-lOGLCompiler \
+- -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt
-lSPIRV-Tools -lpthread -lstdc++ -lm; }
++ -lglslang -lpthread -lstdc++ -lm; }
+ enabled libgme && { check_pkg_config libgme libgme
gme/gme.h gme_new_emu ||
+ require libgme gme/gme.h gme_new_emu
-lgme -lstdc++; }
+ enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
On Sat, Aug 30, 2025 at 04:46:06PM +0200, Kirill A. Korinsky wrote:
>On Sat, 23 Aug 2025 00:53:42 +0200,
>Kirill A. Korinsky <kirill@korins.ky> wrote:
>>
>> Brad,
>>
>> I'd like to update graphics/ffmpeg to 6.1.3.
>>
>> It was tested on -current/amd64 and -current/arm64, no regression.
>>
>> Also, riscv and yuv2rgb_altivec related patched is included into this
>> release.
>>
>
>My bulk build on amd64 is finished. Here updated diff which includes
>increase used version of ffmpeg in x11/mplayer.
>
>It ends as:
>
>Elapsed time=2 days 18:21:28
>I=11935 B=43 Q=0 T=240 F=0 !=104
>L=x11/eterm
>E=math/wxMaxima editors/abiword editors/le games/openmw games/scorched3d games/zelda3-data graphics/enblend-enfuse lang/apl x11/eterm,kanji www/iridium audio/xmms2 databases/mongodb/44! x11/qt6/qtwebengine! x11/ogre games/xye lang/v multimedia/sfml games/zelda3-rom
>
>almost all errors related do libc++, with exception of math/wxMaxima which
>probably fixed by not commited yet updated.
>
>Ok?
>
>Index: x11/mplayer/Makefile
>===================================================================
>RCS file: /home/cvs/ports/x11/mplayer/Makefile,v
>diff -u -p -r1.334 Makefile
>--- x11/mplayer/Makefile 19 Feb 2025 05:43:13 -0000 1.334
>+++ x11/mplayer/Makefile 28 Aug 2025 14:18:00 -0000
>@@ -1,9 +1,9 @@
> COMMENT= movie player supporting many formats
>
> V= 20240803
>-FFMPEG_V= 6.1.2
>+FFMPEG_V= 6.1.3
> DISTNAME= mplayer-${V}
>-REVISION= 2
>+REVISION= 3
> CATEGORIES= x11 multimedia
> SITES= https://comstyle.com/source/
> EXTRACT_SUFX= .tar.xz
>Index: graphics/ffmpeg/Makefile
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/Makefile,v
>diff -u -p -r1.246 Makefile
>--- graphics/ffmpeg/Makefile 24 May 2025 00:26:53 -0000 1.246
>+++ graphics/ffmpeg/Makefile 28 Aug 2025 14:20:03 -0000
>@@ -1,8 +1,8 @@
> COMMENT= audio/video converter and streamer
>
>-V= 6.1.2
>+# keep it synced with x11/mplayer
>+V= 6.1.3
> DISTNAME= ffmpeg-${V}
>-REVISION= 3
> EPOCH= 1
> CATEGORIES= graphics multimedia
> SITES= https://ffmpeg.org/releases/
>Index: graphics/ffmpeg/distinfo
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/distinfo,v
>diff -u -p -r1.68 distinfo
>--- graphics/ffmpeg/distinfo 24 Nov 2024 08:50:45 -0000 1.68
>+++ graphics/ffmpeg/distinfo 23 Aug 2025 09:56:12 -0000
>@@ -1,2 +1,2 @@
>-SHA256 (ffmpeg-6.1.2.tar.xz) = O2JGSXJezcVlyQPKZkPUHzO9SSOZIuRcmxRCxj3KTjg=
>-SIZE (ffmpeg-6.1.2.tar.xz) = 10466152
>+SHA256 (ffmpeg-6.1.3.tar.xz) = vF8eSk0oOmSSNUaE7hEkEpxSKTvPxqkWkZNTn77ONIc=
>+SIZE (ffmpeg-6.1.3.tar.xz) = 10473704
>Index: graphics/ffmpeg/patches/patch-Makefile
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-Makefile
>diff -N graphics/ffmpeg/patches/patch-Makefile
>--- graphics/ffmpeg/patches/patch-Makefile 3 Dec 2024 12:50:29 -0000 1.10
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,20 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: Makefile
>---- Makefile.orig
>-+++ Makefile
>-@@ -93,10 +93,10 @@ ffbuild/.config: $(CONFIGURABLE_COMPONENTS)
>- SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \
>- HEADERS ARCH_HEADERS BUILT_HEADERS SKIPHEADERS \
>- ARMV5TE-OBJS ARMV6-OBJS ARMV8-OBJS VFP-OBJS NEON-OBJS \
>-- ALTIVEC-OBJS VSX-OBJS RVV-OBJS MMX-OBJS X86ASM-OBJS \
>-+ ALTIVEC-OBJS VSX-OBJS MMX-OBJS X86ASM-OBJS \
>- MIPSFPU-OBJS MIPSDSPR2-OBJS MIPSDSP-OBJS MSA-OBJS \
>-- MMI-OBJS LSX-OBJS LASX-OBJS OBJS SLIBOBJS SHLIBOBJS \
>-- STLIBOBJS HOSTOBJS TESTOBJS
>-+ MMI-OBJS LSX-OBJS LASX-OBJS RV-OBJS RVV-OBJS \
>-+ OBJS SLIBOBJS SHLIBOBJS STLIBOBJS HOSTOBJS TESTOBJS
>-
>- define RESET
>- $(1) :=
>Index: graphics/ffmpeg/patches/patch-configure
>===================================================================
>RCS file: /home/cvs/ports/graphics/ffmpeg/patches/patch-configure,v
>diff -u -p -r1.75 patch-configure
>--- graphics/ffmpeg/patches/patch-configure 3 Dec 2024 12:50:29 -0000 1.75
>+++ graphics/ffmpeg/patches/patch-configure 23 Aug 2025 09:56:12 -0000
>@@ -1,28 +1,12 @@
> - aarch64: Implement support for elf_aux_info(3) on FreeBSD and OpenBSD
> a3f79fd22a367207097c78e0a5d2bc213efe9f80
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-- lsws/ppc/yuv2rgb_altivec: Fix build in non-VSX environments with Clang
>
> - Fix broken libatomic test
>
> Index: configure
> --- configure.orig
> +++ configure
>-@@ -2146,10 +2146,12 @@ ARCH_EXT_LIST_PPC="
>- ldbrx
>- power8
>- ppc4xx
>-+ vec_xl
>- vsx
>- "
>-
>- ARCH_EXT_LIST_RISCV="
>-+ rv
>- rvv
>- "
>-
>-@@ -2296,6 +2298,7 @@ SYSTEM_FUNCS="
>+@@ -2300,6 +2300,7 @@ SYSTEM_FUNCS="
> clock_gettime
> closesocket
> CommandLineToArgvW
>@@ -30,19 +14,7 @@ Index: configure
> fcntl
> getaddrinfo
> getauxval
>-@@ -2674,9 +2677,11 @@ altivec_deps="ppc"
>- dcbzl_deps="ppc"
>- ldbrx_deps="ppc"
>- ppc4xx_deps="ppc"
>-+vec_xl_deps="altivec"
>- vsx_deps="altivec"
>- power8_deps="vsx"
>-
>-+rv_deps="riscv"
>- rvv_deps="riscv"
>-
>- loongson2_deps="mips"
>-@@ -5598,7 +5603,6 @@ case $target_os in
>+@@ -5607,7 +5608,6 @@ case $target_os in
> enable section_data_rel_ro
> striptype=""
> SHFLAGS='-shared'
>@@ -50,7 +22,7 @@ Index: configure
> SLIB_INSTALL_LINKS=
> oss_indev_extralibs="-lossaudio"
> oss_outdev_extralibs="-lossaudio"
>-@@ -5959,7 +5963,7 @@ set_default libdir
>+@@ -5968,7 +5968,7 @@ set_default libdir
> set_default $PATHS_LIST
> set_default nm
>
>@@ -59,22 +31,7 @@ Index: configure
>
> enable_weak_pic() {
> disabled pic && return
>-@@ -6215,8 +6219,14 @@ elif enabled ppc; then
>- check_cpp_condition power8 "altivec.h" "defined(_ARCH_PWR8)"
>- fi
>-
>-+ if enabled altivec && disabled vsx; then
>-+ check_cc vec_xl altivec.h "const unsigned char *y1i = { 0 };
>-+ vector unsigned char y0 = vec_xl(0, y1i);"
>-+ fi
>-+
>- elif enabled riscv; then
>-
>-+ enabled rv && check_inline_asm rv '".option arch, +zbb\nrev8 t0, t1"'
>- enabled rvv && check_inline_asm rvv '".option arch, +v\nvsetivli zero, 0, e8, m1, ta, ma"'
>-
>- elif enabled x86; then
>-@@ -6417,6 +6427,7 @@ check_func_headers mach/mach_time.h mach_absolute_time
>+@@ -6432,6 +6432,7 @@ check_func_headers mach/mach_time.h mach_absolute_time
> check_func_headers stdlib.h getenv
> check_func_headers sys/stat.h lstat
> check_func_headers sys/auxv.h getauxval
>@@ -82,7 +39,7 @@ Index: configure
> check_func_headers sys/sysctl.h sysctlbyname
>
> check_func_headers windows.h GetModuleHandle
>-@@ -6483,7 +6494,7 @@ check_headers asm/types.h
>+@@ -6498,7 +6499,7 @@ check_headers asm/types.h
> #
> # some configurations also require linking to libatomic, so try
> # both with -latomic and without
>@@ -91,11 +48,3 @@ Index: configure
> check_builtin stdatomic stdatomic.h \
> "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0); foo += bar" \
> $LATOMIC && eval stdatomic_extralibs="\$LATOMIC" && break
>-@@ -7748,6 +7759,7 @@ if enabled ppc; then
>- echo "POWER8 enabled ${power8-no}"
>- echo "PPC 4xx optimizations ${ppc4xx-no}"
>- echo "dcbzl available ${dcbzl-no}"
>-+ echo "vec_xl available ${vec_xl-no}"
>- fi
>- if enabled loongarch; then
>- echo "LSX enabled ${lsx-no}"
>Index: graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>diff -N graphics/ffmpeg/patches/patch-ffbuild_arch_mak
>--- graphics/ffmpeg/patches/patch-ffbuild_arch_mak 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,14 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: ffbuild/arch.mak
>---- ffbuild/arch.mak.orig
>-+++ ffbuild/arch.mak
>-@@ -15,6 +15,7 @@ OBJS-$(HAVE_LASX) += $(LASX-OBJS) $(LASX-OB
>- OBJS-$(HAVE_ALTIVEC) += $(ALTIVEC-OBJS) $(ALTIVEC-OBJS-yes)
>- OBJS-$(HAVE_VSX) += $(VSX-OBJS) $(VSX-OBJS-yes)
>-
>-+OBJS-$(HAVE_RV) += $(RV-OBJS) $(RV-OBJS-yes)
>- OBJS-$(HAVE_RVV) += $(RVV-OBJS) $(RVV-OBJS-yes)
>-
>- OBJS-$(HAVE_MMX) += $(MMX-OBJS) $(MMX-OBJS-yes)
>Index: graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>diff -N graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile
>--- graphics/ffmpeg/patches/patch-libavcodec_riscv_Makefile 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,38 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: libavcodec/riscv/Makefile
>---- libavcodec/riscv/Makefile.orig
>-+++ libavcodec/riscv/Makefile
>-@@ -1,14 +1,14 @@
>- OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_init.o
>- RVV-OBJS-$(CONFIG_AAC_DECODER) += riscv/aacpsdsp_rvv.o
>--OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o \
>-- riscv/ac3dsp_rvb.o
>-+OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_init.o
>-+RV-OBJS-$(CONFIG_AC3DSP) += riscv/ac3dsp_rvb.o
>- OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_init.o
>- RVV-OBJS-$(CONFIG_ALAC_DECODER) += riscv/alacdsp_rvv.o
>--OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o \
>-- riscv/audiodsp_rvf.o
>-+OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_init.o
>-+RV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvf.o
>- RVV-OBJS-$(CONFIG_AUDIODSP) += riscv/audiodsp_rvv.o
>--OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o \
>-- riscv/bswapdsp_rvb.o
>-+OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_init.o
>-+RV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvb.o
>- RVV-OBJS-$(CONFIG_BSWAPDSP) += riscv/bswapdsp_rvv.o
>- OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_init.o
>- RVV-OBJS-$(CONFIG_EXR_DECODER) += riscv/exrdsp_rvv.o
>-@@ -22,8 +22,8 @@ OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_init.o
>- RVV-OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_rvv.o
>- OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_init.o
>- RVV-OBJS-$(CONFIG_OPUS_DECODER) += riscv/opusdsp_rvv.o
>--OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o \
>-- riscv/pixblockdsp_rvi.o
>-+OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_init.o
>-+RV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvi.o
>- RVV-OBJS-$(CONFIG_PIXBLOCKDSP) += riscv/pixblockdsp_rvv.o
>- OBJS-$(CONFIG_VORBIS_DECODER) += riscv/vorbisdsp_init.o
>- RVV-OBJS-$(CONFIG_VORBIS_DECODER) += riscv/vorbisdsp_rvv.o
>Index: graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>===================================================================
>RCS file: graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>diff -N graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c
>--- graphics/ffmpeg/patches/patch-libavcodec_riscv_ac3dsp_init_c 3 Dec 2024 12:50:29 -0000 1.1
>+++ /dev/null 1 Jan 1970 00:00:00 -0000
>@@ -1,19 +0,0 @@
>-- riscv: test for assembler support
>- b3825bbe452c8e4f129fa90bba1fed0ee7b87d71
>-
>-Index: libavcodec/riscv/ac3dsp_init.c
>---- libavcodec/riscv/ac3dsp_init.c.orig
>-+++ libavcodec/riscv/ac3dsp_init.c
>-@@ -29,10 +29,12 @@ void ff_extract_exponents_rvb(uint8_t *exp, int32_t *c
>-
>- av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
>- {
>-+#if HAVE_RV
>- int flags = av_get_cpu_flags();
>-
>- if (flags & AV_CPU_FLAG_RVB_ADDR) {
>- if (flags & AV_CPU_FLAG_RVB_BASIC)
>- c->extract_exponents = ff_extract_exponents_rvb;
>- }
>-+
Re: [update] comms/amtterm
On Sun, Aug 31, 2025 at 10:53:09PM +0200, Jeremie Courreges-Anglas wrote:
> Here's an update to the latest amtterm-1.7 release from 2022. It
> drops most of the SSL/auth etc diffs backported from
> https://github.com/Openwsman/wsmancli/
>
> There's also a new tool called amtider (for floppy or CDROM
> redirection) that might come in handy, it needed a few patches but I
> haven't tested it. I've put this in the -term subpackage because it
> doesn't have any dep, but I can move it back to -main.
>
> I doubt this will change anything to the disconnections I get when
> booting my T14 Gen 3 - will test that later.
>
> Test reports & oks welcome.
still works with x250 ThinkPad (Intel ME v10.0.55.3000)
noticed the following while building:
redir.c:415:35: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
415 | r->seqno & 0xff, (r->seqno >> 8) && 0xff,
> Here's an update to the latest amtterm-1.7 release from 2022. It
> drops most of the SSL/auth etc diffs backported from
> https://github.com/Openwsman/wsmancli/
>
> There's also a new tool called amtider (for floppy or CDROM
> redirection) that might come in handy, it needed a few patches but I
> haven't tested it. I've put this in the -term subpackage because it
> doesn't have any dep, but I can move it back to -main.
>
> I doubt this will change anything to the disconnections I get when
> booting my T14 Gen 3 - will test that later.
>
> Test reports & oks welcome.
still works with x250 ThinkPad (Intel ME v10.0.55.3000)
noticed the following while building:
redir.c:415:35: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
415 | r->seqno & 0xff, (r->seqno >> 8) && 0xff,
Re: Virtual hosting wih TLS on relayd
> It is technically possible to do this via SNI, but relayd doesn't implement that.
Right, thanks. I'll give one of those a try. The guide I'm following
recommends relayd, but of course I have a niche use case.
(I read the reply on marc.info. my bad, I forgot to join the list.)
Right, thanks. I'll give one of those a try. The guide I'm following
recommends relayd, but of course I have a niche use case.
(I read the reply on marc.info. my bad, I forgot to join the list.)
Re: Virtual hosting wih TLS on relayd
OP didn't specify multiple certs or not. I think the solution is within grasp if OP tries it out.
> On Aug 31, 2025, at 6:59 PM, Stuart Henderson <stu@spacehopper.org> wrote:
>
> On 2025/08/31 18:23, Brian Brombacher wrote:
>> I've done this with let's encrypt certificates. You specify multiple names in acme-client.conf and have them all go through the same relayd.
>
> That's a single cert though. OP wanted separate certs. It's possoble to
> do that with pretty much any other current L7 proxy, just not with relayd.
>
>
>>>> On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
>>>
>>> On 2025-08-31, ashley <ashley@mundoh.net> wrote:
>>>> So, in summary, is it possible for relayd to know what the correct
>>>> certificate to use is, before receiving the HTTP request from the
>>>> client? Is this possible to achieve with SNI? I haven't found any
>>>> mentions of SNI in the relayd man page, so I can only assume it
>>>> doesn't support SNI?
>>>
>>> It is technically possible to do this via SNI, but relayd doesn't implement that.
>>>
>>> Personally I recommend just using relayd for lower level (managing PF
>>> redirects etc, and maybe basic L4 proxying) but using something other
>>> than relayd (haproxy, nginx or others) for your L7 proxies.
>>>
>>> --
>>> Please keep replies on the mailing list.
>>>
>>
> On Aug 31, 2025, at 6:59 PM, Stuart Henderson <stu@spacehopper.org> wrote:
>
> On 2025/08/31 18:23, Brian Brombacher wrote:
>> I've done this with let's encrypt certificates. You specify multiple names in acme-client.conf and have them all go through the same relayd.
>
> That's a single cert though. OP wanted separate certs. It's possoble to
> do that with pretty much any other current L7 proxy, just not with relayd.
>
>
>>>> On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
>>>
>>> On 2025-08-31, ashley <ashley@mundoh.net> wrote:
>>>> So, in summary, is it possible for relayd to know what the correct
>>>> certificate to use is, before receiving the HTTP request from the
>>>> client? Is this possible to achieve with SNI? I haven't found any
>>>> mentions of SNI in the relayd man page, so I can only assume it
>>>> doesn't support SNI?
>>>
>>> It is technically possible to do this via SNI, but relayd doesn't implement that.
>>>
>>> Personally I recommend just using relayd for lower level (managing PF
>>> redirects etc, and maybe basic L4 proxying) but using something other
>>> than relayd (haproxy, nginx or others) for your L7 proxies.
>>>
>>> --
>>> Please keep replies on the mailing list.
>>>
>>
Re: Virtual hosting wih TLS on relayd
On 2025/08/31 18:23, Brian Brombacher wrote:
> I've done this with let's encrypt certificates. You specify multiple names in acme-client.conf and have them all go through the same relayd.
That's a single cert though. OP wanted separate certs. It's possoble to
do that with pretty much any other current L7 proxy, just not with relayd.
> > On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
> >
> > On 2025-08-31, ashley <ashley@mundoh.net> wrote:
> >> So, in summary, is it possible for relayd to know what the correct
> >> certificate to use is, before receiving the HTTP request from the
> >> client? Is this possible to achieve with SNI? I haven't found any
> >> mentions of SNI in the relayd man page, so I can only assume it
> >> doesn't support SNI?
> >
> > It is technically possible to do this via SNI, but relayd doesn't implement that.
> >
> > Personally I recommend just using relayd for lower level (managing PF
> > redirects etc, and maybe basic L4 proxying) but using something other
> > than relayd (haproxy, nginx or others) for your L7 proxies.
> >
> > --
> > Please keep replies on the mailing list.
> >
>
> I've done this with let's encrypt certificates. You specify multiple names in acme-client.conf and have them all go through the same relayd.
That's a single cert though. OP wanted separate certs. It's possoble to
do that with pretty much any other current L7 proxy, just not with relayd.
> > On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
> >
> > On 2025-08-31, ashley <ashley@mundoh.net> wrote:
> >> So, in summary, is it possible for relayd to know what the correct
> >> certificate to use is, before receiving the HTTP request from the
> >> client? Is this possible to achieve with SNI? I haven't found any
> >> mentions of SNI in the relayd man page, so I can only assume it
> >> doesn't support SNI?
> >
> > It is technically possible to do this via SNI, but relayd doesn't implement that.
> >
> > Personally I recommend just using relayd for lower level (managing PF
> > redirects etc, and maybe basic L4 proxying) but using something other
> > than relayd (haproxy, nginx or others) for your L7 proxies.
> >
> > --
> > Please keep replies on the mailing list.
> >
>
Re: Virtual hosting wih TLS on relayd
I've done this with let's encrypt certificates. You specify multiple names in acme-client.conf and have them all go through the same relayd.
> On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
>
> On 2025-08-31, ashley <ashley@mundoh.net> wrote:
>> So, in summary, is it possible for relayd to know what the correct
>> certificate to use is, before receiving the HTTP request from the
>> client? Is this possible to achieve with SNI? I haven't found any
>> mentions of SNI in the relayd man page, so I can only assume it
>> doesn't support SNI?
>
> It is technically possible to do this via SNI, but relayd doesn't implement that.
>
> Personally I recommend just using relayd for lower level (managing PF
> redirects etc, and maybe basic L4 proxying) but using something other
> than relayd (haproxy, nginx or others) for your L7 proxies.
>
> --
> Please keep replies on the mailing list.
>
> On Aug 31, 2025, at 6:02 PM, Stuart Henderson <stu.lists@spacehopper.org> wrote:
>
> On 2025-08-31, ashley <ashley@mundoh.net> wrote:
>> So, in summary, is it possible for relayd to know what the correct
>> certificate to use is, before receiving the HTTP request from the
>> client? Is this possible to achieve with SNI? I haven't found any
>> mentions of SNI in the relayd man page, so I can only assume it
>> doesn't support SNI?
>
> It is technically possible to do this via SNI, but relayd doesn't implement that.
>
> Personally I recommend just using relayd for lower level (managing PF
> redirects etc, and maybe basic L4 proxying) but using something other
> than relayd (haproxy, nginx or others) for your L7 proxies.
>
> --
> Please keep replies on the mailing list.
>
[update] www/yt-dlp 2025.08.22 -> 2025.08.27
Found a small bug fix update for the usual suspect. Cheers.
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/yt-dlp/Makefile,v
retrieving revision 1.64
diff -u -p -u -p -r1.64 Makefile
--- Makefile 25 Aug 2025 03:37:14 -0000 1.64
+++ Makefile 30 Aug 2025 03:02:26 -0000
@@ -1,6 +1,6 @@
COMMENT = CLI program to download videos from YouTube and other sites
-VERSION = 2025.08.22
+VERSION = 2025.08.27
MODPY_DISTV = ${VERSION:S/.0/./g}
DISTNAME = yt-dlp-${VERSION}
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/yt-dlp/distinfo,v
retrieving revision 1.56
diff -u -p -u -p -r1.56 distinfo
--- distinfo 25 Aug 2025 03:37:14 -0000 1.56
+++ distinfo 30 Aug 2025 03:02:26 -0000
@@ -1,2 +1,2 @@
-SHA256 (yt-dlp-2025.08.22.tar.gz) = oTh784OgoppKsJwncz8R5vA9uE6uNTddn09ty0IGaPc=
-SIZE (yt-dlp-2025.08.22.tar.gz) = 6018476
+SHA256 (yt-dlp-2025.08.27.tar.gz) = owRCkC+t+XKAuRwkxMIZHIuhdRW4pd2DXvyZHAO1u3s=
+SIZE (yt-dlp-2025.08.27.tar.gz) = 6018553
--
All desire is the desire to be desired by the subject presumed to know.
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/yt-dlp/Makefile,v
retrieving revision 1.64
diff -u -p -u -p -r1.64 Makefile
--- Makefile 25 Aug 2025 03:37:14 -0000 1.64
+++ Makefile 30 Aug 2025 03:02:26 -0000
@@ -1,6 +1,6 @@
COMMENT = CLI program to download videos from YouTube and other sites
-VERSION = 2025.08.22
+VERSION = 2025.08.27
MODPY_DISTV = ${VERSION:S/.0/./g}
DISTNAME = yt-dlp-${VERSION}
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/yt-dlp/distinfo,v
retrieving revision 1.56
diff -u -p -u -p -r1.56 distinfo
--- distinfo 25 Aug 2025 03:37:14 -0000 1.56
+++ distinfo 30 Aug 2025 03:02:26 -0000
@@ -1,2 +1,2 @@
-SHA256 (yt-dlp-2025.08.22.tar.gz) = oTh784OgoppKsJwncz8R5vA9uE6uNTddn09ty0IGaPc=
-SIZE (yt-dlp-2025.08.22.tar.gz) = 6018476
+SHA256 (yt-dlp-2025.08.27.tar.gz) = owRCkC+t+XKAuRwkxMIZHIuhdRW4pd2DXvyZHAO1u3s=
+SIZE (yt-dlp-2025.08.27.tar.gz) = 6018553
--
All desire is the desire to be desired by the subject presumed to know.
Re: Virtual hosting wih TLS on relayd
On 2025-08-31, ashley <ashley@mundoh.net> wrote:
> So, in summary, is it possible for relayd to know what the correct
> certificate to use is, before receiving the HTTP request from the
> client? Is this possible to achieve with SNI? I haven't found any
> mentions of SNI in the relayd man page, so I can only assume it
> doesn't support SNI?
It is technically possible to do this via SNI, but relayd doesn't implement that.
Personally I recommend just using relayd for lower level (managing PF
redirects etc, and maybe basic L4 proxying) but using something other
than relayd (haproxy, nginx or others) for your L7 proxies.
--
Please keep replies on the mailing list.
> So, in summary, is it possible for relayd to know what the correct
> certificate to use is, before receiving the HTTP request from the
> client? Is this possible to achieve with SNI? I haven't found any
> mentions of SNI in the relayd man page, so I can only assume it
> doesn't support SNI?
It is technically possible to do this via SNI, but relayd doesn't implement that.
Personally I recommend just using relayd for lower level (managing PF
redirects etc, and maybe basic L4 proxying) but using something other
than relayd (haproxy, nginx or others) for your L7 proxies.
--
Please keep replies on the mailing list.
[update] comms/amtterm
Here's an update to the latest amtterm-1.7 release from 2022. It
drops most of the SSL/auth etc diffs backported from
https://github.com/Openwsman/wsmancli/
There's also a new tool called amtider (for floppy or CDROM
redirection) that might come in handy, it needed a few patches but I
haven't tested it. I've put this in the -term subpackage because it
doesn't have any dep, but I can move it back to -main.
I doubt this will change anything to the disconnections I get when
booting my T14 Gen 3 - will test that later.
Test reports & oks welcome.
Index: Makefile
===================================================================
RCS file: /home/cvs/ports/comms/amtterm/Makefile,v
diff -u -p -r1.18 Makefile
--- Makefile 31 Aug 2025 12:01:04 -0000 1.18
+++ Makefile 31 Aug 2025 20:40:01 -0000
@@ -1,8 +1,7 @@
COMMENT-term= cli client for Intel AMT serial-over-lan
COMMENT-main= client and tools for Intel AMT serial-over-lan
-V= 1.6
-REVISION= 3
+V= 1.7
DISTNAME= amtterm-$V
PKGNAME-term= amtterm-cli-$V
MULTI_PACKAGES= -main -term
@@ -19,7 +18,7 @@ WANTLIB += atk-1.0 c cairo cairo-gobject
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gtk-3 harfbuzz intl pango-1.0
WANTLIB += pangocairo-1.0 ssl vte-2.91
-# https://git.kraxel.org/cgit/amtterm/
+# https://github.com/kraxel/amtterm/
SITES= https://www.kraxel.org/releases/amtterm/
LIB_DEPENDS-term=
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/comms/amtterm/distinfo,v
diff -u -p -r1.4 distinfo
--- distinfo 2 Nov 2020 16:10:23 -0000 1.4
+++ distinfo 31 Aug 2025 18:54:47 -0000
@@ -1,2 +1,2 @@
-SHA256 (amtterm-1.6.tar.gz) = EkLOpGeCeqHi6RtBhGIpygpbPz4JJgsN+deNyHUHVZA=
-SIZE (amtterm-1.6.tar.gz) = 40804
+SHA256 (amtterm-1.7.tar.gz) = jFi3azI3UE11G/NYj+8lEXJIoFaVI/DYber2ltFClNQ=
+SIZE (amtterm-1.7.tar.gz) = 54769
Index: patches/patch-GNUmakefile
===================================================================
RCS file: patches/patch-GNUmakefile
diff -N patches/patch-GNUmakefile
--- patches/patch-GNUmakefile 11 Mar 2022 18:26:24 -0000 1.2
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,42 +0,0 @@
-Add SSL/auth code
-https://github.com/Openwsman/wsmancli/issues/10#issuecomment-751253133
-
-Index: GNUmakefile
---- GNUmakefile.orig
-+++ GNUmakefile
-@@ -1,11 +1,24 @@
- # config
-+#USE_OPENSSL=1
-+#USE_GNUTLS=1
- srcdir = .
- VPATH = $(srcdir)
- -include Make.config
- include $(srcdir)/mk/Variables.mk
-
-+ifdef USE_OPENSSL
-+SSL_DEFS=-DUSE_OPENSSL
-+pkglst+=openssl
-+endif
-+
-+ifdef USE_GNUTLS
-+SSL_DEFS=-DUSE_GNUTLS
-+pkglst+=gnutls
-+endif
-+
- CFLAGS += -Wall -Wno-pointer-sign
- CFLAGS += -DVERSION='"$(VERSION)"'
-+CFLAGS += $(SSL_DEFS)
-
- TARGETS := amtterm
- DESKTOP := $(wildcard *.desktop)
-@@ -60,8 +73,8 @@ distclean: clean
-
- #################################################################
-
--amtterm: amtterm.o redir.o tcp.o
--gamt: gamt.o redir.o tcp.o parseconfig.o
-+amtterm: amtterm.o redir.o tcp.o auth.o ssl.o
-+gamt: gamt.o redir.o tcp.o parseconfig.o auth.o ssl.o
-
- #################################################################
-
Index: patches/patch-amtider_c
===================================================================
RCS file: patches/patch-amtider_c
diff -N patches/patch-amtider_c
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-amtider_c 31 Aug 2025 19:24:45 -0000
@@ -0,0 +1,93 @@
+Replace Linux-only signalfd code with portable sigaction(2).
+
+Index: amtider.c
+--- amtider.c.orig
++++ amtider.c
+@@ -29,7 +29,6 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <sys/ioctl.h>
+-#include <sys/signalfd.h>
+ #include <sys/mman.h>
+
+ #include "redir.h"
+@@ -63,29 +62,33 @@ static void state_ider(void *cb_data, enum redir_state
+ }
+ }
+
++static volatile sig_atomic_t got_signal;
++
++static void sighandler(int sig)
++{
++ got_signal = 1;
++}
++
+ static int redir_loop(struct redir *r)
+ {
+ struct timeval tv;
+ fd_set set;
+- sigset_t mask;
+- int max_fd = r->sock, sfd;
++ struct sigaction sa;
++ int max_fd = r->sock;
+ int interval = HEARTBEAT_INTERVAL * 4 / 1000;
+
+- sigemptyset(&mask);
+- sigaddset(&mask, SIGINT);
+- sigaddset(&mask, SIGQUIT);
+-
+- if (sigprocmask(SIG_BLOCK, &mask, NULL) == -1) {
+- perror("sigprocmask");
++ memset(&sa, 0, sizeof sa);
++ sigemptyset(&sa.sa_mask);
++ sa.sa_handler = sighandler;
++ if (sigaction(SIGINT, &sa, NULL) == -1) {
++ perror("sigaction(SIGINT)");
+ exit(1);
+ }
+- sfd = signalfd(-1, &mask, 0);
+- if (sfd < 0) {
+- perror("signalfd");
++ if (sigaction(SIGQUIT, &sa, NULL) == -1) {
++ perror("sigaction(SIGQUIT)");
+ exit(1);
+ }
+
+-
+ for(;;) {
+ if (r->state == REDIR_CLOSED ||
+ r->state == REDIR_ERROR)
+@@ -93,16 +96,16 @@ static int redir_loop(struct redir *r)
+
+ FD_ZERO(&set);
+ FD_SET(r->sock, &set);
+- if (sfd > 0) {
+- FD_SET(sfd, &set);
+- max_fd = sfd > r->sock? sfd : r->sock;
+- }
++ max_fd = r->sock;
+ tv.tv_sec = interval;
+ tv.tv_usec = 0;
+ switch (select(max_fd+1,&set,NULL,NULL,&tv)) {
+ case -1:
+- perror("select");
+- return -1;
++ if (got_signal) {
++ perror("select");
++ return -1;
++ }
++ break;
+ case 0:
+ fprintf(stderr,"select: timeout\n");
+ return -1;
+@@ -112,9 +115,7 @@ static int redir_loop(struct redir *r)
+ if (-1 == redir_data(r))
+ return -1;
+ }
+- if (FD_ISSET(sfd, &set)) {
+- close(sfd);
+- sfd = -1;
++ if (got_signal) {
+ if (-1 == redir_ider_stop(r))
+ return -1;
+ interval = 2;
Index: patches/patch-amtterm_c
===================================================================
RCS file: patches/patch-amtterm_c
diff -N patches/patch-amtterm_c
--- patches/patch-amtterm_c 11 Mar 2022 18:26:24 -0000 1.2
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,49 +0,0 @@
-Add SSL/auth code
-https://github.com/Openwsman/wsmancli/issues/10#issuecomment-751253133
-
-Index: amtterm.c
---- amtterm.c.orig
-+++ amtterm.c
-@@ -179,10 +179,18 @@ static void usage(FILE *fp)
- " -h print this text\n"
- " -v verbose (default)\n"
- " -q quiet\n"
-+ " -L use legacy authentication\n"
-+#if defined(USE_OPENSSL) || defined(USE_GNUTLS)
-+ " -C cacert enable SSL and use PEM cacert file\n"
-+
drops most of the SSL/auth etc diffs backported from
https://github.com/Openwsman/wsmancli/
There's also a new tool called amtider (for floppy or CDROM
redirection) that might come in handy, it needed a few patches but I
haven't tested it. I've put this in the -term subpackage because it
doesn't have any dep, but I can move it back to -main.
I doubt this will change anything to the disconnections I get when
booting my T14 Gen 3 - will test that later.
Test reports & oks welcome.
Index: Makefile
===================================================================
RCS file: /home/cvs/ports/comms/amtterm/Makefile,v
diff -u -p -r1.18 Makefile
--- Makefile 31 Aug 2025 12:01:04 -0000 1.18
+++ Makefile 31 Aug 2025 20:40:01 -0000
@@ -1,8 +1,7 @@
COMMENT-term= cli client for Intel AMT serial-over-lan
COMMENT-main= client and tools for Intel AMT serial-over-lan
-V= 1.6
-REVISION= 3
+V= 1.7
DISTNAME= amtterm-$V
PKGNAME-term= amtterm-cli-$V
MULTI_PACKAGES= -main -term
@@ -19,7 +18,7 @@ WANTLIB += atk-1.0 c cairo cairo-gobject
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gtk-3 harfbuzz intl pango-1.0
WANTLIB += pangocairo-1.0 ssl vte-2.91
-# https://git.kraxel.org/cgit/amtterm/
+# https://github.com/kraxel/amtterm/
SITES= https://www.kraxel.org/releases/amtterm/
LIB_DEPENDS-term=
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/comms/amtterm/distinfo,v
diff -u -p -r1.4 distinfo
--- distinfo 2 Nov 2020 16:10:23 -0000 1.4
+++ distinfo 31 Aug 2025 18:54:47 -0000
@@ -1,2 +1,2 @@
-SHA256 (amtterm-1.6.tar.gz) = EkLOpGeCeqHi6RtBhGIpygpbPz4JJgsN+deNyHUHVZA=
-SIZE (amtterm-1.6.tar.gz) = 40804
+SHA256 (amtterm-1.7.tar.gz) = jFi3azI3UE11G/NYj+8lEXJIoFaVI/DYber2ltFClNQ=
+SIZE (amtterm-1.7.tar.gz) = 54769
Index: patches/patch-GNUmakefile
===================================================================
RCS file: patches/patch-GNUmakefile
diff -N patches/patch-GNUmakefile
--- patches/patch-GNUmakefile 11 Mar 2022 18:26:24 -0000 1.2
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,42 +0,0 @@
-Add SSL/auth code
-https://github.com/Openwsman/wsmancli/issues/10#issuecomment-751253133
-
-Index: GNUmakefile
---- GNUmakefile.orig
-+++ GNUmakefile
-@@ -1,11 +1,24 @@
- # config
-+#USE_OPENSSL=1
-+#USE_GNUTLS=1
- srcdir = .
- VPATH = $(srcdir)
- -include Make.config
- include $(srcdir)/mk/Variables.mk
-
-+ifdef USE_OPENSSL
-+SSL_DEFS=-DUSE_OPENSSL
-+pkglst+=openssl
-+endif
-+
-+ifdef USE_GNUTLS
-+SSL_DEFS=-DUSE_GNUTLS
-+pkglst+=gnutls
-+endif
-+
- CFLAGS += -Wall -Wno-pointer-sign
- CFLAGS += -DVERSION='"$(VERSION)"'
-+CFLAGS += $(SSL_DEFS)
-
- TARGETS := amtterm
- DESKTOP := $(wildcard *.desktop)
-@@ -60,8 +73,8 @@ distclean: clean
-
- #################################################################
-
--amtterm: amtterm.o redir.o tcp.o
--gamt: gamt.o redir.o tcp.o parseconfig.o
-+amtterm: amtterm.o redir.o tcp.o auth.o ssl.o
-+gamt: gamt.o redir.o tcp.o parseconfig.o auth.o ssl.o
-
- #################################################################
-
Index: patches/patch-amtider_c
===================================================================
RCS file: patches/patch-amtider_c
diff -N patches/patch-amtider_c
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-amtider_c 31 Aug 2025 19:24:45 -0000
@@ -0,0 +1,93 @@
+Replace Linux-only signalfd code with portable sigaction(2).
+
+Index: amtider.c
+--- amtider.c.orig
++++ amtider.c
+@@ -29,7 +29,6 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <sys/ioctl.h>
+-#include <sys/signalfd.h>
+ #include <sys/mman.h>
+
+ #include "redir.h"
+@@ -63,29 +62,33 @@ static void state_ider(void *cb_data, enum redir_state
+ }
+ }
+
++static volatile sig_atomic_t got_signal;
++
++static void sighandler(int sig)
++{
++ got_signal = 1;
++}
++
+ static int redir_loop(struct redir *r)
+ {
+ struct timeval tv;
+ fd_set set;
+- sigset_t mask;
+- int max_fd = r->sock, sfd;
++ struct sigaction sa;
++ int max_fd = r->sock;
+ int interval = HEARTBEAT_INTERVAL * 4 / 1000;
+
+- sigemptyset(&mask);
+- sigaddset(&mask, SIGINT);
+- sigaddset(&mask, SIGQUIT);
+-
+- if (sigprocmask(SIG_BLOCK, &mask, NULL) == -1) {
+- perror("sigprocmask");
++ memset(&sa, 0, sizeof sa);
++ sigemptyset(&sa.sa_mask);
++ sa.sa_handler = sighandler;
++ if (sigaction(SIGINT, &sa, NULL) == -1) {
++ perror("sigaction(SIGINT)");
+ exit(1);
+ }
+- sfd = signalfd(-1, &mask, 0);
+- if (sfd < 0) {
+- perror("signalfd");
++ if (sigaction(SIGQUIT, &sa, NULL) == -1) {
++ perror("sigaction(SIGQUIT)");
+ exit(1);
+ }
+
+-
+ for(;;) {
+ if (r->state == REDIR_CLOSED ||
+ r->state == REDIR_ERROR)
+@@ -93,16 +96,16 @@ static int redir_loop(struct redir *r)
+
+ FD_ZERO(&set);
+ FD_SET(r->sock, &set);
+- if (sfd > 0) {
+- FD_SET(sfd, &set);
+- max_fd = sfd > r->sock? sfd : r->sock;
+- }
++ max_fd = r->sock;
+ tv.tv_sec = interval;
+ tv.tv_usec = 0;
+ switch (select(max_fd+1,&set,NULL,NULL,&tv)) {
+ case -1:
+- perror("select");
+- return -1;
++ if (got_signal) {
++ perror("select");
++ return -1;
++ }
++ break;
+ case 0:
+ fprintf(stderr,"select: timeout\n");
+ return -1;
+@@ -112,9 +115,7 @@ static int redir_loop(struct redir *r)
+ if (-1 == redir_data(r))
+ return -1;
+ }
+- if (FD_ISSET(sfd, &set)) {
+- close(sfd);
+- sfd = -1;
++ if (got_signal) {
+ if (-1 == redir_ider_stop(r))
+ return -1;
+ interval = 2;
Index: patches/patch-amtterm_c
===================================================================
RCS file: patches/patch-amtterm_c
diff -N patches/patch-amtterm_c
--- patches/patch-amtterm_c 11 Mar 2022 18:26:24 -0000 1.2
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,49 +0,0 @@
-Add SSL/auth code
-https://github.com/Openwsman/wsmancli/issues/10#issuecomment-751253133
-
-Index: amtterm.c
---- amtterm.c.orig
-+++ amtterm.c
-@@ -179,10 +179,18 @@ static void usage(FILE *fp)
- " -h print this text\n"
- " -v verbose (default)\n"
- " -q quiet\n"
-+ " -L use legacy authentication\n"
-+#if defined(USE_OPENSSL) || defined(USE_GNUTLS)
-+ " -C cacert enable SSL and use PEM cacert file\n"
-+
aarch64 bulk build report
bulk build on arm64.ports.openbsd.org
started on Fri Aug 29 00:22:05 MDT 2025
finished at Sun Aug 31 13:45:26 MDT 2025
lasted 2D13h23m
done with kern.version=OpenBSD 7.7-current (GENERIC.MP) #7: Thu Aug 28 15:02:31 MDT 2025
built packages:12548
Aug 29:5040
Aug 30:2046
Aug 31:5461
critical path missing pkgs: http://build-failures.rhaalovely.net/aarch64/2025-08-29/summary.log
build failures: 4
http://build-failures.rhaalovely.net/aarch64/2025-08-29/games/scorched3d.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/games/witchblast.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/lang/apl.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/x11/ogre.log
recurrent failures
failures/games/scorched3d.log
failures/lang/apl.log
failures/x11/ogre.log
new failures
+++ ls-failures Sun Aug 31 13:47:11 2025
+failures/games/witchblast.log
resolved failures
--- ../old/aarch64/last//ls-failures Sun Aug 24 21:46:36 2025
-failures/audio/xmms2.log
-failures/editors/abiword.log
-failures/editors/le.log
-failures/games/xye.log
-failures/graphics/mypaint.log
-failures/math/igraph.log
-failures/multimedia/sfml.log
-failures/net/ns.log
-failures/www/chromium.log
-failures/www/iridium.log
-failures/www/ungoogled-chromium.log
started on Fri Aug 29 00:22:05 MDT 2025
finished at Sun Aug 31 13:45:26 MDT 2025
lasted 2D13h23m
done with kern.version=OpenBSD 7.7-current (GENERIC.MP) #7: Thu Aug 28 15:02:31 MDT 2025
built packages:12548
Aug 29:5040
Aug 30:2046
Aug 31:5461
critical path missing pkgs: http://build-failures.rhaalovely.net/aarch64/2025-08-29/summary.log
build failures: 4
http://build-failures.rhaalovely.net/aarch64/2025-08-29/games/scorched3d.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/games/witchblast.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/lang/apl.log
http://build-failures.rhaalovely.net/aarch64/2025-08-29/x11/ogre.log
recurrent failures
failures/games/scorched3d.log
failures/lang/apl.log
failures/x11/ogre.log
new failures
+++ ls-failures Sun Aug 31 13:47:11 2025
+failures/games/witchblast.log
resolved failures
--- ../old/aarch64/last//ls-failures Sun Aug 24 21:46:36 2025
-failures/audio/xmms2.log
-failures/editors/abiword.log
-failures/editors/le.log
-failures/games/xye.log
-failures/graphics/mypaint.log
-failures/math/igraph.log
-failures/multimedia/sfml.log
-failures/net/ns.log
-failures/www/chromium.log
-failures/www/iridium.log
-failures/www/ungoogled-chromium.log
i386 build failures (libc++, etc)
some of these may have been fixed since, but this is what I ran into in
my last build. tail of logs are below.
__cpu_model__, etc:
archivers/blosc2
archivers/unrar
games/moonlight-qt
graphics/chafa
c++:
audio/xmms2
editors/le
games/openmw
games/scorched3d
games/xye
multimedia/sfml
lang/apl
graphics/orthanc/server (abseil)
segfault in c++ compiler:
games/luanti
c++, 32-bit only?:
graphics/mapnik
productivity/libphonenumber
==> failures/archivers/blosc2.log <==
[66/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/trunc-prec.c
[67/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/timestamp.c
[68/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/sframe.c
[69/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/directories.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/directories.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/directories.c
[70/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/blosc2-stdio.c
/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/blosc2-stdio.c:376:13: warning: unused variable 'old_mapping_size' [-Wunused-variable]
376 | int64_t old_mapping_size = mmap_file->mapping_size;
| ^~~~~~~~~~~~~~~~
1 warning generated.
[71/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/b2nd.c
[72/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/b2nd_utils.c
[73/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -msse2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle-sse2.c
[74/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -msse2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-sse2.c
[75/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle-avx2.c
[76/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-avx2.c
[77/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx512f -mavx512bw -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-avx512.c
[78/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -DSHUFFLE_AVX2_ENABLED -DSHUFFLE_AVX512_ENABLED -DSHUFFLE_SSE2_ENABLED -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle.c
[79/466] : && /pobj/blosc2-2.15.2/bin/cc -fPIC -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -Xlinker --dependency-file=blosc/CMakeFiles/blosc2_shared.dir/link.d -shared -Wl,-soname,libblosc2.so.4.0 -o blosc/libblosc2.so.4.0 blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz4x4.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz8x8.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/xxhash.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/blosc2-zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/bitstream.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/codecs-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/tuners/tuners-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndcell/ndcell.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndmean/ndmean.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/bytedelta/bytedelta.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/int_trunc/int_trunc.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/filters-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2.c.o blosc/CMakeFiles/blosc2_shared.dir/blosclz.c.o blosc/CMakeFiles/blosc2_shared.dir/fastcopy.c.o blosc/CMakeFiles/blosc2_shared.dir/schunk.c.o blosc/CMakeFiles/blosc2_shared.dir/frame.c.o blosc/CMakeFiles/blosc2_shared.dir/stune.c.o blosc/CMakeFiles/blosc2_shared.dir/delta.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -Wl,-z,origin,-rpath,/usr/local/lib: /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 -lm /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 -lm -pthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
FAILED: blosc/libblosc2.so.4.0
: && /pobj/blosc2-2.15.2/bin/cc -fPIC -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -Xlinker --dependency-file=blosc/CMakeFiles/blosc2_shared.dir/link.d -shared -Wl,-soname,libblosc2.so.4.0 -o blosc/libblosc2.so.4.0 blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz4x4.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz8x8.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/xxhash.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/blosc2-zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/bitstream.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/codecs-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/tuners/tuners-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndcell/ndcell.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndmean/ndmean.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/bytedelta/bytedelta.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/int_trunc/int_trunc.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/filters-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2.c.o blosc/CMakeFiles/blosc2_shared.dir/blosclz.c.o blosc/CMakeFiles/blosc2_shared.dir/fastcopy.c.o blosc/CMakeFiles/blosc2_shared.dir/schunk.c.o blosc/CMakeFiles/blosc2_shared.dir/frame.c.o blosc/CMakeFiles/blosc2_shared.dir/stune.c.o blosc/CMakeFiles/blosc2_shared.dir/delta.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -Wl,-z,origin,-rpath,/usr/local/lib: /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 -lm /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 -lm -pthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
cc: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in archivers/blosc2 (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/blosc2-2.15.2/build-i386 && exec /usr/bin/env...)
*** Error 2 in archivers/blosc2 (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/blosc2-2.15.2/build-i386/.build_done': @cd /usr/ports/...)
*** Error 2 in archivers/blosc2 (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=blosc2-2.15.2p0; export _LOCKS_HELD=" blosc2-...)
===> Exiting archivers/blosc2 with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756341600.36
max_stuck=0.00/depends=2.59/show-prepare-results=1.39/patch=0.91/configure=7.12/build=22.54
Error: job failed with 512 on localhost at 1756341600
==> failures/archivers/unrar.log <==
| ^
./cmdfilter.cpp:267:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
267 | else // Condition matched.
| ^
cmddata.cpp:923:17: warning: add explicit braces to avoid dangling else [-Wdangling-else]
923 | else
| ^
cmddata.cpp:1127:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
1127 | else
| ^
8 warnings generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c ui.cpp
In file included from ui.cpp:12:
./uiconsole.cpp:101:10: warning: 74 enumeration values not handled in switch: 'UIERROR_INCERRCOUNT', 'UIERROR_NOTSFX', 'UIERROR_OLDTOSFX'... [-Wswitch]
101 | switch(Code)
| ^~~~
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c largepage.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c filestr.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c recvol.cpp
In file included from recvol.cpp:4:
./recvol3.cpp:75:7: warning: add explicit braces to avoid dangling else [-Wdangling-else]
75 | else
| ^
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c rs.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c scantree.cpp
scantree.cpp:241:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
241 | else
| ^
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c qopen.cpp
c++ -o unrar -pthread rar.o strlist.o strfn.o pathfn.o smallfn.o global.o file.o filefn.o filcreat.o archive.o arcread.o unicode.o system.o crypt.o crc.o rawread.o encname.o resource.o match.o timefn.o rdwrfn.o consio.o options.o errhnd.o rarvm.o secpassword.o rijndael.o getbits.o sha1.o sha256.o blake2s.o hash.o extinfo.o extract.o volume.o list.o find.o unpack.o headers.o threadpool.o rs16.o cmddata.o ui.o largepage.o filestr.o recvol.o rs.o scantree.o qopen.o = 9
ld.lld: warning: strlist.cpp(strlist.o:(StringList::AddString(wchar_t const*))): warning: wcscpy() is almost always misused, please use wcslcpy()
ld.lld: error: undefined symbol: __cpu_model
>>> referenced by rijndael.cpp
>>> rijndael.o:(Rijndael::Init(bool, unsigned char const*, unsigned int, unsigned char const*))
>>> referenced by system.cpp
>>> system.o:(GetSSEVersion())
>>> referenced by system.cpp
>>> system.o:(_GLOBAL__sub_I_system.cpp)
c++: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error 1 in /pobj/unrar-7.13/unrar (makefile:52 'unrar')
*** Error 2 in archivers/unrar (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/unrar-7.13/.build_done': @cd /pobj/unrar-7.13/unrar && ...)
*** Error 2 in archivers/unrar (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=unrar-7.13v2; export _LOCKS_HELD=" unrar-7.13v...)
===> Exiting archivers/unrar with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756374503.96
max_stuck=0.11/waiting-for-lock #240=9.50/patch=1.32/configure=0.54/build=143.53
Error: job failed with 512 on i386-2 at 1756374503
==> failures/audio/xmms2.log <==
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:19:
In file included from ../src/include/xmmsclient/xmmsclient++/helpers.h:27:
/usr/local/include/boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
36 | BOOST_PRAGMA_MESSAGE(
| ^
/usr/local/include/boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'
24 | # define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))
| ^
<scratch space>:80:2: note: expanded from here
80 | message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
| ^
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:18:
In file included from ../src/include/xmmsclient/xmmsclient++/dict.h:21:
In file included from ../src/include/xmmsclient/xmmsclient++/exceptions.h:21:
/usr/include/c++/v1/string:2343:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
2343 | traits_type::copy(std::__to_address(__p), __s, __sz);
| ^
/usr/include/c++/v1/string:1078:5: note: in instantiation of member function 'std::basic_string<unsigned char>::__init' requested here
1078 | __init(__s, __n);
| ^
../src/include/xmmsclient/xmmsclient++/signal.h:150:14: note: in instantiation of member function 'std::basic_string<unsigned char>::basic_string' requested here
150 | return new std::basic_string<unsigned char>( temp, len );
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:18:
In file included from ../src/include/xmmsclient/xmmsclient++/dict.h:21:
In file included from ../src/include/xmmsclient/xmmsclient++/exceptions.h:21:
/usr/include/c++/v1/string:2344:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
2344 | traits_type::assign(__p[__sz], value_type());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
3 warnings and 4 errors generated.
Waf: Leaving directory `/pobj/xmms2-0.9.5/xmms2-0.9.5/_build_'
Build failed
-> task in 'xmmsclient++' failed with exit status 1:
{task 2022660616: cxx dict.cpp -> dict.cpp.1.o}
['c++', '-g', '-O2', '-fdiagnostics-show-option', '-fPIC', '-I.', '-I..', '-Isrc/include', '-I../src/include', '-Isrc/includepriv', '-I../src/includepriv', '-I/usr/local/include', '-DXMMS_DISABLE_DEPRECATION_WARNINGS', '../src/clients/lib/xmmsclient++/dict.cpp', '-c', '-o/pobj/xmms2-0.9.5/xmms2-0.9.5/_build_/src/clients/lib/xmmsclient++/dict.cpp.1.o', '-fPIC', '-DPIC']
*** Error 1 in audio/xmms2 (Makefile:83 'do-build')
*** Error 2 in audio/xmms2 (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/xmms2-0.9.5/.build_done': @cd /usr/ports/audio/xmms2 && PKG...)
*** Error 2 in audio/xmms2 (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=xmms2-0.9.5; export _LOCKS_HELD=" xmms2-0.9.5"; ...)
===> Exiting audio/xmms2 with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756394905.40
max_stuck=22.49/depends=7.69/show-prepare-results=5.40/junk=2.21/patch=1.00/configure=26.21/build=186.06
Error: job failed with 512 on i386-1 at 1756394905
==> failures/editors/le.log <==
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:837:40: error: expected ')'
837 | _LIBCPP_HIDE_FROM_ABI inline ios_base& hex(ios_base& __str) {
| ^
./edit.h:158:26: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
/usr/include/c++/v1/ios:837:40: note: to match this '('
./edit.h:158:17: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
In file included from highli.cc:36:
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:838:24: error: expected unqualified-id
838 | __str.setf(ios_base::hex, ios_base::basefield);
| ^
./edit.h:158:17: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
In file included from highli.cc:36:
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:838:24: error: comparison between pointer and integer ('ios_base &(*)(ios_base &)' and 'int')
838 | __str.setf(ios_base::hex, ios_base::basefield);
| ^~~
./edit.h:158:26: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ~~~~~~~~^ ~~~~
4 errors generated.
*** Error 1 in src (Makefile:1506 'highli.o')
*** Error 1 in . (Makefile:1415 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_w...)
*** Error 2 in /pobj/le-1.16.8/le-1.16.8 (Makefile:1344 'all')
*** Error 2 in editors/le (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/le-1.16.8/.build_done': @cd /pobj/le-1.16.8/le-1.16.8 && exe...)
*** Error 2 in editors/le (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=le-1.16.8; export _LOCKS_HELD=" le-1.16.8"; /usr/...)
===> Exiting editors/le with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756396894.19
max_stuck=0.91/waiting-for-lock #289=3.12/junk=2.19/patch=1.31/configure=81.74/build=25.91
Error: job failed with 512 on i386-1 at 1756396894
==> failures/games/luanti.log <==
[398/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/collision.cpp.o -MF src/CMakeFiles/luanti.dir/collision.cpp.o.d -o src/CMakeFiles/luanti.dir/collision.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/collision.cpp
[399/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/content_mapnode.cpp.o -MF src/CMakeFiles/luanti.dir/content_mapnode.cpp.o.d -o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/content_mapnode.cpp
[400/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/defaultsettings.cpp.o -MF src/CMakeFiles/luanti.dir/defaultsettings.cpp.o.d -o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/defaultsettings.cpp
[401/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/emerge.cpp.o -MF src/CMakeFiles/luanti.dir/emerge.cpp.o.d -o src/CMakeFiles/luanti.dir/emerge.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/emerge.cpp
[402/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/environment.cpp.o -MF src/CMakeFiles/luanti.dir/environment.cpp.o.d -o src/CMakeFiles/luanti.dir/environment.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/environment.cpp
[403/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/filesys.cpp.o -MF src/CMakeFiles/luanti.dir/filesys.cpp.o.d -o src/CMakeFiles/luanti.dir/filesys.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/filesys.cpp
[404/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/gettext.cpp.o -MF src/CMakeFiles/luanti.dir/gettext.cpp.o.d -o src/CMakeFiles/luanti.dir/gettext.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/gettext.cpp
[405/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/inventorymanager.cpp.o -MF src/CMakeFiles/luanti.dir/inventorymanager.cpp.o.d -o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/inventorymanager.cpp
[406/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/itemdef.cpp.o -MF src/CMakeFiles/luanti.dir/itemdef.cpp.o.d -o src/CMakeFiles/luanti.dir/itemdef.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/itemdef.cpp
[407/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/light.cpp.o -MF src/CMakeFiles/luanti.dir/light.cpp.o.d -o src/CMakeFiles/luanti.dir/light.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/light.cpp
[408/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/main.cpp.o -MF src/CMakeFiles/luanti.dir/main.cpp.o.d -o src/CMakeFiles/luanti.dir/main.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/main.cpp
[409/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/map.cpp.o -MF src/CMakeFiles/luanti.dir/map.cpp.o.d -o src/CMakeFiles/luanti.dir/map.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/map.cpp
[410/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o -MF src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o.d -o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/map_settings_manager.cpp
[411/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapblock.cpp.o -MF src/CMakeFiles/luanti.dir/mapblock.cpp.o.d -o src/CMakeFiles/luanti.dir/mapblock.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapblock.cpp
[412/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapnode.cpp.o -MF src/CMakeFiles/luanti.dir/mapnode.cpp.o.d -o src/CMakeFiles/luanti.dir/mapnode.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapnode.cpp
[413/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapsector.cpp.o -MF src/CMakeFiles/luanti.dir/mapsector.cpp.o.d -o src/CMakeFiles/luanti.dir/mapsector.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapsector.cpp
[414/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/nodedef.cpp.o -MF src/CMakeFiles/luanti.dir/nodedef.cpp.o.d -o src/CMakeFiles/luanti.dir/nodedef.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/nodedef.cpp
[415/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/pathfinder.cpp.o -MF src/CMakeFiles/luanti.dir/pathfinder.cpp.o.d -o src/CMakeFiles/luanti.dir/pathfinder.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/pathfinder.cpp
[416/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/player.cpp.o -MF src/CMakeFiles/luanti.dir/player.cpp.o.d -o src/CMakeFiles/luanti.dir/player.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/player.cpp
[417/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/porting.cpp.o -MF src/CMakeFiles/luanti.dir/porting.cpp.o.d -o src/CMakeFiles/luanti.dir/porting.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/porting.cpp
/pobj/luanti-5.13.0/luanti-5.13.0/src/porting.cpp:282:13: warning: unused function 'getExecPathFromProcfs' [-Wunused-function]
282 | static bool getExecPathFromProcfs(char *buf, size_t buflen)
| ^~~~~~~~~~~~~~~~~~~~~
1 warning generated.
[418/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/raycast.cpp.o -MF src/CMakeFiles/luanti.dir/raycast.cpp.o.d -o src/CMakeFiles/luanti.dir/raycast.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/raycast.cpp
[419/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/reflowscan.cpp.o -MF src/CMakeFiles/luanti.dir/reflowscan.cpp.o.d -o src/CMakeFiles/luanti.dir/reflowscan.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/reflowscan.cpp
[420/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/remoteplayer.cpp.o -MF src/CMakeFiles/luanti.dir/remoteplayer.cpp.o.d -o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/remoteplayer.cpp
[421/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/rollback_interface.cpp.o -MF src/CMakeFiles/luanti.dir/rollback_interface.cpp.o.d -o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/rollback_interface.cpp
[422/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/server.cpp.o -MF src/CMakeFiles/luanti.dir/server.cpp.o.d -o src/CMakeFiles/luanti.dir/server.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/server.cpp
[423/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/serverenvironment.cpp.o -MF src/CMakeFiles/luanti.dir/serverenvironment.cpp.o.d -o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/serverenvironment.cpp
[424/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/servermap.cpp.o -MF src/CMakeFiles/luanti.dir/servermap.cpp.o.d -o src/CMakeFiles/luanti.dir/servermap.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/servermap.cpp
[425/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/translation.cpp.o -MF src/CMakeFiles/luanti.dir/translation.cpp.o.d -o src/CMakeFiles/luanti.dir/translation.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/translation.cpp
[426/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/version.cpp.o -MF src/CMakeFiles/luanti.dir/version.cpp.o.d -o src/CMakeFiles/luanti.dir/version.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/version.cpp
[427/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/voxel.cpp.o -MF src/CMakeFiles/luanti.dir/voxel.cpp.o.d -o src/CMakeFiles/luanti.dir/voxel.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/voxel.cpp
[428/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -MF src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o.d -o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/voxelalgorithms.cpp
[429/655] : && /pobj/luanti-5.13.0/bin/c++ -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -flto=thin -L/usr/X11R6/lib -L/usr/local/lib -Xlinker --dependency-file=src/CMakeFiles/luanti.dir/link.d src/CMakeFiles/EngineCommon.dir/chat.cpp.o src/CMakeFiles/EngineCommon.dir/content_nodemeta.cpp.o src/CMakeFiles/EngineCommon.dir/convert_json.cpp.o src/CMakeFiles/EngineCommon.dir/craftdef.cpp.o src/CMakeFiles/EngineCommon.dir/debug.cpp.o src/CMakeFiles/EngineCommon.dir/face_position_cache.cpp.o src/CMakeFiles/EngineCommon.dir/gettext_plural_form.cpp.o src/CMakeFiles/EngineCommon.dir/httpfetch.cpp.o src/CMakeFiles/EngineCommon.dir/hud.cpp.o src/CMakeFiles/EngineCommon.dir/inventory.cpp.o src/CMakeFiles/EngineCommon.dir/itemstackmetadata.cpp.o src/CMakeFiles/EngineCommon.dir/log.cpp.o src/CMakeFiles/EngineCommon.dir/metadata.cpp.o src/CMakeFiles/EngineCommon.dir/modchannels.cpp.o src/CMakeFiles/EngineCommon.dir/nameidmapping.cpp.o src/CMakeFiles/EngineCommon.dir/nodemetadata.cpp.o src/CMakeFiles/EngineCommon.dir/nodetimer.cpp.o src/CMakeFiles/EngineCommon.dir/noise.cpp.o src/CMakeFiles/EngineCommon.dir/objdef.cpp.o src/CMakeFiles/EngineCommon.dir/object_properties.cpp.o src/CMakeFiles/EngineCommon.dir/particles.cpp.o src/CMakeFiles/EngineCommon.dir/profiler.cpp.o src/CMakeFiles/EngineCommon.dir/serialization.cpp.o src/CMakeFiles/EngineCommon.dir/settings.cpp.o src/CMakeFiles/EngineCommon.dir/staticobject.cpp.o src/CMakeFiles/EngineCommon.dir/terminal_chat_console.cpp.o src/CMakeFiles/EngineCommon.dir/texture_override.cpp.o src/CMakeFiles/EngineCommon.dir/tileanimation.cpp.o src/CMakeFiles/EngineCommon.dir/tool.cpp.o src/CMakeFiles/EngineCommon.dir/network/address.cpp.o src/CMakeFiles/EngineCommon.dir/network/connection.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/impl.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/threads.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkpacket.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkprotocol.cpp.o src/CMakeFiles/EngineCommon.dir/network/socket.cpp.o src/CMakeFiles/EngineCommon.dir/content/content.cpp.o src/CMakeFiles/EngineCommon.dir/content/mod_configuration.cpp.o src/CMakeFiles/EngineCommon.dir/content/mods.cpp.o src/CMakeFiles/EngineCommon.dir/content/subgames.cpp.o src/CMakeFiles/EngineCommon.dir/database/database.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-dummy.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-files.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-leveldb.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-postgresql.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-redis.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-sqlite3.cpp.o src/CMakeFiles/EngineCommon.dir/threading/event.cpp.o src/CMakeFiles/EngineCommon.dir/threading/thread.cpp.o src/CMakeFiles/EngineCommon.dir/threading/semaphore.cpp.o src/CMakeFiles/EngineCommon.dir/util/areastore.cpp.o src/CMakeFiles/EngineCommon.dir/util/auth.cpp.o src/CMakeFiles/EngineCommon.dir/util/base64.cpp.o src/CMakeFiles/EngineCommon.dir/util/colorize.cpp.o src/CMakeFiles/EngineCommon.dir/util/directiontables.cpp.o src/CMakeFiles/EngineCommon.dir/util/enriched_string.cpp.o src/CMakeFiles/EngineCommon.dir/util/guid.cpp.o src/CMakeFiles/EngineCommon.dir/util/hashing.cpp.o src/CMakeFiles/EngineCommon.dir/util/ieee_float.cpp.o src/CMakeFiles/EngineCommon.dir/util/metricsbackend.cpp.o src/CMakeFiles/EngineCommon.dir/util/numeric.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointedthing.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointabilities.cpp.o src/CMakeFiles/EngineCommon.dir/util/quicktune.cpp.o src/CMakeFiles/EngineCommon.dir/util/serialize.cpp.o src/CMakeFiles/EngineCommon.dir/util/sha1.cpp.o src/CMakeFiles/EngineCommon.dir/util/string.cpp.o src/CMakeFiles/EngineCommon.dir/util/srp.cpp.o src/CMakeFiles/EngineCommon.dir/util/timetaker.cpp.o src/CMakeFiles/EngineCommon.dir/util/png.cpp.o src/CMakeFiles/EngineCommon.dir/util/enum_string.cpp.o src/CMakeFiles/luanti.dir/client/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/client/camera.cpp.o src/CMakeFiles/luanti.dir/client/client.cpp.o src/CMakeFiles/luanti.dir/client/clientenvironment.cpp.o src/CMakeFiles/luanti.dir/client/clientlauncher.cpp.o src/CMakeFiles/luanti.dir/client/clientmap.cpp.o src/CMakeFiles/luanti.dir/client/clientmedia.cpp.o src/CMakeFiles/luanti.dir/client/clientobject.cpp.o src/CMakeFiles/luanti.dir/client/clouds.cpp.o src/CMakeFiles/luanti.dir/client/content_cao.cpp.o src/CMakeFiles/luanti.dir/client/content_cso.cpp.o src/CMakeFiles/luanti.dir/client/content_mapblock.cpp.o src/CMakeFiles/luanti.dir/client/filecache.cpp.o src/CMakeFiles/luanti.dir/client/fontengine.cpp.o src/CMakeFiles/luanti.dir/client/game.cpp.o src/CMakeFiles/luanti.dir/client/game_formspec.cpp.o src/CMakeFiles/luanti.dir/client/gameui.cpp.o src/CMakeFiles/luanti.dir/client/guiscalingfilter.cpp.o src/CMakeFiles/luanti.dir/client/hud.cpp.o src/CMakeFiles/luanti.dir/client/imagefilters.cpp.o src/CMakeFiles/luanti.dir/client/imagesource.cpp.o src/CMakeFiles/luanti.dir/client/inputhandler.cpp.o src/CMakeFiles/luanti.dir/client/item_visuals_manager.cpp.o src/CMakeFiles/luanti.dir/client/joystick_controller.cpp.o src/CMakeFiles/luanti.dir/client/keycode.cpp.o src/CMakeFiles/luanti.dir/client/localplayer.cpp.o src/CMakeFiles/luanti.dir/client/mapblock_mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh_generator_thread.cpp.o src/CMakeFiles/luanti.dir/client/meshgen/collector.cpp.o src/CMakeFiles/luanti.dir/client/minimap.cpp.o src/CMakeFiles/luanti.dir/client/particles.cpp.o src/CMakeFiles/luanti.dir/client/render/anaglyph.cpp.o src/CMakeFiles/luanti.dir/client/render/core.cpp.o src/CMakeFiles/luanti.dir/client/render/factory.cpp.o src/CMakeFiles/luanti.dir/client/render/interlaced.cpp.o src/CMakeFiles/luanti.dir/client/render/pipeline.cpp.o src/CMakeFiles/luanti.dir/client/render/plain.cpp.o src/CMakeFiles/luanti.dir/client/render/secondstage.cpp.o src/CMakeFiles/luanti.dir/client/render/sidebyside.cpp.o src/CMakeFiles/luanti.dir/client/render/stereo.cpp.o src/CMakeFiles/luanti.dir/client/renderingengine.cpp.o src/CMakeFiles/luanti.dir/client/shader.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadows.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadowsrender.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsScreenQuad.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsshadercallbacks.cpp.o src/CMakeFiles/luanti.dir/client/sky.cpp.o src/CMakeFiles/luanti.dir/client/sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_extensions.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_helpers.cpp.o src/CMakeFiles/luanti.dir/client/sound/ogg_file.cpp.o src/CMakeFiles/luanti.dir/client/sound/playing_sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/proxy_sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_data.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_openal.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_singleton.cpp.o src/CMakeFiles/luanti.dir/client/texturepaths.cpp.o src/CMakeFiles/luanti.dir/client/texturesource.cpp.o src/CMakeFiles/luanti.dir/client/tile.cpp.o src/CMakeFiles/luanti.dir/client/wieldmesh.cpp.o src/CMakeFiles/luanti.dir/gui/drawItemStack.cpp.o src/CMakeFiles/luanti.dir/gui/guiAnimatedImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBackgroundImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiButton.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonKey.cpp.o src/CMakeFiles/luanti.dir/gui/guiChatConsole.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBoxWithScrollbar.cpp.o src/CMakeFiles/luanti.dir/gui/guiEngine.cpp.o src/CMakeFiles/luanti.dir/gui/guiFormSpecMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiHyperText.cpp.o src/CMakeFiles/luanti.dir/gui/guiInventoryList.cpp.o src/CMakeFiles/luanti.dir/gui/guiItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiOpenURL.cpp.o src/CMakeFiles/luanti.dir/gui/guiPasswordChange.cpp.o src/CMakeFiles/luanti.dir/gui/guiPathSelectMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiScene.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollBar.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollContainer.cpp.o src/CMakeFiles/luanti.dir/gui/guiTable.cpp.o src/CMakeFiles/luanti.dir/gui/guiVolumeChange.cpp.o src/CMakeFiles/luanti.dir/gui/modalMenu.cpp.o src/CMakeFiles/luanti.dir/gui/profilergraph.cpp.o src/CMakeFiles/luanti.dir/gui/touchcontrols.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreeneditor.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreenlayout.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/CGUITTFont.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/static_text.cpp.o src/CMakeFiles/luanti.dir/mapgen/cavegen.cpp.o src/CMakeFiles/luanti.dir/mapgen/dungeongen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_carpathian.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_flat.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_fractal.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_singlenode.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v5.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v6.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v7.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_valleys.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_biome.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_decoration.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_ore.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_schematic.cpp.o src/CMakeFiles/luanti.dir/mapgen/treegen.cpp.o src/CMakeFiles/luanti.dir/network/clientopcodes.cpp.o src/CMakeFiles/luanti.dir/network/clientpackethandler.cpp.o src/CMakeFiles/luanti.dir/network/serveropcodes.cpp.o src/CMakeFiles/luanti.dir/network/serverpackethandler.cpp.o src/CMakeFiles/luanti.dir/script/common/c_content.cpp.o src/CMakeFiles/luanti.dir/script/common/c_converter.cpp.o src/CMakeFiles/luanti.dir/script/common/c_internal.cpp.o src/CMakeFiles/luanti.dir/script/common/c_packer.cpp.o src/CMakeFiles/luanti.dir/script/common/helper.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_async.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_base.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client_common.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_entity.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_env.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_inventory.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_item.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_node.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_player.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_security.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_areastore.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_auth.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_base.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_camera.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_craft.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_env.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_http.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_inventory.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_ipc.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_item.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_itemstackmeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_localplayer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_menu_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_metadata.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_minimap.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodetimer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_noise.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_object.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles_local.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_playermeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_rollback.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_settings.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_storage.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_util.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_vmanip.cpp.o src/CMakeFiles/luanti.dir/script/scripting_client.cpp.o src/CMakeFiles/luanti.dir/script/scripting_emerge.cpp.o src/CMakeFiles/luanti.dir/script/scripting_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_server.cpp.o src/CMakeFiles/luanti.dir/server/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/server/ban.cpp.o src/CMakeFiles/luanti.dir/server/blockmodifier.cpp.o src/CMakeFiles/luanti.dir/server/clientiface.cpp.o src/CMakeFiles/luanti.dir/server/luaentity_sao.cpp.o src/CMakeFiles/luanti.dir/server/mods.cpp.o src/CMakeFiles/luanti.dir/server/player_sao.cpp.o src/CMakeFiles/luanti.dir/server/rollback.cpp.o src/CMakeFiles/luanti.dir/server/serveractiveobject.cpp.o src/CMakeFiles/luanti.dir/server/serverinventorymgr.cpp.o src/CMakeFiles/luanti.dir/server/serverlist.cpp.o src/CMakeFiles/luanti.dir/server/unit_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test.cpp.o src/CMakeFiles/luanti.dir/unittest/test_activeobject.cpp.o src/CMakeFiles/luanti.dir/unittest/test_address.cpp.o src/CMakeFiles/luanti.dir/unittest/test_areastore.cpp.o src/CMakeFiles/luanti.dir/unittest/test_authdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_ban.cpp.o src/CMakeFiles/luanti.dir/unittest/test_clientactiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_collision.cpp.o src/CMakeFiles/luanti.dir/unittest/test_compression.cpp.o src/CMakeFiles/luanti.dir/unittest/test_connection.cpp.o src/CMakeFiles/luanti.dir/unittest/test_content_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_craft.cpp.o src/CMakeFiles/luanti.dir/unittest/test_datastructures.cpp.o src/CMakeFiles/luanti.dir/unittest/test_eventmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_filesys.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gameui.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gettext.cpp.o src/CMakeFiles/luanti.dir/unittest/test_inventory.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_gltf_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_matrix4.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_rotation.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_x_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irrptr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_k_d_tree.cpp.o src/CMakeFiles/luanti.dir/unittest/test_keycode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lbmmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_logging.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lua.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapgen.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapnode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modchannels.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modstoragedatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_moveaction.cpp.o src/CMakeFiles/luanti.dir/unittest/test_nodedef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noderesolver.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noise.cpp.o src/CMakeFiles/luanti.dir/unittest/test_objdef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_profiler.cpp.o src/CMakeFiles/luanti.dir/unittest/test_random.cpp.o src/CMakeFiles/luanti.dir/unittest/test_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/test_schematic.cpp.o src/CMakeFiles/luanti.dir/unittest/test_scriptapi.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serialization.cpp.o src/CMakeFiles/luanti.dir/unittest/test_server_shutdown_state.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serveractiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_servermodmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_settings.cpp.o src/CMakeFiles/luanti.dir/unittest/test_socket.cpp.o src/CMakeFiles/luanti.dir/unittest/test_threading.cpp.o src/CMakeFiles/luanti.dir/unittest/test_translations.cpp.o src/CMakeFiles/luanti.dir/unittest/test_utilities.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelalgorithms.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelarea.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelmanipulator.cpp.o src/CMakeFiles/luanti.dir/catch.cpp.o src/CMakeFiles/luanti.dir/clientdynamicinfo.cpp.o src/CMakeFiles/luanti.dir/collision.cpp.o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o src/CMakeFiles/luanti.dir/emerge.cpp.o src/CMakeFiles/luanti.dir/environment.cpp.o src/CMakeFiles/luanti.dir/filesys.cpp.o src/CMakeFiles/luanti.dir/gettext.cpp.o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o src/CMakeFiles/luanti.dir/itemdef.cpp.o src/CMakeFiles/luanti.dir/light.cpp.o src/CMakeFiles/luanti.dir/main.cpp.o src/CMakeFiles/luanti.dir/map.cpp.o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/mapblock.cpp.o src/CMakeFiles/luanti.dir/mapnode.cpp.o src/CMakeFiles/luanti.dir/mapsector.cpp.o src/CMakeFiles/luanti.dir/nodedef.cpp.o src/CMakeFiles/luanti.dir/pathfinder.cpp.o src/CMakeFiles/luanti.dir/player.cpp.o src/CMakeFiles/luanti.dir/porting.cpp.o src/CMakeFiles/luanti.dir/raycast.cpp.o src/CMakeFiles/luanti.dir/reflowscan.cpp.o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o src/CMakeFiles/luanti.dir/server.cpp.o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o src/CMakeFiles/luanti.dir/servermap.cpp.o src/CMakeFiles/luanti.dir/translation.cpp.o src/CMakeFiles/luanti.dir/version.cpp.o src/CMakeFiles/luanti.dir/voxel.cpp.o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -o /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti /usr/lib/libz.so.7.1 irr/src/libIrrlichtMt.a /usr/local/lib/libzstd.so.7.0 /usr/local/lib/libopenal.so.6.0 /usr/local/lib/libvorbisfile.so.6.0 /usr/local/lib/libvorbis.so.9.0 /usr/local/lib/libogg.so.6.2 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libluajit-5.1.so.1.0 /usr/local/lib/libgmp.so.11.1 /usr/local/lib/libjsoncpp.so.6.0 lib/sha256/libsha256.a /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libiconv.so.7.1 /usr/local/lib/libintl.so.8.1 /usr/local/lib/libcurl.so.26.32 /usr/lib/libncursesw.so.16.0 /usr/lib/libform.so.7.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libspatialindex.so.5.0 lib/catch2/libcatch2.a /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libpng.so.18.2 /usr/local/lib/libSDL2.so.0.15 /usr/X11R6/lib/libGL.so.19.2 /usr/X11R6/lib/libGLU.so.9.0 -pthread && :
FAILED: /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti
: && /pobj/luanti-5.13.0/bin/c++ -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -flto=thin -L/usr/X11R6/lib -L/usr/local/lib -Xlinker --dependency-file=src/CMakeFiles/luanti.dir/link.d src/CMakeFiles/EngineCommon.dir/chat.cpp.o src/CMakeFiles/EngineCommon.dir/content_nodemeta.cpp.o src/CMakeFiles/EngineCommon.dir/convert_json.cpp.o src/CMakeFiles/EngineCommon.dir/craftdef.cpp.o src/CMakeFiles/EngineCommon.dir/debug.cpp.o src/CMakeFiles/EngineCommon.dir/face_position_cache.cpp.o src/CMakeFiles/EngineCommon.dir/gettext_plural_form.cpp.o src/CMakeFiles/EngineCommon.dir/httpfetch.cpp.o src/CMakeFiles/EngineCommon.dir/hud.cpp.o src/CMakeFiles/EngineCommon.dir/inventory.cpp.o src/CMakeFiles/EngineCommon.dir/itemstackmetadata.cpp.o src/CMakeFiles/EngineCommon.dir/log.cpp.o src/CMakeFiles/EngineCommon.dir/metadata.cpp.o src/CMakeFiles/EngineCommon.dir/modchannels.cpp.o src/CMakeFiles/EngineCommon.dir/nameidmapping.cpp.o src/CMakeFiles/EngineCommon.dir/nodemetadata.cpp.o src/CMakeFiles/EngineCommon.dir/nodetimer.cpp.o src/CMakeFiles/EngineCommon.dir/noise.cpp.o src/CMakeFiles/EngineCommon.dir/objdef.cpp.o src/CMakeFiles/EngineCommon.dir/object_properties.cpp.o src/CMakeFiles/EngineCommon.dir/particles.cpp.o src/CMakeFiles/EngineCommon.dir/profiler.cpp.o src/CMakeFiles/EngineCommon.dir/serialization.cpp.o src/CMakeFiles/EngineCommon.dir/settings.cpp.o src/CMakeFiles/EngineCommon.dir/staticobject.cpp.o src/CMakeFiles/EngineCommon.dir/terminal_chat_console.cpp.o src/CMakeFiles/EngineCommon.dir/texture_override.cpp.o src/CMakeFiles/EngineCommon.dir/tileanimation.cpp.o src/CMakeFiles/EngineCommon.dir/tool.cpp.o src/CMakeFiles/EngineCommon.dir/network/address.cpp.o src/CMakeFiles/EngineCommon.dir/network/connection.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/impl.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/threads.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkpacket.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkprotocol.cpp.o src/CMakeFiles/EngineCommon.dir/network/socket.cpp.o src/CMakeFiles/EngineCommon.dir/content/content.cpp.o src/CMakeFiles/EngineCommon.dir/content/mod_configuration.cpp.o src/CMakeFiles/EngineCommon.dir/content/mods.cpp.o src/CMakeFiles/EngineCommon.dir/content/subgames.cpp.o src/CMakeFiles/EngineCommon.dir/database/database.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-dummy.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-files.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-leveldb.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-postgresql.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-redis.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-sqlite3.cpp.o src/CMakeFiles/EngineCommon.dir/threading/event.cpp.o src/CMakeFiles/EngineCommon.dir/threading/thread.cpp.o src/CMakeFiles/EngineCommon.dir/threading/semaphore.cpp.o src/CMakeFiles/EngineCommon.dir/util/areastore.cpp.o src/CMakeFiles/EngineCommon.dir/util/auth.cpp.o src/CMakeFiles/EngineCommon.dir/util/base64.cpp.o src/CMakeFiles/EngineCommon.dir/util/colorize.cpp.o src/CMakeFiles/EngineCommon.dir/util/directiontables.cpp.o src/CMakeFiles/EngineCommon.dir/util/enriched_string.cpp.o src/CMakeFiles/EngineCommon.dir/util/guid.cpp.o src/CMakeFiles/EngineCommon.dir/util/hashing.cpp.o src/CMakeFiles/EngineCommon.dir/util/ieee_float.cpp.o src/CMakeFiles/EngineCommon.dir/util/metricsbackend.cpp.o src/CMakeFiles/EngineCommon.dir/util/numeric.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointedthing.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointabilities.cpp.o src/CMakeFiles/EngineCommon.dir/util/quicktune.cpp.o src/CMakeFiles/EngineCommon.dir/util/serialize.cpp.o src/CMakeFiles/EngineCommon.dir/util/sha1.cpp.o src/CMakeFiles/EngineCommon.dir/util/string.cpp.o src/CMakeFiles/EngineCommon.dir/util/srp.cpp.o src/CMakeFiles/EngineCommon.dir/util/timetaker.cpp.o src/CMakeFiles/EngineCommon.dir/util/png.cpp.o src/CMakeFiles/EngineCommon.dir/util/enum_string.cpp.o src/CMakeFiles/luanti.dir/client/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/client/camera.cpp.o src/CMakeFiles/luanti.dir/client/client.cpp.o src/CMakeFiles/luanti.dir/client/clientenvironment.cpp.o src/CMakeFiles/luanti.dir/client/clientlauncher.cpp.o src/CMakeFiles/luanti.dir/client/clientmap.cpp.o src/CMakeFiles/luanti.dir/client/clientmedia.cpp.o src/CMakeFiles/luanti.dir/client/clientobject.cpp.o src/CMakeFiles/luanti.dir/client/clouds.cpp.o src/CMakeFiles/luanti.dir/client/content_cao.cpp.o src/CMakeFiles/luanti.dir/client/content_cso.cpp.o src/CMakeFiles/luanti.dir/client/content_mapblock.cpp.o src/CMakeFiles/luanti.dir/client/filecache.cpp.o src/CMakeFiles/luanti.dir/client/fontengine.cpp.o src/CMakeFiles/luanti.dir/client/game.cpp.o src/CMakeFiles/luanti.dir/client/game_formspec.cpp.o src/CMakeFiles/luanti.dir/client/gameui.cpp.o src/CMakeFiles/luanti.dir/client/guiscalingfilter.cpp.o src/CMakeFiles/luanti.dir/client/hud.cpp.o src/CMakeFiles/luanti.dir/client/imagefilters.cpp.o src/CMakeFiles/luanti.dir/client/imagesource.cpp.o src/CMakeFiles/luanti.dir/client/inputhandler.cpp.o src/CMakeFiles/luanti.dir/client/item_visuals_manager.cpp.o src/CMakeFiles/luanti.dir/client/joystick_controller.cpp.o src/CMakeFiles/luanti.dir/client/keycode.cpp.o src/CMakeFiles/luanti.dir/client/localplayer.cpp.o src/CMakeFiles/luanti.dir/client/mapblock_mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh_generator_thread.cpp.o src/CMakeFiles/luanti.dir/client/meshgen/collector.cpp.o src/CMakeFiles/luanti.dir/client/minimap.cpp.o src/CMakeFiles/luanti.dir/client/particles.cpp.o src/CMakeFiles/luanti.dir/client/render/anaglyph.cpp.o src/CMakeFiles/luanti.dir/client/render/core.cpp.o src/CMakeFiles/luanti.dir/client/render/factory.cpp.o src/CMakeFiles/luanti.dir/client/render/interlaced.cpp.o src/CMakeFiles/luanti.dir/client/render/pipeline.cpp.o src/CMakeFiles/luanti.dir/client/render/plain.cpp.o src/CMakeFiles/luanti.dir/client/render/secondstage.cpp.o src/CMakeFiles/luanti.dir/client/render/sidebyside.cpp.o src/CMakeFiles/luanti.dir/client/render/stereo.cpp.o src/CMakeFiles/luanti.dir/client/renderingengine.cpp.o src/CMakeFiles/luanti.dir/client/shader.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadows.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadowsrender.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsScreenQuad.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsshadercallbacks.cpp.o src/CMakeFiles/luanti.dir/client/sky.cpp.o src/CMakeFiles/luanti.dir/client/sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_extensions.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_helpers.cpp.o src/CMakeFiles/luanti.dir/client/sound/ogg_file.cpp.o src/CMakeFiles/luanti.dir/client/sound/playing_sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/proxy_sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_data.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_openal.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_singleton.cpp.o src/CMakeFiles/luanti.dir/client/texturepaths.cpp.o src/CMakeFiles/luanti.dir/client/texturesource.cpp.o src/CMakeFiles/luanti.dir/client/tile.cpp.o src/CMakeFiles/luanti.dir/client/wieldmesh.cpp.o src/CMakeFiles/luanti.dir/gui/drawItemStack.cpp.o src/CMakeFiles/luanti.dir/gui/guiAnimatedImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBackgroundImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiButton.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonKey.cpp.o src/CMakeFiles/luanti.dir/gui/guiChatConsole.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBoxWithScrollbar.cpp.o src/CMakeFiles/luanti.dir/gui/guiEngine.cpp.o src/CMakeFiles/luanti.dir/gui/guiFormSpecMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiHyperText.cpp.o src/CMakeFiles/luanti.dir/gui/guiInventoryList.cpp.o src/CMakeFiles/luanti.dir/gui/guiItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiOpenURL.cpp.o src/CMakeFiles/luanti.dir/gui/guiPasswordChange.cpp.o src/CMakeFiles/luanti.dir/gui/guiPathSelectMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiScene.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollBar.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollContainer.cpp.o src/CMakeFiles/luanti.dir/gui/guiTable.cpp.o src/CMakeFiles/luanti.dir/gui/guiVolumeChange.cpp.o src/CMakeFiles/luanti.dir/gui/modalMenu.cpp.o src/CMakeFiles/luanti.dir/gui/profilergraph.cpp.o src/CMakeFiles/luanti.dir/gui/touchcontrols.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreeneditor.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreenlayout.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/CGUITTFont.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/static_text.cpp.o src/CMakeFiles/luanti.dir/mapgen/cavegen.cpp.o src/CMakeFiles/luanti.dir/mapgen/dungeongen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_carpathian.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_flat.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_fractal.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_singlenode.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v5.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v6.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v7.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_valleys.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_biome.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_decoration.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_ore.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_schematic.cpp.o src/CMakeFiles/luanti.dir/mapgen/treegen.cpp.o src/CMakeFiles/luanti.dir/network/clientopcodes.cpp.o src/CMakeFiles/luanti.dir/network/clientpackethandler.cpp.o src/CMakeFiles/luanti.dir/network/serveropcodes.cpp.o src/CMakeFiles/luanti.dir/network/serverpackethandler.cpp.o src/CMakeFiles/luanti.dir/script/common/c_content.cpp.o src/CMakeFiles/luanti.dir/script/common/c_converter.cpp.o src/CMakeFiles/luanti.dir/script/common/c_internal.cpp.o src/CMakeFiles/luanti.dir/script/common/c_packer.cpp.o src/CMakeFiles/luanti.dir/script/common/helper.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_async.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_base.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client_common.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_entity.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_env.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_inventory.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_item.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_node.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_player.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_security.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_areastore.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_auth.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_base.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_camera.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_craft.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_env.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_http.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_inventory.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_ipc.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_item.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_itemstackmeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_localplayer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_menu_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_metadata.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_minimap.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodetimer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_noise.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_object.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles_local.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_playermeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_rollback.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_settings.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_storage.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_util.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_vmanip.cpp.o src/CMakeFiles/luanti.dir/script/scripting_client.cpp.o src/CMakeFiles/luanti.dir/script/scripting_emerge.cpp.o src/CMakeFiles/luanti.dir/script/scripting_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_server.cpp.o src/CMakeFiles/luanti.dir/server/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/server/ban.cpp.o src/CMakeFiles/luanti.dir/server/blockmodifier.cpp.o src/CMakeFiles/luanti.dir/server/clientiface.cpp.o src/CMakeFiles/luanti.dir/server/luaentity_sao.cpp.o src/CMakeFiles/luanti.dir/server/mods.cpp.o src/CMakeFiles/luanti.dir/server/player_sao.cpp.o src/CMakeFiles/luanti.dir/server/rollback.cpp.o src/CMakeFiles/luanti.dir/server/serveractiveobject.cpp.o src/CMakeFiles/luanti.dir/server/serverinventorymgr.cpp.o src/CMakeFiles/luanti.dir/server/serverlist.cpp.o src/CMakeFiles/luanti.dir/server/unit_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test.cpp.o src/CMakeFiles/luanti.dir/unittest/test_activeobject.cpp.o src/CMakeFiles/luanti.dir/unittest/test_address.cpp.o src/CMakeFiles/luanti.dir/unittest/test_areastore.cpp.o src/CMakeFiles/luanti.dir/unittest/test_authdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_ban.cpp.o src/CMakeFiles/luanti.dir/unittest/test_clientactiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_collision.cpp.o src/CMakeFiles/luanti.dir/unittest/test_compression.cpp.o src/CMakeFiles/luanti.dir/unittest/test_connection.cpp.o src/CMakeFiles/luanti.dir/unittest/test_content_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_craft.cpp.o src/CMakeFiles/luanti.dir/unittest/test_datastructures.cpp.o src/CMakeFiles/luanti.dir/unittest/test_eventmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_filesys.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gameui.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gettext.cpp.o src/CMakeFiles/luanti.dir/unittest/test_inventory.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_gltf_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_matrix4.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_rotation.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_x_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irrptr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_k_d_tree.cpp.o src/CMakeFiles/luanti.dir/unittest/test_keycode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lbmmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_logging.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lua.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapgen.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapnode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modchannels.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modstoragedatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_moveaction.cpp.o src/CMakeFiles/luanti.dir/unittest/test_nodedef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noderesolver.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noise.cpp.o src/CMakeFiles/luanti.dir/unittest/test_objdef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_profiler.cpp.o src/CMakeFiles/luanti.dir/unittest/test_random.cpp.o src/CMakeFiles/luanti.dir/unittest/test_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/test_schematic.cpp.o src/CMakeFiles/luanti.dir/unittest/test_scriptapi.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serialization.cpp.o src/CMakeFiles/luanti.dir/unittest/test_server_shutdown_state.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serveractiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_servermodmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_settings.cpp.o src/CMakeFiles/luanti.dir/unittest/test_socket.cpp.o src/CMakeFiles/luanti.dir/unittest/test_threading.cpp.o src/CMakeFiles/luanti.dir/unittest/test_translations.cpp.o src/CMakeFiles/luanti.dir/unittest/test_utilities.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelalgorithms.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelarea.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelmanipulator.cpp.o src/CMakeFiles/luanti.dir/catch.cpp.o src/CMakeFiles/luanti.dir/clientdynamicinfo.cpp.o src/CMakeFiles/luanti.dir/collision.cpp.o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o src/CMakeFiles/luanti.dir/emerge.cpp.o src/CMakeFiles/luanti.dir/environment.cpp.o src/CMakeFiles/luanti.dir/filesys.cpp.o src/CMakeFiles/luanti.dir/gettext.cpp.o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o src/CMakeFiles/luanti.dir/itemdef.cpp.o src/CMakeFiles/luanti.dir/light.cpp.o src/CMakeFiles/luanti.dir/main.cpp.o src/CMakeFiles/luanti.dir/map.cpp.o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/mapblock.cpp.o src/CMakeFiles/luanti.dir/mapnode.cpp.o src/CMakeFiles/luanti.dir/mapsector.cpp.o src/CMakeFiles/luanti.dir/nodedef.cpp.o src/CMakeFiles/luanti.dir/pathfinder.cpp.o src/CMakeFiles/luanti.dir/player.cpp.o src/CMakeFiles/luanti.dir/porting.cpp.o src/CMakeFiles/luanti.dir/raycast.cpp.o src/CMakeFiles/luanti.dir/reflowscan.cpp.o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o src/CMakeFiles/luanti.dir/server.cpp.o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o src/CMakeFiles/luanti.dir/servermap.cpp.o src/CMakeFiles/luanti.dir/translation.cpp.o src/CMakeFiles/luanti.dir/version.cpp.o src/CMakeFiles/luanti.dir/voxel.cpp.o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -o /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti /usr/lib/libz.so.7.1 irr/src/libIrrlichtMt.a /usr/local/lib/libzstd.so.7.0 /usr/local/lib/libopenal.so.6.0 /usr/local/lib/libvorbisfile.so.6.0 /usr/local/lib/libvorbis.so.9.0 /usr/local/lib/libogg.so.6.2 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libluajit-5.1.so.1.0 /usr/local/lib/libgmp.so.11.1 /usr/local/lib/libjsoncpp.so.6.0 lib/sha256/libsha256.a /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libiconv.so.7.1 /usr/local/lib/libintl.so.8.1 /usr/local/lib/libcurl.so.26.32 /usr/lib/libncursesw.so.16.0 /usr/lib/libform.so.7.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libspatialindex.so.5.0 lib/catch2/libcatch2.a /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libpng.so.18.2 /usr/local/lib/libSDL2.so.0.15 /usr/X11R6/lib/libGL.so.19.2 /usr/X11R6/lib/libGLU.so.9.0 -pthread && :
c++: error: unable to execute command: Segmentation fault (core dumped)
c++: error: linker command failed due to signal (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in games/luanti (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/luanti-5.13.0/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in games/luanti (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/luanti-5.13.0/build-i386/.build_done': @cd /usr/ports/game...)
*** Error 2 in games/luanti (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=luanti-5.13.0; export _LOCKS_HELD=" luanti-5.13.0...)
===> Exiting games/luanti with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756376238.72
max_stuck=79.55/depends=4.33/show-prepare-results=4.74/patch=3.89/configure=18.38/build=1934.54
Error: job failed with 512 on localhost at 1756376238
==> failures/games/moonlight-qt.log <==
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/compatfetcher.h -o release/moc_compatfetcher.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_compatfetcher.o release/moc_compatfetcher.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/mappingfetcher.h -o release/moc_mappingfetcher.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_mappingfetcher.o release/moc_mappingfetcher.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/computerseeker.h -o release/moc_computerseeker.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computerseeker.o release/moc_computerseeker.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/nvhttp.h -o release/moc_nvhttp.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_nvhttp.o release/moc_nvhttp.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/computermanager.h -o release/moc_computermanager.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computermanager.o release/moc_computermanager.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/boxartmanager.h -o release/moc_boxartmanager.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_boxartmanager.o release/moc_boxartmanager.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/listapps.h -o release/moc_listapps.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_listapps.o release/moc_listapps.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/quitstream.h -o release/moc_quitstream.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_quitstream.o release/moc_quitstream.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/startstream.h -o release/moc_startstream.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_startstream.o release/moc_startstream.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/streamingpreferences.h -o release/moc_streamingpreferences.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_streamingpreferences.o release/moc_streamingpreferences.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/streaming/session.h -o release/moc_session.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_session.o release/moc_session.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/computermodel.h -o release/moc_computermodel.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computermodel.o release/moc_computermodel.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/appmodel.h -o release/moc_appmodel.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_appmodel.o release/moc_appmodel.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/autoupdatechecker.h -o release/moc_autoupdatechecker.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_autoupdatechecker.o release/moc_autoupdatechecker.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/sdlgamepadkeynavigation.h -o release/moc_sdlgamepadkeynavigation.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_sdlgamepadkeynavigation.o release/moc_sdlgamepadkeynavigation.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/systemproperties.h -o release/moc_systemproperties.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_systemproperties.o release/moc_systemproperties.cpp
clang++ -pthread -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath,/usr/local/lib -Wl,-rpath-link,/usr/local/lib -o moonlight release/nvaddress.o release/nvapp.o release/pair.o release/main.o release/computerseeker.o release/identitymanager.o release/nvcomputer.o release/nvhttp.o release/nvpairingmanager.o release/computermanager.o release/boxartmanager.o release/richpresencemanager.o release/commandlineparser.o release/listapps.o release/quitstream.o release/startstream.o release/compatfetcher.o release/mappingfetcher.o release/streamingpreferences.o release/abstouch.o release/gamepad.o release/input.o release/keyboard.o release/mouse.o release/reltouch.o release/session.o release/audio.o release/sdlaud.o release/computermodel.o release/appmodel.o release/streamutils.o release/autoupdatechecker.o release/path.o release/mappingmanager.o release/sdlgamepadkeynavigation.o release/overlaymanager.o release/systemproperties.o release/wm.o release/ffmpeg.o release/genhwaccel.o release/sdlvid.o release/swframemapper.o release/pacer.o release/vaapi.o release/plvk.o release/plvk_c.o release/eglvid.o release/egl_extensions.o release/eglimagefactory.o release/waylandvsyncsource.o release/qrc_resources.o release/qrc_qml.o release/moc_pair.o release/moc_compatfetcher.o release/moc_mappingfetcher.o release/moc_computerseeker.o release/moc_nvhttp.o release/moc_computermanager.o release/moc_boxartmanager.o release/moc_listapps.o release/moc_quitstream.o release/moc_startstream.o release/moc_streamingpreferences.o release/moc_session.o release/moc_computermodel.o release/moc_appmodel.o release/moc_autoupdatechecker.o release/moc_sdlgamepadkeynavigation.o release/moc_systemproperties.o -L/usr/local/lib -lmoonlight-common-c -lqmdnsengine -lh264bitstream -lssl -lcrypto -L/usr/X11R6/lib -lSDL2_ttf -lSDL2 -lopus -lavcodec -Wl,-rpath-link,/usr/local/lib -lavutil -lswscale -lplacebo -lwayland-client -lm -lX11 -lva-x11 -lva -lQt6QuickControls2 -lQt6Quick -lQt6OpenGL -lQt6Svg -lQt6Gui -lGL -lQt6QmlMeta -lQt6QmlModels -lQt6QmlWorkerScript -lQt6Qml -pthread -lQt6Network -lQt6Core -lpthread -lQt6Quick -lQt6QmlMeta -lQt6OpenGL -lQt6Gui -lQt6QmlModels -lQt6QmlWorkerScript -lQt6Qml -lQt6Network -lQt6Core -lEGL -L/pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/ -L/pobj/moonlight-qt-6.1.0/build-i386/app/../qmdnsengine/ -L/pobj/moonlight-qt-6.1.0/build-i386/app/../h264bitstream/ -L/pobj/moonlight-qt-6.1.0/app -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib
ld.lld: warning: RtpVideoQueue.c:284 (/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src/RtpVideoQueue.c:284)(RtpVideoQueue.o:(reconstructFrame) in archive /pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/libmoonlight-common-c.a): warning: rand() may return deterministic values, is that what you want?
ld.lld: warning: Platform.c:513 (/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src/Platform.c:513)(Platform.o:(PltSafeStrcpy) in archive /pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/libmoonlight-common-c.a): warning: strcpy() is almost always misused, please use strlcpy()
ld.lld: error: undefined symbol: __cpu_model
>>> referenced by streamutils.cpp:159 (/pobj/moonlight-qt-6.1.0/app/streaming/streamutils.cpp:159)
>>> release/streamutils.o:(StreamUtils::hasFastAes())
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error 1 in app (Makefile.Release:298 'moonlight')
*** Error 2 in app (Makefile:46 'release-all')
*** Error 2 in /pobj/moonlight-qt-6.1.0/build-i386 (Makefile:108 'sub-app-all')
*** Error 2 in games/moonlight-qt (/usr/ports/devel/qmake/qmake.port.mk:98 'do-build': @ cd /pobj/moonlight-qt-6.1.0/build-i386; if [ -d /p...)
*** Error 2 in games/moonlight-qt (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/moonlight-qt-6.1.0/build-i386/.build_done': @cd /usr...)
*** Error 2 in games/moonlight-qt (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=moonlight-qt-6.1.0; export _LOCKS_HELD=" mo...)
===> Exiting games/moonlight-qt with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756383291.35
max_stuck=4.52/waiting-for-lock #185=8.47/depends=8.07/show-prepare-results=3.68/junk=2.07/extract=4.83/patch=0.50/configure=18.37/build=814.27
Error: job failed with 512 on i386-1 at 1756383291
==> failures/games/openmw.log <==
[61/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/configuration.cpp.o -MF components/CMakeFiles/components.dir/lua/configuration.cpp.o.d -o components/CMakeFiles/components.dir/lua/configuration.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/configuration.cpp
[62/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/l10n.cpp.o -MF components/CMakeFiles/components.dir/lua/l10n.cpp.o.d -o components/CMakeFiles/components.dir/lua/l10n.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/l10n.cpp
[63/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/storage.cpp.o -MF components/CMakeFiles/components.dir/lua/storage.cpp.o.d -o components/CMakeFiles/components.dir/lua/storage.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/storage.cpp
[64/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o -MF components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o.d -o components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/l10n/messagebundles.cpp
[65/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/settings/settings.cpp.o -MF components/CMakeFiles/components.dir/settings/settings.cpp.o.d -o components/CMakeFiles/components.dir/settings/settings.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/settings/settings.cpp
[66/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/settings/parser.cpp.o -MF components/CMakeFiles/components.dir/settings/parser.cpp.o.d -o components/CMakeFiles/components.dir/settings/parser.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/settings/parser.cpp
[67/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o -MF components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o.d -o components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/bsa/bsa_file.cpp
[68/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o -MF components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o.d -o components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/bsa/compressedbsafile.cpp
[69/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/manager.cpp.o -MF components/CMakeFiles/components.dir/vfs/manager.cpp.o.d -o components/CMakeFiles/components.dir/vfs/manager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/manager.cpp
[70/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o -MF components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o.d -o components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/bsaarchive.cpp
[71/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o -MF components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o.d -o components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/filesystemarchive.cpp
[72/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o -MF components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o.d -o components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/registerarchives.cpp
[73/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/scenemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/scenemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/scenemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/scenemanager.cpp
[74/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/keyframemanager.cpp
[75/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/imagemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/imagemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/imagemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/imagemanager.cpp
[76/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/bulletshapemanager.cpp
[77/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/bulletshape.cpp.o -MF components/CMakeFiles/components.dir/resource/bulletshape.cpp.o.d -o components/CMakeFiles/components.dir/resource/bulletshape.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/bulletshape.cpp
[78/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/niffilemanager.cpp
[79/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o -MF components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o.d -o components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/multiobjectcache.cpp
[80/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o -MF components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o.d -o components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/resourcesystem.cpp
[81/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/stats.cpp.o -MF components/CMakeFiles/components.dir/resource/stats.cpp.o.d -o components/CMakeFiles/components.dir/resource/stats.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/stats.cpp
[82/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/animation.cpp.o -MF components/CMakeFiles/components.dir/resource/animation.cpp.o.d -o components/CMakeFiles/components.dir/resource/animation.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/animation.cpp
[83/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -MF components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o.d -o components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp
FAILED: components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o
/pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -MF components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o.d -o components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp:1:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.hpp:5:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/misc/convert.hpp:5:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/esm3/loadpgrd.hpp:4:
In file included from /usr/include/c++/v1/string:647:
/usr/include/c++/v1/string_view:300:42: error: implicit instantiation of undefined template 'std::char_traits<signed char>'
300 | static_assert(is_same<_CharT, typename traits_type::char_type>::value,
| ^
/pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/to_utf8/to_utf8.hpp:49:55: note: in instantiation of template class 'std::basic_string_view<signed char>' requested here
49 | const std::basic_string_view<signed char> mTranslationArray;
| ^
/usr/include/c++/v1/__string/char_traits.h:45:8: note: template is declared here
45 | struct char_traits;
| ^
1 error generated.
ninja: build stopped: subcommand failed.
*** Error 1 in games/openmw (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/openmw-0.48.0/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in games/openmw (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/openmw-0.48.0/build-i386/.build_done': @cd /usr/ports/game...)
*** Error 2 in games/openmw (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=openmw-0.48.0p1; export _LOCKS_HELD=" openmw-0.48...)
===> Exiting games/openmw with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756325173.85
max_stuck=48.08/depends=35.07/show-prepare-results=6.03/patch=5.16/configure=29.05/build=336.13
Error: job failed with 512 on localhost at 1756325173
==> failures/games/scorched3d.log <==
| ^
/usr/include/c++/v1/string:745:29: note: in instantiation of template class 'std::is_convertible<const std::basic_string<unsigned int> &, std::basic_string_view<unsigned int>>' requested here
745 | : public _BoolConstant< is_convertible<const _Tp&, basic_string_view<_CharT, _Traits> >::value &&
| ^
/usr/include/c++/v1/string:1151:27: note: in instantiation of template class 'std::__can_be_converted_to_string_view<unsigned int, std::char_traits<unsigned int>, std::basic_string<unsigned int>>' requested here
1151 | __enable_if_t<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value &&
| ^
/usr/include/c++/v1/string:1154:93: note: while substituting prior template arguments into non-type template parameter [with _Tp = std::basic_string<unsigned int>]
1154 | _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit basic_string(const _Tp& __t)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
1155 | : __r_(__default_init_tag(), __default_init_tag()) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1156 | __self_view __sv = __t;
| ~~~~~~~~~~~~~~~~~~~~~~~
1157 | __init(__sv.data(), __sv.size());
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1158 | }
| ~
/usr/include/c++/v1/string:752:7: note: while substituting deduced template arguments into function template 'basic_string' [with _Tp = std::basic_string<unsigned int>, $1 = (no value)]
752 | class basic_string {
| ^
../../common/lang/LangString.h:31:7: note: while declaring the implicit copy constructor for 'LangStringConverter'
31 | class LangStringConverter
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
../../common/engine/ModFileEntryLoader.cpp:33:13: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
33 | while (dir = strchr(dir, '/'))
| ~~~~^~~~~~~~~~~~~~~~~~
../../common/engine/ModFileEntryLoader.cpp:33:13: note: place parentheses around the assignment to silence this warning
33 | while (dir = strchr(dir, '/'))
| ^
| ( )
../../common/engine/ModFileEntryLoader.cpp:33:13: note: use '==' to turn this assignment into an equality comparison
33 | while (dir = strchr(dir, '/'))
| ^
| ==
1 warning and 2 errors generated.
*** Error 1 in src/launcher/scorched (Makefile:598 'ModFileEntryLoader.o')
*** Error 1 in src/launcher (Makefile:315 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in *=* | --[!k]*);;...)
*** Error 1 in src (Makefile:315 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in *=* | --[!k]*);; *k*) fa...)
*** Error 1 in /pobj/scorched3d-44/scorched (Makefile:6411 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in ...)
*** Error 2 in games/scorched3d (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/scorched3d-44/.build_done': @cd /pobj/scorched3d-44/sc...)
*** Error 2 in games/scorched3d (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=scorched3d-44p4; export _LOCKS_HELD=" scorche...)
===> Exiting games/scorched3d with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756356834.67
max_stuck=8.96/depends=11.51/show-prepare-results=3.09/extract=7.80/patch=0.72/configure=34.72/build=2.60
Error: job failed with 512 on i386-2 at 1756356834
==> failures/games/xye.log <==
src/xye_script.cpp:303:22: note: use '==' to turn this assignment into an equality comparison
303 | else if (pack=fil.FirstChildElement("xyereplay"))
| ^
| ==
src/xye_script.cpp:405:25: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
405 | if (pack=pack->FirstChildElement("moves"))
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:405:25: note: place parentheses around the assignment to silence this warning
405 | if (pack=pack->FirstChildElement("moves"))
| ^
| ( )
src/xye_script.cpp:405:25: note: use '==' to turn this assignment into an equality comparison
405 | if (pack=pack->FirstChildElement("moves"))
| ^
| ==
src/xye_script.cpp:862:5: error: reference to 'lock' is ambiguous
862 | lock* bc=new lock(game::SquareN(LastX,LastY),c);
| ^
src/xye.h:1048:7: note: candidate found by name lookup is 'lock'
1048 | class lock : public obj
| ^
/usr/include/c++/v1/mutex:417:35: note: candidate found by name lookup is 'std::lock'
417 | inline _LIBCPP_HIDE_FROM_ABI void lock(_L0& __l0, _L1& __l1, _L2& __l2, _L3&... __l3) {
| ^
/usr/include/c++/v1/mutex:357:28: note: candidate found by name lookup is 'std::lock'
357 | _LIBCPP_HIDE_FROM_ABI void lock(_L0& __l0, _L1& __l1) {
| ^
src/xye_script.cpp:1517:16: warning: 4 enumeration values not handled in switch: 'OT_XYE', 'OT_FIREBALL', 'OT_EXIT'... [-Wswitch]
1517 | switch(GetOTFromXmlElement(pEChild,&x))
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:1917:16: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:1917:16: note: place parentheses around the assignment to silence this warning
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ^
| ( )
src/xye_script.cpp:1917:16: note: use '==' to turn this assignment into an equality comparison
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ^
| ==
16 warnings and 1 error generated.
*** Error 1 in /pobj/xye-0.12.2/xye-0.12.2 (Makefile:647 'xye_script.o')
*** Error 2 in games/xye (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/xye-0.12.2/.build_done': @cd /pobj/xye-0.12.2/xye-0.12.2 && e...)
*** Error 2 in games/xye (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=xye-0.12.2p5; export _LOCKS_HELD=" xye-0.12.2p5"; ...)
===> Exiting games/xye with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756330615.63
max_stuck=4.07/waiting-for-lock #161=27.17/depends=2.89/show-prepare-results=1.11/build=41.61
Error: job failed with 512 on i386-2 at 1756330615
==> failures/graphics/chafa.log <==
mv -f .deps/libchafa_la-chafa-placement.Tpo .deps/libchafa_la-chafa-placement.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c -o libchafa_la-chafa-symbol-map.lo `test -f 'chafa-symbol-map.c' || echo './'`chafa-symbol-map.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c chafa-symbol-map.c -fPIC -DPIC -o .libs/libchafa_la-chafa-symbol-map.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c chafa-symbol-map.c -o libchafa_la-chafa-symbol-map.o
mv -f .deps/libchafa_la-chafa-symbol-map.Tpo .deps/libchafa_la-chafa-symbol-map.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c -o libchafa_la-chafa-term-db.lo `test -f 'chafa-term-db.c' || echo './'`chafa-term-db.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c chafa-term-db.c -fPIC -DPIC -o .libs/libchafa_la-chafa-term-db.o
chafa-term-db.c:247:21: warning: unused variable 'default_key_seqs' [-Wunused-const-variable]
247 | static const SeqStr default_key_seqs [] =
| ^~~~~~~~~~~~~~~~
1 warning generated.
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c chafa-term-db.c -o libchafa_la-chafa-term-db.o
chafa-term-db.c:247:21: warning: unused variable 'default_key_seqs' [-Wunused-const-variable]
247 | static const SeqStr default_key_seqs [] =
| ^~~~~~~~~~~~~~~~
1 warning generated.
mv -f .deps/libchafa_la-chafa-term-db.Tpo .deps/libchafa_la-chafa-term-db.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c -o libchafa_la-chafa-term-info.lo `test -f 'chafa-term-info.c' || echo './'`chafa-term-info.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c chafa-term-info.c -fPIC -DPIC -o .libs/libchafa_la-chafa-term-info.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c chafa-term-info.c -o libchafa_la-chafa-term-info.o
mv -f .deps/libchafa_la-chafa-term-info.Tpo .deps/libchafa_la-chafa-term-info.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c -o libchafa_la-chafa-util.lo `test -f 'chafa-util.c' || echo './'`chafa-util.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c chafa-util.c -fPIC -DPIC -o .libs/libchafa_la-chafa-util.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c chafa-util.c -o libchafa_la-chafa-util.o
mv -f .deps/libchafa_la-chafa-util.Tpo .deps/libchafa_la-chafa-util.Plo
/usr/bin/libtool --tag=CC --mode=link cc -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic -no-undefined -version-info 10:1:10 -o libchafa.la -rpath /usr/local/lib libchafa_la-chafa-canvas.lo libchafa_la-chafa-canvas-config.lo libchafa_la-chafa-features.lo libchafa_la-chafa-frame.lo libchafa_la-chafa-image.lo libchafa_la-chafa-placement.lo libchafa_la-chafa-symbol-map.lo libchafa_la-chafa-term-db.lo libchafa_la-chafa-term-info.lo libchafa_la-chafa-util.lo -L/usr/local/lib -lglib-2.0 -lintl internal/libchafa-internal.la -lm
libtool: link: cc -shared -fPIC -DPIC -o .libs/libchafa.so.5.0 -pthread -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic .libs/libchafa_la-chafa-canvas.o .libs/libchafa_la-chafa-canvas-config.o .libs/libchafa_la-chafa-features.o .libs/libchafa_la-chafa-frame.o .libs/libchafa_la-chafa-image.o .libs/libchafa_la-chafa-placement.o .libs/libchafa_la-chafa-symbol-map.o .libs/libchafa_la-chafa-term-db.o .libs/libchafa_la-chafa-term-info.o .libs/libchafa_la-chafa-util.o -Wl,-whole-archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a -Wl,-no-whole-archive -L.libs -lglib-2.0 -liconv -lintl -lpcre2-8 -lpthread -lm -Wl,-soname,libchafa.so.5.0
ld.lld: error: relocation R_386_PC32 cannot be used against symbol '__cpu_indicator_init'; recompile with -fPIC
>>> defined in /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a(libsmolscale_la-smolscale.o)
>>> referenced by smolscale.c
>>> libsmolscale_la-smolscale.o:(smol_scale_init) in archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a(libsmolscale_la-smolscale.o)
>>> referenced by smolscale.c
>>> libsmolscale_la-smolscale.o:(smol_scale_init) in archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Error while executing cc -shared -fPIC -DPIC -o .libs/libchafa.so.5.0 -pthread -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic .libs/libchafa_la-chafa-canvas.o .libs/libchafa_la-chafa-canvas-config.o .libs/libchafa_la-chafa-features.o .libs/libchafa_la-chafa-frame.o .libs/libchafa_la-chafa-image.o .libs/libchafa_la-chafa-placement.o .libs/libchafa_la-chafa-symbol-map.o .libs/libchafa_la-chafa-term-db.o .libs/libchafa_la-chafa-term-info.o .libs/libchafa_la-chafa-util.o -Wl,-whole-archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a -Wl,-no-whole-archive -L.libs -lglib-2.0 -liconv -lintl -lpcre2-8 -lpthread -lm -Wl,-soname,libchafa.so.5.0
*** Error 2 in chafa (Makefile:572 'libchafa.la')
*** Error 1 in chafa (Makefile:768 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_runnin...)
*** Error 2 in chafa (Makefile:489 'all')
*** Error 1 in . (Makefile:531 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_wi...)
*** Error 2 in /pobj/chafa-1.16.1/chafa-1.16.1 (Makefile:415 'all')
*** Error 2 in graphics/chafa (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/chafa-1.16.1/.build_done': @cd /pobj/chafa-1.16.1/chafa-...)
*** Error 2 in graphics/chafa (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=chafa-1.16.1p1; export _LOCKS_HELD=" chafa-1.16...)
===> Exiting graphics/chafa with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756342410.78
max_stuck=0.00/depends=3.08/show-prepare-results=2.67/patch=1.23/configure=35.11/build=60.71
Error: job failed with 512 on i386-2 at 1756342410
==> failures/graphics/mapnik.log <==
[247/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_datasource.cpp
[248/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_featureset.cpp
[249/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_index_featureset.cpp
[250/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/ogr/CMakeFiles/input-ogr.dir/link.d -shared -o out/plugins/input/ogr.input plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_converter.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_utils.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libgdal.so.51.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[251/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_datasource.cpp
[252/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_featureset.cpp
[253/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_wkb_reader.cpp
[254/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/pgraster/CMakeFiles/input-pgraster.dir/link.d -shared -o out/plugins/input/pgraster.input plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[255/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_postgis_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -MF plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o.d -o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/postgis/postgis_featureset.cpp
[256/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_datasource.cpp
[257/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_postgis_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o -MF plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o.d -o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/postgis/postgis_datasource.cpp
[258/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/postgis/CMakeFiles/input-postgis.dir/link.d -shared -o out/plugins/input/postgis.input plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[259/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_info.cpp
[260/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_featureset.cpp
[261/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/raster/CMakeFiles/input-raster.dir/link.d -shared -o out/plugins/input/raster.input plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[262/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/dbf_test.cpp
[263/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/dbfile.cpp
[264/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_datasource.cpp
[265/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_featureset.cpp
[266/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_index_featureset.cpp
[267/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_utils.cpp
[268/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_io.cpp
[269/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/shape/CMakeFiles/input-shape.dir/link.d -shared -o out/plugins/input/shape.input plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[270/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_sqlite_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -MF plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o.d -o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite/sqlite_featureset.cpp
[271/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_sqlite_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o -MF plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o.d -o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite/sqlite_datasource.cpp
[272/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/sqlite/CMakeFiles/input-sqlite.dir/link.d -shared -o out/plugins/input/sqlite.input plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[273/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DMAPNIK_VECTOR_TILE_LIBRARY=1 -DSVG_RENDERER -Dinput_tiles_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/mapnik-vector-tile/src -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -MF plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o.d -o plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp
FAILED: plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o
/pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DMAPNIK_VECTOR_TILE_LIBRARY=1 -DSVG_RENDERER -Dinput_tiles_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/mapnik-vector-tile/src -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -MF plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o.d -o plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp
In file included from /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp:26:
/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/pmtiles_source.hpp:525:51: error: non-constant-expression cannot be narrowed from type 'std::uint64_t' (aka 'unsigned long long') to 'size_type' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
525 | metadata = {data() + metadata_offset, metadata_length};
| ^~~~~~~~~~~~~~~
/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/pmtiles_source.hpp:525:51: note: insert an explicit cast to silence this issue
525 | metadata = {data() + metadata_offset, metadata_length};
| ^~~~~~~~~~~~~~~
| static_cast<size_type>( )
1 error generated.
[274/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_topojson_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o -MF plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o.d -o plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/topojson/topojson_datasource.cpp
[275/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_topojson_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o -MF plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o.d -o plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/topojson/topojson_featureset.cpp
ninja: build stopped: subcommand failed.
*** Error 1 in graphics/mapnik (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/mapnik-4.1.2/build-i386 && exec /usr/bin/env -...)
*** Error 2 in graphics/mapnik (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/mapnik-4.1.2/build-i386/.build_done': @cd /usr/ports/gr...)
*** Error 2 in graphics/mapnik (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=mapnik-4.1.2; export _LOCKS_HELD=" mapnik-4.1....)
===> Exiting graphics/mapnik with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756358206.56
max_stuck=34.09/depends=3.09/show-prepare-results=2.88/extract=6.14/patch=0.60/configure=18.53/build=832.92
Error: job failed with 512 on i386-1 at 1756358206
==> failures/graphics/orthanc/server.log <==
[228/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancPluginDatabaseV4.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/OrthancPluginDatabaseV4.cpp
[229/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancPlugins.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/OrthancPlugins.cpp
[230/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsEnumerations.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsEnumerations.cpp
[231/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsErrorDictionary.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsErrorDictionary.cpp
[232/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsJob.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsJob.cpp
[233/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsManager.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsManager.cpp
[234/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancDatabasePlugin.pb.cc\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o -MF CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o.d -o CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o -c /pobj/orthanc-1.12.7/build-i386/AUTOGENERATED/OrthancDatabasePlugin.pb.cc
/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED/OrthancDatabasePlugin.pb.cc:3:10: warning: undefining builtin macro [-Wbuiltin-macro-redefined]
3 | # undef __FILE__
| ^
1 warning generated.
[235/276] : && /usr/local/bin/cmake -E rm -f libServerLibrary.a && /usr/bin/ar qc libServerLibrary.a CMakeFiles/ServerLibrary.dir/Sources/Database/BaseCompatibilityTransaction.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/DatabaseLookup.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/GenericFind.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ICreateInstance.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/IGetChildrenMetadata.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ILookupResourceAndParent.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ILookupResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/SetOfResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/FindRequest.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/FindResponse.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/MainDicomTagsRegistry.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/OrthancIdentifiers.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/ResourcesContent.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/SQLiteDatabaseWrapper.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/StatelessDatabaseOperations.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/VoidDatabaseListener.cpp.o CMakeFiles/ServerLibrary.dir/Sources/DicomInstanceOrigin.cpp.o CMakeFiles/ServerLibrary.dir/Sources/DicomInstanceToStore.cpp.o CMakeFiles/ServerLibrary.dir/Sources/EmbeddedResourceHttpHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ExportedResource.cpp.o CMakeFiles/ServerLibrary.dir/Sources/LuaScripting.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancConfiguration.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancFindRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancGetRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancHttpHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancInitialization.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancMoveRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestAnonymizeModify.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestApi.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestArchive.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestChanges.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestModalities.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestSystem.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancWebDav.cpp.o CMakeFiles/ServerLibrary.dir/Sources/QueryRetrieveHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ResourceFinder.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseDicomTagConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseDicomTagConstraints.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseMetadataConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseLookup.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DicomTagConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/HierarchicalMatcher.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/ISqlLookupFormatter.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerContext.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerEnumerations.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerIndex.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ArchiveJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/CleaningInstancesJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomModalityStoreJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomRetrieveScuBaseJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomGetScuJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomMoveScuJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/LuaJobManager.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/MergeStudyJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/DeleteResourceOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/DicomInstanceOperationValue.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/ModifyInstanceOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/StorePeerOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/StoreScuOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/SystemCallOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/OrthancJobUnserializer.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/OrthancPeerStoreJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ResourceModificationJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/SplitStudyJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/StorageCommitmentScpJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ThreadedSetOfInstancesJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerToolbox.cpp.o CMakeFiles/ServerLibrary.dir/Sources/SimpleInstanceOrdering.cpp.o CMakeFiles/ServerLibrary.dir/Sources/SliceOrdering.cpp.o CMakeFiles/ServerLibrary.dir/Sources/StorageCommitmentReports.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabase.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV3.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o && /usr/bin/ranlib libServerLibrary.a && :
[236/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"main.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/Orthanc.dir/Sources/main.cpp.o -MF CMakeFiles/Orthanc.dir/Sources/main.cpp.o.d -o CMakeFiles/Orthanc.dir/Sources/main.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Sources/main.cpp
[237/276] : && /pobj/orthanc-1.12.7/bin/c++ -O2 -pipe -I/usr/local/include -DNDEBUG -L/usr/local/lib -Xlinker --dependency-file=CMakeFiles/Orthanc.dir/link.d CMakeFiles/Orthanc.dir/Sources/main.cpp.o -o Orthanc -L/usr/local/lib -Wl,-z,origin,-rpath,/usr/local/lib: libServerLibrary.a libCoreLibrary.a -lofstd -loflog -loficonv -ldcmdata -li2d -ldcmxml -ldcmimgle -ldcmimage -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmjpls -ldcmtkcharls -ldcmtls -ldcmnet -ldcmsr -lcmr -ldcmdsig -ldcmwlm -ldcmqrdb -ldcmpstat -ldcmrt -ldcmiod -ldcmfg -ldcmseg -ldcmtract -ldcmpmap -ldcmect -lpthread -lsqlite3 /usr/lib/libssl.so.60.1 /usr/lib/libcrypto.so.57.1 /usr/local/lib/libcurl.so.26.32 -lcivetweb /usr/local/lib/libjpeg.so.71.0 /usr/lib/libz.so.7.1 /usr/local/lib/libpng.so.18.2 /usr/local/lib/liblua5.1.so.5.1 /usr/lib/libm.so.10.1 -lpugixml -liconv -lprotobuf -ljsoncpp /usr/local/lib/libuuid.so.14.1 /usr/local/lib/libboost_locale-mt.so.24.0 /usr/local/lib/libboost_chrono-mt.so.24.0 /usr/local/lib/libboost_filesystem-mt.so.24.0 /usr/local/lib/libboost_atomic-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_iostreams-mt.so.24.0 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/local/lib/libboost_random-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && cd /pobj/orthanc-1.12.7/build-i386 && /usr/local/bin/doxygen /pobj/orthanc-1.12.7/build-i386/OrthancPlugin.doxygen
FAILED: Orthanc
: && /pobj/orthanc-1.12.7/bin/c++ -O2 -pipe -I/usr/local/include -DNDEBUG -L/usr/local/lib -Xlinker --dependency-file=CMakeFiles/Orthanc.dir/link.d CMakeFiles/Orthanc.dir/Sources/main.cpp.o -o Orthanc -L/usr/local/lib -Wl,-z,origin,-rpath,/usr/local/lib: libServerLibrary.a libCoreLibrary.a -lofstd -loflog -loficonv -ldcmdata -li2d -ldcmxml -ldcmimgle -ldcmimage -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmjpls -ldcmtkcharls -ldcmtls -ldcmnet -ldcmsr -lcmr -ldcmdsig -ldcmwlm -ldcmqrdb -ldcmpstat -ldcmrt -ldcmiod -ldcmfg -ldcmseg -ldcmtract -ldcmpmap -ldcmect -lpthread -lsqlite3 /usr/lib/libssl.so.60.1 /usr/lib/libcrypto.so.57.1 /usr/local/lib/libcurl.so.26.32 -lcivetweb /usr/local/lib/libjpeg.so.71.0 /usr/lib/libz.so.7.1 /usr/local/lib/libpng.so.18.2 /usr/local/lib/liblua5.1.so.5.1 /usr/lib/libm.so.10.1 -lpugixml -liconv -lprotobuf -ljsoncpp /usr/local/lib/libuuid.so.14.1 /usr/local/lib/libboost_locale-mt.so.24.0 /usr/local/lib/libboost_chrono-mt.so.24.0 /usr/local/lib/libboost_filesystem-mt.so.24.0 /usr/local/lib/libboost_atomic-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_iostreams-mt.so.24.0 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/local/lib/libboost_random-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && cd /pobj/orthanc-1.12.7/build-i386 && /usr/local/bin/doxygen /pobj/orthanc-1.12.7/build-i386/OrthancPlugin.doxygen
ld.lld: warning: CommandDispatcher.cpp(CommandDispatcher.cpp.o:(Orthanc::Internals::ReadString(DcmDataset&, DcmTagKey const&)) in archive libCoreLibrary.a): warning: sprintf() is often misused, please use snprintf()
ld.lld: warning: zip.c(zip.c.o:(zipOpenNewFileInZip4_64) in archive libCoreLibrary.a): warning: rand() may return deterministic values, is that what you want?
ld.lld: error: undefined symbol: char const* absl::lts_20250512::log_internal::MakeCheckOpString<unsigned long long, unsigned long long>(unsigned long long, unsigned long long, char const*)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::LogMessageFatal(char const*, int, char const*)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: void absl::lts_20250512::log_internal::LogMessage::CopyToEncodedBuffer<(absl::lts_20250512::log_internal::LogMessage::StringType)0>(std::__1::basic_string_view<char, std::__1::char_traits<char>>)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessage::Flush()
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::~LogMessageFatal()
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
c++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in graphics/orthanc/server (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/orthanc-1.12.7/build-i386 && exec /usr...)
*** Error 2 in graphics/orthanc/server (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/orthanc-1.12.7/build-i386/.build_done': @cd /us...)
*** Error 2 in graphics/orthanc/server (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=orthanc-1.12.7p1; export _LOCKS_HELD="...)
===> Exiting graphics/orthanc/server with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756379958.45
max_stuck=26.27/depends=35.15/show-prepare-results=4.88/patch=1.29/configure=25.73/build=1216.03
Error: job failed with 512 on i386-2 at 1756379958
==> failures/lang/apl.log <==
| ^
In file included from file_io.cc:26:
In file included from ./../Quad_FIO.hh:24:
In file included from /usr/include/c++/v1/vector:325:
In file included from /usr/include/c++/v1/__format/formatter_bool.h:19:
In file included from /usr/include/c++/v1/__format/formatter_integral.h:21:
In file included from /usr/include/c++/v1/__format/formatter_output.h:22:
In file included from /usr/include/c++/v1/__format/parser_std_format_spec.h:39:
/usr/include/c++/v1/string:2841:7: error: implicit instantiation of undefined template 'std::char_traits<Unicode>'
2841 | traits_type::copy(__p + __sz, __s, __n);
| ^
/usr/include/c++/v1/string:1386:12: note: in instantiation of member function 'std::basic_string<Unicode>::append' requested here
1386 | return append(__sv.data(), __sv.size());
| ^
./../UCS_string.hh:220:23: note: in instantiation of function template specialization 'std::basic_string<Unicode>::append<UCS_string, 0>' requested here
220 | { basic_string::append(other); }
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from file_io.cc:26:
In file included from ./../Quad_FIO.hh:24:
In file included from /usr/include/c++/v1/vector:325:
In file included from /usr/include/c++/v1/__format/formatter_bool.h:19:
In file included from /usr/include/c++/v1/__format/formatter_integral.h:21:
In file included from /usr/include/c++/v1/__format/formatter_output.h:22:
In file included from /usr/include/c++/v1/__format/parser_std_format_spec.h:39:
/usr/include/c++/v1/string:2844:7: error: implicit instantiation of undefined template 'std::char_traits<Unicode>'
2844 | traits_type::assign(__p[__sz], value_type());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
Error while executing c++ -DHAVE_CONFIG_H -I. -I../.. -I ./.. -g -O2 -pipe -std=c++14 -I/usr/local/include -MT lib_file_io_la-file_io.lo -MD -MP -MF .deps/lib_file_io_la-file_io.Tpo -c file_io.cc -fPIC -DPIC -o .libs/lib_file_io_la-file_io.o
gmake[3]: *** [Makefile:558: lib_file_io_la-file_io.lo] Error 2
gmake[3]: Leaving directory '/pobj/apl-1.8/apl-1.8/src/native'
gmake[2]: *** [Makefile:4484: all-recursive] Error 1
gmake[2]: Leaving directory '/pobj/apl-1.8/apl-1.8/src'
gmake[1]: *** [Makefile:524: all-recursive] Error 1
gmake[1]: Leaving directory '/pobj/apl-1.8/apl-1.8'
gmake: *** [Makefile:411: all] Error 2
*** Error 2 in lang/apl (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/apl-1.8/.build_done': @cd /pobj/apl-1.8/apl-1.8 && exec /usr/...)
*** Error 2 in lang/apl (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=apl-1.8p3; export _LOCKS_HELD=" apl-1.8p3"; /usr/bi...)
===> Exiting lang/apl with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756393780.70
max_stuck=0.00/waiting-for-lock #278=3.36/depends=5.74/show-prepare-results=2.12/patch=2.19/configure=51.12/build=3.26
Error: job failed with 512 on i386-2 at 1756393780
==> failures/multimedia/sfml.log <==
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:28:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/String.hpp:32:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/Utf.hpp:33:
In file included from /usr/include/c++/v1/locale:205:
In file included from /usr/include/c++/v1/__locale:24:
/usr/include/c++/v1/string:2368:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned int>'
2368 | traits_type::copy(std::__to_address(__p), __s, __sz + 1);
| ^
/usr/include/c++/v1/string:1005:7: note: in instantiation of member function 'std::basic_string<unsigned int>::__init_copy_ctor_external' requested here
1005 | __init_copy_ctor_external(std::__to_address(__str.__get_long_pointer()), __str.__get_long_size());
| ^
/pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:123:1: note: in instantiation of member function 'std::basic_string<unsigned int>::basic_string' requested here
123 | m_string(utf32String)
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:28:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/String.hpp:32:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/Utf.hpp:33:
In file included from /usr/include/c++/v1/locale:205:
In file included from /usr/include/c++/v1/__locale:24:
/usr/include/c++/v1/string:3396:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
3396 | traits_type::copy(std::__to_address(__new_data), std::__to_address(__p), size() + 1);
| ^
/usr/include/c++/v1/string:3333:3: note: in instantiation of member function 'std::basic_string<unsigned char>::__shrink_or_extend' requested here
3333 | __shrink_or_extend(__target_capacity);
| ^
/pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:182:12: note: in instantiation of member function 'std::basic_string<unsigned char>::reserve' requested here
182 | output.reserve(m_string.length());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
ninja: build stopped: subcommand failed.
*** Error 1 in multimedia/sfml (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/sfml-2.5.1/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in multimedia/sfml (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/sfml-2.5.1/build-i386/.build_done': @cd /usr/ports/mult...)
*** Error 2 in multimedia/sfml (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=sfml-2.5.1p0; export _LOCKS_HELD=" sfml-2.5.1p...)
===> Exiting multimedia/sfml with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756379303.63
max_stuck=0.00/depends=3.65/show-prepare-results=2.25/patch=4.83/configure=4.61/build=5.17
Error: job failed with 512 on localhost at 1756379303
==> failures/productivity/libphonenumber.log <==
[87/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/utf/unicodetext.cc
[88/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/utf/unilib.cc
[89/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/regexp_adapter_icu.cc
[90/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/phonenumbermatch.cc
[91/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/phonenumbermatcher.cc
[92/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/alternate_format.cc
[93/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/area_code_map.cc
[94/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/default_map_storage.cc
[95/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/geocoding_data.cc
[96/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/mapping_file_provider.cc
[97/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc
[98/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/test_metadata.cc
[99/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/short_metadata.cc
[100/127] : && /usr/local/bin/cmake -E rm -f libphonenumber_testing.a && /usr/bin/ar qc libphonenumber_testing.a CMakeFiles/phonenumber_testing.dir/src/phonenumbers/asyoutypeformatter.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/base/strings/string_piece.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/default_logger.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/logger.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonemetadata.pb.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumber.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumber.pb.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumberutil.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regex_based_matcher.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_cache.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/shortnumberinfo.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/string_byte_sink.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/stringutil.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/unicodestring.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/rune.c.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o && /usr/bin/ranlib libphonenumber_testing.a && :
[101/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -MF CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o.d -o CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test/phonenumbers/geocoding/geocoding_test_program.cc
[102/127] : && /pobj/libphonenumber-9.0.12/bin/c++ -O2 -pipe -DNDEBUG -Xlinker --dependency-file=CMakeFiles/geocoding_test_program.dir/link.d CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -o geocoding_test_program -Wl,-z,origin,-rpath,/usr/local/lib libgeocoding.a libphonenumber.a /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libprotobuf.so.32.0 /usr/local/lib/libabsl_raw_hash_set.so.7.0 /usr/local/lib/libabsl_cord.so.7.0 /usr/local/lib/libabsl_cordz_info.so.7.0 /usr/local/lib/libabsl_cord_internal.so.7.0 /usr/local/lib/libabsl_cordz_functions.so.7.0 /usr/local/lib/libabsl_cordz_handle.so.7.0 /usr/local/lib/libabsl_crc_cord_state.so.7.0 /usr/local/lib/libabsl_crc32c.so.7.0 /usr/local/lib/libabsl_crc_internal.so.7.0 /usr/local/lib/libabsl_crc_cpu_detect.so.7.0 /usr/local/lib/libabsl_str_format_internal.so.7.0 /usr/local/lib/libabsl_hash.so.7.0 /usr/local/lib/libabsl_city.so.7.0 /usr/local/lib/libabsl_low_level_hash.so.7.0 /usr/local/lib/libabsl_hashtablez_sampler.so.7.0 /usr/local/lib/libabsl_exponential_biased.so.7.0 /usr/local/lib/libabsl_synchronization.so.7.0 /usr/local/lib/libabsl_graphcycles_internal.so.7.0 /usr/local/lib/libabsl_kernel_timeout_internal.so.7.0 /usr/local/lib/libabsl_stacktrace.so.7.0 /usr/local/lib/libabsl_symbolize.so.7.0 /usr/local/lib/libabsl_malloc_internal.so.7.0 /usr/local/lib/libabsl_debugging_internal.so.7.0 /usr/local/lib/libabsl_demangle_internal.so.7.0 /usr/local/lib/libabsl_demangle_rust.so.7.0 /usr/local/lib/libabsl_decode_rust_punycode.so.7.0 /usr/local/lib/libabsl_utf8_for_code_point.so.7.0 /usr/local/lib/libabsl_tracing_internal.so.7.0 /usr/local/lib/libabsl_time.so.7.0 /usr/local/lib/libabsl_strings.so.7.0 /usr/local/lib/libabsl_strings_internal.so.7.0 /usr/local/lib/libabsl_string_view.so.7.0 /usr/local/lib/libabsl_throw_delegate.so.7.0 /usr/local/lib/libabsl_int128.so.7.0 /usr/local/lib/libabsl_base.so.7.0 /usr/local/lib/libabsl_spinlock_wait.so.7.0 /usr/local/lib/libabsl_raw_logging_internal.so.7.0 /usr/local/lib/libabsl_log_severity.so.7.0 /usr/local/lib/libabsl_civil_time.so.7.0 /usr/local/lib/libabsl_time_zone.so.7.0 /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
FAILED: geocoding_test_program
: && /pobj/libphonenumber-9.0.12/bin/c++ -O2 -pipe -DNDEBUG -Xlinker --dependency-file=CMakeFiles/geocoding_test_program.dir/link.d CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -o geocoding_test_program -Wl,-z,origin,-rpath,/usr/local/lib libgeocoding.a libphonenumber.a /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libprotobuf.so.32.0 /usr/local/lib/libabsl_raw_hash_set.so.7.0 /usr/local/lib/libabsl_cord.so.7.0 /usr/local/lib/libabsl_cordz_info.so.7.0 /usr/local/lib/libabsl_cord_internal.so.7.0 /usr/local/lib/libabsl_cordz_functions.so.7.0 /usr/local/lib/libabsl_cordz_handle.so.7.0 /usr/local/lib/libabsl_crc_cord_state.so.7.0 /usr/local/lib/libabsl_crc32c.so.7.0 /usr/local/lib/libabsl_crc_internal.so.7.0 /usr/local/lib/libabsl_crc_cpu_detect.so.7.0 /usr/local/lib/libabsl_str_format_internal.so.7.0 /usr/local/lib/libabsl_hash.so.7.0 /usr/local/lib/libabsl_city.so.7.0 /usr/local/lib/libabsl_low_level_hash.so.7.0 /usr/local/lib/libabsl_hashtablez_sampler.so.7.0 /usr/local/lib/libabsl_exponential_biased.so.7.0 /usr/local/lib/libabsl_synchronization.so.7.0 /usr/local/lib/libabsl_graphcycles_internal.so.7.0 /usr/local/lib/libabsl_kernel_timeout_internal.so.7.0 /usr/local/lib/libabsl_stacktrace.so.7.0 /usr/local/lib/libabsl_symbolize.so.7.0 /usr/local/lib/libabsl_malloc_internal.so.7.0 /usr/local/lib/libabsl_debugging_internal.so.7.0 /usr/local/lib/libabsl_demangle_internal.so.7.0 /usr/local/lib/libabsl_demangle_rust.so.7.0 /usr/local/lib/libabsl_decode_rust_punycode.so.7.0 /usr/local/lib/libabsl_utf8_for_code_point.so.7.0 /usr/local/lib/libabsl_tracing_internal.so.7.0 /usr/local/lib/libabsl_time.so.7.0 /usr/local/lib/libabsl_strings.so.7.0 /usr/local/lib/libabsl_strings_internal.so.7.0 /usr/local/lib/libabsl_string_view.so.7.0 /usr/local/lib/libabsl_throw_delegate.so.7.0 /usr/local/lib/libabsl_int128.so.7.0 /usr/local/lib/libabsl_base.so.7.0 /usr/local/lib/libabsl_spinlock_wait.so.7.0 /usr/local/lib/libabsl_raw_logging_internal.so.7.0 /usr/local/lib/libabsl_log_severity.so.7.0 /usr/local/lib/libabsl_civil_time.so.7.0 /usr/local/lib/libabsl_time_zone.so.7.0 /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
ld.lld: error: undefined symbol: char const* absl::lts_20250512::log_internal::MakeCheckOpString<unsigned long long, unsigned long long>(unsigned long long, unsigned long long, char const*)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::LogMessageFatal(char const*, int, char const*)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: void absl::lts_20250512::log_internal::LogMessage::CopyToEncodedBuffer<(absl::lts_20250512::log_internal::LogMessage::StringType)0>(std::__1::basic_string_view<char, std::__1::char_traits<char>>)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessage::Flush()
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::~LogMessageFatal()
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
c++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in productivity/libphonenumber (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/libphonenumber-9.0.12/build-i386 &...)
*** Error 2 in productivity/libphonenumber (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/libphonenumber-9.0.12/build-i386/.build_done')
*** Error 2 in productivity/libphonenumber (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=libphonenumber-9.0.12; export _LOC...)
===> Exiting productivity/libphonenumber with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756304817.67
max_stuck=4.57/depends=3.84/show-prepare-results=2.42/patch=3.14/configure=9.69/build=295.40
Error: job failed with 512 on localhost at 1756304817
----- End forwarded message -----
my last build. tail of logs are below.
__cpu_model__, etc:
archivers/blosc2
archivers/unrar
games/moonlight-qt
graphics/chafa
c++:
audio/xmms2
editors/le
games/openmw
games/scorched3d
games/xye
multimedia/sfml
lang/apl
graphics/orthanc/server (abseil)
segfault in c++ compiler:
games/luanti
c++, 32-bit only?:
graphics/mapnik
productivity/libphonenumber
==> failures/archivers/blosc2.log <==
[66/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/trunc-prec.c
[67/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/timestamp.c
[68/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/sframe.c
[69/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/directories.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/directories.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/directories.c
[70/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/blosc2-stdio.c
/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/blosc2-stdio.c:376:13: warning: unused variable 'old_mapping_size' [-Wunused-variable]
376 | int64_t old_mapping_size = mmap_file->mapping_size;
| ^~~~~~~~~~~~~~~~
1 warning generated.
[71/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/b2nd.c
[72/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/b2nd_utils.c
[73/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -msse2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle-sse2.c
[74/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -msse2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-sse2.c
[75/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle-avx2.c
[76/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx2 -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-avx2.c
[77/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -mavx512f -mavx512bw -MD -MT blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/bitshuffle-avx512.c
[78/466] /pobj/blosc2-2.15.2/bin/cc -DBLOSC_SHARED_LIBRARY -DBUILD_STATIC -DUSING_CMAKE -Dblosc2_shared_EXPORTS -DSHUFFLE_AVX2_ENABLED -DSHUFFLE_AVX512_ENABLED -DSHUFFLE_SSE2_ENABLED -I/pobj/blosc2-2.15.2/build-i386/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/plugins/codecs/zfp/include -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc -I/pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/../include -I/usr/local/include -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -fPIC -fvisibility=hidden -Wall -Wextra -pthread -MD -MT blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -MF blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o.d -o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -c /pobj/blosc2-2.15.2/c-blosc2-2.15.2/blosc/shuffle.c
[79/466] : && /pobj/blosc2-2.15.2/bin/cc -fPIC -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -Xlinker --dependency-file=blosc/CMakeFiles/blosc2_shared.dir/link.d -shared -Wl,-soname,libblosc2.so.4.0 -o blosc/libblosc2.so.4.0 blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz4x4.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz8x8.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/xxhash.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/blosc2-zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/bitstream.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/codecs-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/tuners/tuners-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndcell/ndcell.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndmean/ndmean.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/bytedelta/bytedelta.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/int_trunc/int_trunc.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/filters-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2.c.o blosc/CMakeFiles/blosc2_shared.dir/blosclz.c.o blosc/CMakeFiles/blosc2_shared.dir/fastcopy.c.o blosc/CMakeFiles/blosc2_shared.dir/schunk.c.o blosc/CMakeFiles/blosc2_shared.dir/frame.c.o blosc/CMakeFiles/blosc2_shared.dir/stune.c.o blosc/CMakeFiles/blosc2_shared.dir/delta.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -Wl,-z,origin,-rpath,/usr/local/lib: /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 -lm /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 -lm -pthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
FAILED: blosc/libblosc2.so.4.0
: && /pobj/blosc2-2.15.2/bin/cc -fPIC -std=gnu99 -D_XOPEN_SOURCE=600 -DNDEBUG -Xlinker --dependency-file=blosc/CMakeFiles/blosc2_shared.dir/link.d -shared -Wl,-soname,libblosc2.so.4.0 -o blosc/libblosc2.so.4.0 blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz4x4.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/ndlz8x8.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/ndlz/xxhash.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/blosc2-zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/bitstream.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/decode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode1l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode2l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode3l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4d.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4f.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4i.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/encode4l.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/zfp/src/zfp.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/codecs/codecs-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/tuners/tuners-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndcell/ndcell.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/ndmean/ndmean.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/bytedelta/bytedelta.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/int_trunc/int_trunc.c.o blosc/CMakeFiles/blosc2_shared.dir/__/plugins/filters/filters-registry.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2.c.o blosc/CMakeFiles/blosc2_shared.dir/blosclz.c.o blosc/CMakeFiles/blosc2_shared.dir/fastcopy.c.o blosc/CMakeFiles/blosc2_shared.dir/schunk.c.o blosc/CMakeFiles/blosc2_shared.dir/frame.c.o blosc/CMakeFiles/blosc2_shared.dir/stune.c.o blosc/CMakeFiles/blosc2_shared.dir/delta.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-generic.c.o blosc/CMakeFiles/blosc2_shared.dir/trunc-prec.c.o blosc/CMakeFiles/blosc2_shared.dir/timestamp.c.o blosc/CMakeFiles/blosc2_shared.dir/sframe.c.o blosc/CMakeFiles/blosc2_shared.dir/directories.c.o blosc/CMakeFiles/blosc2_shared.dir/blosc2-stdio.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd.c.o blosc/CMakeFiles/blosc2_shared.dir/b2nd_utils.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-sse2.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx2.c.o blosc/CMakeFiles/blosc2_shared.dir/bitshuffle-avx512.c.o blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o -Wl,-z,origin,-rpath,/usr/local/lib: /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 /usr/local/lib/libzstd.so.7.0 -lm /usr/local/lib/liblz4.so.3.3 /usr/lib/libz.so.7.1 -lm -pthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o
>>> referenced by shuffle.c
>>> blosc/CMakeFiles/blosc2_shared.dir/shuffle.c.o:(blosc_get_cpu_features)
cc: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in archivers/blosc2 (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/blosc2-2.15.2/build-i386 && exec /usr/bin/env...)
*** Error 2 in archivers/blosc2 (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/blosc2-2.15.2/build-i386/.build_done': @cd /usr/ports/...)
*** Error 2 in archivers/blosc2 (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=blosc2-2.15.2p0; export _LOCKS_HELD=" blosc2-...)
===> Exiting archivers/blosc2 with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756341600.36
max_stuck=0.00/depends=2.59/show-prepare-results=1.39/patch=0.91/configure=7.12/build=22.54
Error: job failed with 512 on localhost at 1756341600
==> failures/archivers/unrar.log <==
| ^
./cmdfilter.cpp:267:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
267 | else // Condition matched.
| ^
cmddata.cpp:923:17: warning: add explicit braces to avoid dangling else [-Wdangling-else]
923 | else
| ^
cmddata.cpp:1127:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
1127 | else
| ^
8 warnings generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c ui.cpp
In file included from ui.cpp:12:
./uiconsole.cpp:101:10: warning: 74 enumeration values not handled in switch: 'UIERROR_INCERRCOUNT', 'UIERROR_NOTSFX', 'UIERROR_OLDTOSFX'... [-Wswitch]
101 | switch(Code)
| ^~~~
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c largepage.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c filestr.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c recvol.cpp
In file included from recvol.cpp:4:
./recvol3.cpp:75:7: warning: add explicit braces to avoid dangling else [-Wdangling-else]
75 | else
| ^
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c rs.cpp
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c scantree.cpp
scantree.cpp:241:5: warning: add explicit braces to avoid dangling else [-Wdangling-else]
241 | else
| ^
1 warning generated.
c++ -O2 -pipe -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DRAR_SMP -DUNRAR -c qopen.cpp
c++ -o unrar -pthread rar.o strlist.o strfn.o pathfn.o smallfn.o global.o file.o filefn.o filcreat.o archive.o arcread.o unicode.o system.o crypt.o crc.o rawread.o encname.o resource.o match.o timefn.o rdwrfn.o consio.o options.o errhnd.o rarvm.o secpassword.o rijndael.o getbits.o sha1.o sha256.o blake2s.o hash.o extinfo.o extract.o volume.o list.o find.o unpack.o headers.o threadpool.o rs16.o cmddata.o ui.o largepage.o filestr.o recvol.o rs.o scantree.o qopen.o = 9
ld.lld: warning: strlist.cpp(strlist.o:(StringList::AddString(wchar_t const*))): warning: wcscpy() is almost always misused, please use wcslcpy()
ld.lld: error: undefined symbol: __cpu_model
>>> referenced by rijndael.cpp
>>> rijndael.o:(Rijndael::Init(bool, unsigned char const*, unsigned int, unsigned char const*))
>>> referenced by system.cpp
>>> system.o:(GetSSEVersion())
>>> referenced by system.cpp
>>> system.o:(_GLOBAL__sub_I_system.cpp)
c++: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error 1 in /pobj/unrar-7.13/unrar (makefile:52 'unrar')
*** Error 2 in archivers/unrar (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/unrar-7.13/.build_done': @cd /pobj/unrar-7.13/unrar && ...)
*** Error 2 in archivers/unrar (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=unrar-7.13v2; export _LOCKS_HELD=" unrar-7.13v...)
===> Exiting archivers/unrar with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756374503.96
max_stuck=0.11/waiting-for-lock #240=9.50/patch=1.32/configure=0.54/build=143.53
Error: job failed with 512 on i386-2 at 1756374503
==> failures/audio/xmms2.log <==
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:19:
In file included from ../src/include/xmmsclient/xmmsclient++/helpers.h:27:
/usr/local/include/boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
36 | BOOST_PRAGMA_MESSAGE(
| ^
/usr/local/include/boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'
24 | # define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))
| ^
<scratch space>:80:2: note: expanded from here
80 | message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
| ^
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:18:
In file included from ../src/include/xmmsclient/xmmsclient++/dict.h:21:
In file included from ../src/include/xmmsclient/xmmsclient++/exceptions.h:21:
/usr/include/c++/v1/string:2343:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
2343 | traits_type::copy(std::__to_address(__p), __s, __sz);
| ^
/usr/include/c++/v1/string:1078:5: note: in instantiation of member function 'std::basic_string<unsigned char>::__init' requested here
1078 | __init(__s, __n);
| ^
../src/include/xmmsclient/xmmsclient++/signal.h:150:14: note: in instantiation of member function 'std::basic_string<unsigned char>::basic_string' requested here
150 | return new std::basic_string<unsigned char>( temp, len );
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from ../src/clients/lib/xmmsclient++/dict.cpp:18:
In file included from ../src/include/xmmsclient/xmmsclient++/dict.h:21:
In file included from ../src/include/xmmsclient/xmmsclient++/exceptions.h:21:
/usr/include/c++/v1/string:2344:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
2344 | traits_type::assign(__p[__sz], value_type());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
3 warnings and 4 errors generated.
Waf: Leaving directory `/pobj/xmms2-0.9.5/xmms2-0.9.5/_build_'
Build failed
-> task in 'xmmsclient++' failed with exit status 1:
{task 2022660616: cxx dict.cpp -> dict.cpp.1.o}
['c++', '-g', '-O2', '-fdiagnostics-show-option', '-fPIC', '-I.', '-I..', '-Isrc/include', '-I../src/include', '-Isrc/includepriv', '-I../src/includepriv', '-I/usr/local/include', '-DXMMS_DISABLE_DEPRECATION_WARNINGS', '../src/clients/lib/xmmsclient++/dict.cpp', '-c', '-o/pobj/xmms2-0.9.5/xmms2-0.9.5/_build_/src/clients/lib/xmmsclient++/dict.cpp.1.o', '-fPIC', '-DPIC']
*** Error 1 in audio/xmms2 (Makefile:83 'do-build')
*** Error 2 in audio/xmms2 (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/xmms2-0.9.5/.build_done': @cd /usr/ports/audio/xmms2 && PKG...)
*** Error 2 in audio/xmms2 (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=xmms2-0.9.5; export _LOCKS_HELD=" xmms2-0.9.5"; ...)
===> Exiting audio/xmms2 with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756394905.40
max_stuck=22.49/depends=7.69/show-prepare-results=5.40/junk=2.21/patch=1.00/configure=26.21/build=186.06
Error: job failed with 512 on i386-1 at 1756394905
==> failures/editors/le.log <==
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:837:40: error: expected ')'
837 | _LIBCPP_HIDE_FROM_ABI inline ios_base& hex(ios_base& __str) {
| ^
./edit.h:158:26: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
/usr/include/c++/v1/ios:837:40: note: to match this '('
./edit.h:158:17: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
In file included from highli.cc:36:
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:838:24: error: expected unqualified-id
838 | __str.setf(ios_base::hex, ios_base::basefield);
| ^
./edit.h:158:17: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ^
In file included from highli.cc:36:
In file included from /usr/include/c++/v1/set:1495:
In file included from /usr/include/c++/v1/functional:552:
In file included from /usr/include/c++/v1/__functional/boyer_moore_searcher.h:27:
In file included from /usr/include/c++/v1/vector:3023:
In file included from /usr/include/c++/v1/locale:212:
/usr/include/c++/v1/ios:838:24: error: comparison between pointer and integer ('ios_base &(*)(ios_base &)' and 'int')
838 | __str.setf(ios_base::hex, ios_base::basefield);
| ^~~
./edit.h:158:26: note: expanded from macro 'hex'
158 | #define hex (editmode==HEXM)
| ~~~~~~~~^ ~~~~
4 errors generated.
*** Error 1 in src (Makefile:1506 'highli.o')
*** Error 1 in . (Makefile:1415 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_w...)
*** Error 2 in /pobj/le-1.16.8/le-1.16.8 (Makefile:1344 'all')
*** Error 2 in editors/le (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/le-1.16.8/.build_done': @cd /pobj/le-1.16.8/le-1.16.8 && exe...)
*** Error 2 in editors/le (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=le-1.16.8; export _LOCKS_HELD=" le-1.16.8"; /usr/...)
===> Exiting editors/le with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756396894.19
max_stuck=0.91/waiting-for-lock #289=3.12/junk=2.19/patch=1.31/configure=81.74/build=25.91
Error: job failed with 512 on i386-1 at 1756396894
==> failures/games/luanti.log <==
[398/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/collision.cpp.o -MF src/CMakeFiles/luanti.dir/collision.cpp.o.d -o src/CMakeFiles/luanti.dir/collision.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/collision.cpp
[399/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/content_mapnode.cpp.o -MF src/CMakeFiles/luanti.dir/content_mapnode.cpp.o.d -o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/content_mapnode.cpp
[400/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/defaultsettings.cpp.o -MF src/CMakeFiles/luanti.dir/defaultsettings.cpp.o.d -o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/defaultsettings.cpp
[401/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/emerge.cpp.o -MF src/CMakeFiles/luanti.dir/emerge.cpp.o.d -o src/CMakeFiles/luanti.dir/emerge.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/emerge.cpp
[402/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/environment.cpp.o -MF src/CMakeFiles/luanti.dir/environment.cpp.o.d -o src/CMakeFiles/luanti.dir/environment.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/environment.cpp
[403/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/filesys.cpp.o -MF src/CMakeFiles/luanti.dir/filesys.cpp.o.d -o src/CMakeFiles/luanti.dir/filesys.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/filesys.cpp
[404/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/gettext.cpp.o -MF src/CMakeFiles/luanti.dir/gettext.cpp.o.d -o src/CMakeFiles/luanti.dir/gettext.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/gettext.cpp
[405/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/inventorymanager.cpp.o -MF src/CMakeFiles/luanti.dir/inventorymanager.cpp.o.d -o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/inventorymanager.cpp
[406/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/itemdef.cpp.o -MF src/CMakeFiles/luanti.dir/itemdef.cpp.o.d -o src/CMakeFiles/luanti.dir/itemdef.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/itemdef.cpp
[407/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/light.cpp.o -MF src/CMakeFiles/luanti.dir/light.cpp.o.d -o src/CMakeFiles/luanti.dir/light.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/light.cpp
[408/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/main.cpp.o -MF src/CMakeFiles/luanti.dir/main.cpp.o.d -o src/CMakeFiles/luanti.dir/main.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/main.cpp
[409/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/map.cpp.o -MF src/CMakeFiles/luanti.dir/map.cpp.o.d -o src/CMakeFiles/luanti.dir/map.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/map.cpp
[410/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o -MF src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o.d -o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/map_settings_manager.cpp
[411/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapblock.cpp.o -MF src/CMakeFiles/luanti.dir/mapblock.cpp.o.d -o src/CMakeFiles/luanti.dir/mapblock.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapblock.cpp
[412/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapnode.cpp.o -MF src/CMakeFiles/luanti.dir/mapnode.cpp.o.d -o src/CMakeFiles/luanti.dir/mapnode.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapnode.cpp
[413/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/mapsector.cpp.o -MF src/CMakeFiles/luanti.dir/mapsector.cpp.o.d -o src/CMakeFiles/luanti.dir/mapsector.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/mapsector.cpp
[414/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/nodedef.cpp.o -MF src/CMakeFiles/luanti.dir/nodedef.cpp.o.d -o src/CMakeFiles/luanti.dir/nodedef.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/nodedef.cpp
[415/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/pathfinder.cpp.o -MF src/CMakeFiles/luanti.dir/pathfinder.cpp.o.d -o src/CMakeFiles/luanti.dir/pathfinder.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/pathfinder.cpp
[416/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/player.cpp.o -MF src/CMakeFiles/luanti.dir/player.cpp.o.d -o src/CMakeFiles/luanti.dir/player.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/player.cpp
[417/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/porting.cpp.o -MF src/CMakeFiles/luanti.dir/porting.cpp.o.d -o src/CMakeFiles/luanti.dir/porting.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/porting.cpp
/pobj/luanti-5.13.0/luanti-5.13.0/src/porting.cpp:282:13: warning: unused function 'getExecPathFromProcfs' [-Wunused-function]
282 | static bool getExecPathFromProcfs(char *buf, size_t buflen)
| ^~~~~~~~~~~~~~~~~~~~~
1 warning generated.
[418/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/raycast.cpp.o -MF src/CMakeFiles/luanti.dir/raycast.cpp.o.d -o src/CMakeFiles/luanti.dir/raycast.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/raycast.cpp
[419/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/reflowscan.cpp.o -MF src/CMakeFiles/luanti.dir/reflowscan.cpp.o.d -o src/CMakeFiles/luanti.dir/reflowscan.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/reflowscan.cpp
[420/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/remoteplayer.cpp.o -MF src/CMakeFiles/luanti.dir/remoteplayer.cpp.o.d -o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/remoteplayer.cpp
[421/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/rollback_interface.cpp.o -MF src/CMakeFiles/luanti.dir/rollback_interface.cpp.o.d -o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/rollback_interface.cpp
[422/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/server.cpp.o -MF src/CMakeFiles/luanti.dir/server.cpp.o.d -o src/CMakeFiles/luanti.dir/server.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/server.cpp
[423/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/serverenvironment.cpp.o -MF src/CMakeFiles/luanti.dir/serverenvironment.cpp.o.d -o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/serverenvironment.cpp
[424/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/servermap.cpp.o -MF src/CMakeFiles/luanti.dir/servermap.cpp.o.d -o src/CMakeFiles/luanti.dir/servermap.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/servermap.cpp
[425/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/translation.cpp.o -MF src/CMakeFiles/luanti.dir/translation.cpp.o.d -o src/CMakeFiles/luanti.dir/translation.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/translation.cpp
[426/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/version.cpp.o -MF src/CMakeFiles/luanti.dir/version.cpp.o.d -o src/CMakeFiles/luanti.dir/version.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/version.cpp
[427/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/voxel.cpp.o -MF src/CMakeFiles/luanti.dir/voxel.cpp.o.d -o src/CMakeFiles/luanti.dir/voxel.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/voxel.cpp
[428/655] /pobj/luanti-5.13.0/bin/c++ -DMT_BUILDTARGET=1 -DUSE_CMAKE_CONFIG_H -I/usr/local/include/postgresql -I/pobj/luanti-5.13.0/build-i386/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src -I/pobj/luanti-5.13.0/luanti-5.13.0/src/script -I/pobj/luanti-5.13.0/luanti-5.13.0/irr/include -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/sha256/. -I/pobj/luanti-5.13.0/luanti-5.13.0/lib/catch2 -isystem /usr/local/include -isystem /usr/local/include/luajit-2.1 -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/AL -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -std=gnu++17 -flto=thin -pthread -MD -MT src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -MF src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o.d -o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -c /pobj/luanti-5.13.0/luanti-5.13.0/src/voxelalgorithms.cpp
[429/655] : && /pobj/luanti-5.13.0/bin/c++ -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -flto=thin -L/usr/X11R6/lib -L/usr/local/lib -Xlinker --dependency-file=src/CMakeFiles/luanti.dir/link.d src/CMakeFiles/EngineCommon.dir/chat.cpp.o src/CMakeFiles/EngineCommon.dir/content_nodemeta.cpp.o src/CMakeFiles/EngineCommon.dir/convert_json.cpp.o src/CMakeFiles/EngineCommon.dir/craftdef.cpp.o src/CMakeFiles/EngineCommon.dir/debug.cpp.o src/CMakeFiles/EngineCommon.dir/face_position_cache.cpp.o src/CMakeFiles/EngineCommon.dir/gettext_plural_form.cpp.o src/CMakeFiles/EngineCommon.dir/httpfetch.cpp.o src/CMakeFiles/EngineCommon.dir/hud.cpp.o src/CMakeFiles/EngineCommon.dir/inventory.cpp.o src/CMakeFiles/EngineCommon.dir/itemstackmetadata.cpp.o src/CMakeFiles/EngineCommon.dir/log.cpp.o src/CMakeFiles/EngineCommon.dir/metadata.cpp.o src/CMakeFiles/EngineCommon.dir/modchannels.cpp.o src/CMakeFiles/EngineCommon.dir/nameidmapping.cpp.o src/CMakeFiles/EngineCommon.dir/nodemetadata.cpp.o src/CMakeFiles/EngineCommon.dir/nodetimer.cpp.o src/CMakeFiles/EngineCommon.dir/noise.cpp.o src/CMakeFiles/EngineCommon.dir/objdef.cpp.o src/CMakeFiles/EngineCommon.dir/object_properties.cpp.o src/CMakeFiles/EngineCommon.dir/particles.cpp.o src/CMakeFiles/EngineCommon.dir/profiler.cpp.o src/CMakeFiles/EngineCommon.dir/serialization.cpp.o src/CMakeFiles/EngineCommon.dir/settings.cpp.o src/CMakeFiles/EngineCommon.dir/staticobject.cpp.o src/CMakeFiles/EngineCommon.dir/terminal_chat_console.cpp.o src/CMakeFiles/EngineCommon.dir/texture_override.cpp.o src/CMakeFiles/EngineCommon.dir/tileanimation.cpp.o src/CMakeFiles/EngineCommon.dir/tool.cpp.o src/CMakeFiles/EngineCommon.dir/network/address.cpp.o src/CMakeFiles/EngineCommon.dir/network/connection.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/impl.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/threads.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkpacket.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkprotocol.cpp.o src/CMakeFiles/EngineCommon.dir/network/socket.cpp.o src/CMakeFiles/EngineCommon.dir/content/content.cpp.o src/CMakeFiles/EngineCommon.dir/content/mod_configuration.cpp.o src/CMakeFiles/EngineCommon.dir/content/mods.cpp.o src/CMakeFiles/EngineCommon.dir/content/subgames.cpp.o src/CMakeFiles/EngineCommon.dir/database/database.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-dummy.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-files.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-leveldb.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-postgresql.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-redis.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-sqlite3.cpp.o src/CMakeFiles/EngineCommon.dir/threading/event.cpp.o src/CMakeFiles/EngineCommon.dir/threading/thread.cpp.o src/CMakeFiles/EngineCommon.dir/threading/semaphore.cpp.o src/CMakeFiles/EngineCommon.dir/util/areastore.cpp.o src/CMakeFiles/EngineCommon.dir/util/auth.cpp.o src/CMakeFiles/EngineCommon.dir/util/base64.cpp.o src/CMakeFiles/EngineCommon.dir/util/colorize.cpp.o src/CMakeFiles/EngineCommon.dir/util/directiontables.cpp.o src/CMakeFiles/EngineCommon.dir/util/enriched_string.cpp.o src/CMakeFiles/EngineCommon.dir/util/guid.cpp.o src/CMakeFiles/EngineCommon.dir/util/hashing.cpp.o src/CMakeFiles/EngineCommon.dir/util/ieee_float.cpp.o src/CMakeFiles/EngineCommon.dir/util/metricsbackend.cpp.o src/CMakeFiles/EngineCommon.dir/util/numeric.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointedthing.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointabilities.cpp.o src/CMakeFiles/EngineCommon.dir/util/quicktune.cpp.o src/CMakeFiles/EngineCommon.dir/util/serialize.cpp.o src/CMakeFiles/EngineCommon.dir/util/sha1.cpp.o src/CMakeFiles/EngineCommon.dir/util/string.cpp.o src/CMakeFiles/EngineCommon.dir/util/srp.cpp.o src/CMakeFiles/EngineCommon.dir/util/timetaker.cpp.o src/CMakeFiles/EngineCommon.dir/util/png.cpp.o src/CMakeFiles/EngineCommon.dir/util/enum_string.cpp.o src/CMakeFiles/luanti.dir/client/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/client/camera.cpp.o src/CMakeFiles/luanti.dir/client/client.cpp.o src/CMakeFiles/luanti.dir/client/clientenvironment.cpp.o src/CMakeFiles/luanti.dir/client/clientlauncher.cpp.o src/CMakeFiles/luanti.dir/client/clientmap.cpp.o src/CMakeFiles/luanti.dir/client/clientmedia.cpp.o src/CMakeFiles/luanti.dir/client/clientobject.cpp.o src/CMakeFiles/luanti.dir/client/clouds.cpp.o src/CMakeFiles/luanti.dir/client/content_cao.cpp.o src/CMakeFiles/luanti.dir/client/content_cso.cpp.o src/CMakeFiles/luanti.dir/client/content_mapblock.cpp.o src/CMakeFiles/luanti.dir/client/filecache.cpp.o src/CMakeFiles/luanti.dir/client/fontengine.cpp.o src/CMakeFiles/luanti.dir/client/game.cpp.o src/CMakeFiles/luanti.dir/client/game_formspec.cpp.o src/CMakeFiles/luanti.dir/client/gameui.cpp.o src/CMakeFiles/luanti.dir/client/guiscalingfilter.cpp.o src/CMakeFiles/luanti.dir/client/hud.cpp.o src/CMakeFiles/luanti.dir/client/imagefilters.cpp.o src/CMakeFiles/luanti.dir/client/imagesource.cpp.o src/CMakeFiles/luanti.dir/client/inputhandler.cpp.o src/CMakeFiles/luanti.dir/client/item_visuals_manager.cpp.o src/CMakeFiles/luanti.dir/client/joystick_controller.cpp.o src/CMakeFiles/luanti.dir/client/keycode.cpp.o src/CMakeFiles/luanti.dir/client/localplayer.cpp.o src/CMakeFiles/luanti.dir/client/mapblock_mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh_generator_thread.cpp.o src/CMakeFiles/luanti.dir/client/meshgen/collector.cpp.o src/CMakeFiles/luanti.dir/client/minimap.cpp.o src/CMakeFiles/luanti.dir/client/particles.cpp.o src/CMakeFiles/luanti.dir/client/render/anaglyph.cpp.o src/CMakeFiles/luanti.dir/client/render/core.cpp.o src/CMakeFiles/luanti.dir/client/render/factory.cpp.o src/CMakeFiles/luanti.dir/client/render/interlaced.cpp.o src/CMakeFiles/luanti.dir/client/render/pipeline.cpp.o src/CMakeFiles/luanti.dir/client/render/plain.cpp.o src/CMakeFiles/luanti.dir/client/render/secondstage.cpp.o src/CMakeFiles/luanti.dir/client/render/sidebyside.cpp.o src/CMakeFiles/luanti.dir/client/render/stereo.cpp.o src/CMakeFiles/luanti.dir/client/renderingengine.cpp.o src/CMakeFiles/luanti.dir/client/shader.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadows.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadowsrender.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsScreenQuad.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsshadercallbacks.cpp.o src/CMakeFiles/luanti.dir/client/sky.cpp.o src/CMakeFiles/luanti.dir/client/sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_extensions.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_helpers.cpp.o src/CMakeFiles/luanti.dir/client/sound/ogg_file.cpp.o src/CMakeFiles/luanti.dir/client/sound/playing_sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/proxy_sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_data.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_openal.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_singleton.cpp.o src/CMakeFiles/luanti.dir/client/texturepaths.cpp.o src/CMakeFiles/luanti.dir/client/texturesource.cpp.o src/CMakeFiles/luanti.dir/client/tile.cpp.o src/CMakeFiles/luanti.dir/client/wieldmesh.cpp.o src/CMakeFiles/luanti.dir/gui/drawItemStack.cpp.o src/CMakeFiles/luanti.dir/gui/guiAnimatedImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBackgroundImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiButton.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonKey.cpp.o src/CMakeFiles/luanti.dir/gui/guiChatConsole.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBoxWithScrollbar.cpp.o src/CMakeFiles/luanti.dir/gui/guiEngine.cpp.o src/CMakeFiles/luanti.dir/gui/guiFormSpecMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiHyperText.cpp.o src/CMakeFiles/luanti.dir/gui/guiInventoryList.cpp.o src/CMakeFiles/luanti.dir/gui/guiItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiOpenURL.cpp.o src/CMakeFiles/luanti.dir/gui/guiPasswordChange.cpp.o src/CMakeFiles/luanti.dir/gui/guiPathSelectMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiScene.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollBar.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollContainer.cpp.o src/CMakeFiles/luanti.dir/gui/guiTable.cpp.o src/CMakeFiles/luanti.dir/gui/guiVolumeChange.cpp.o src/CMakeFiles/luanti.dir/gui/modalMenu.cpp.o src/CMakeFiles/luanti.dir/gui/profilergraph.cpp.o src/CMakeFiles/luanti.dir/gui/touchcontrols.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreeneditor.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreenlayout.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/CGUITTFont.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/static_text.cpp.o src/CMakeFiles/luanti.dir/mapgen/cavegen.cpp.o src/CMakeFiles/luanti.dir/mapgen/dungeongen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_carpathian.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_flat.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_fractal.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_singlenode.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v5.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v6.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v7.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_valleys.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_biome.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_decoration.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_ore.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_schematic.cpp.o src/CMakeFiles/luanti.dir/mapgen/treegen.cpp.o src/CMakeFiles/luanti.dir/network/clientopcodes.cpp.o src/CMakeFiles/luanti.dir/network/clientpackethandler.cpp.o src/CMakeFiles/luanti.dir/network/serveropcodes.cpp.o src/CMakeFiles/luanti.dir/network/serverpackethandler.cpp.o src/CMakeFiles/luanti.dir/script/common/c_content.cpp.o src/CMakeFiles/luanti.dir/script/common/c_converter.cpp.o src/CMakeFiles/luanti.dir/script/common/c_internal.cpp.o src/CMakeFiles/luanti.dir/script/common/c_packer.cpp.o src/CMakeFiles/luanti.dir/script/common/helper.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_async.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_base.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client_common.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_entity.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_env.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_inventory.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_item.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_node.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_player.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_security.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_areastore.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_auth.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_base.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_camera.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_craft.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_env.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_http.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_inventory.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_ipc.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_item.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_itemstackmeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_localplayer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_menu_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_metadata.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_minimap.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodetimer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_noise.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_object.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles_local.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_playermeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_rollback.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_settings.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_storage.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_util.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_vmanip.cpp.o src/CMakeFiles/luanti.dir/script/scripting_client.cpp.o src/CMakeFiles/luanti.dir/script/scripting_emerge.cpp.o src/CMakeFiles/luanti.dir/script/scripting_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_server.cpp.o src/CMakeFiles/luanti.dir/server/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/server/ban.cpp.o src/CMakeFiles/luanti.dir/server/blockmodifier.cpp.o src/CMakeFiles/luanti.dir/server/clientiface.cpp.o src/CMakeFiles/luanti.dir/server/luaentity_sao.cpp.o src/CMakeFiles/luanti.dir/server/mods.cpp.o src/CMakeFiles/luanti.dir/server/player_sao.cpp.o src/CMakeFiles/luanti.dir/server/rollback.cpp.o src/CMakeFiles/luanti.dir/server/serveractiveobject.cpp.o src/CMakeFiles/luanti.dir/server/serverinventorymgr.cpp.o src/CMakeFiles/luanti.dir/server/serverlist.cpp.o src/CMakeFiles/luanti.dir/server/unit_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test.cpp.o src/CMakeFiles/luanti.dir/unittest/test_activeobject.cpp.o src/CMakeFiles/luanti.dir/unittest/test_address.cpp.o src/CMakeFiles/luanti.dir/unittest/test_areastore.cpp.o src/CMakeFiles/luanti.dir/unittest/test_authdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_ban.cpp.o src/CMakeFiles/luanti.dir/unittest/test_clientactiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_collision.cpp.o src/CMakeFiles/luanti.dir/unittest/test_compression.cpp.o src/CMakeFiles/luanti.dir/unittest/test_connection.cpp.o src/CMakeFiles/luanti.dir/unittest/test_content_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_craft.cpp.o src/CMakeFiles/luanti.dir/unittest/test_datastructures.cpp.o src/CMakeFiles/luanti.dir/unittest/test_eventmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_filesys.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gameui.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gettext.cpp.o src/CMakeFiles/luanti.dir/unittest/test_inventory.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_gltf_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_matrix4.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_rotation.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_x_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irrptr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_k_d_tree.cpp.o src/CMakeFiles/luanti.dir/unittest/test_keycode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lbmmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_logging.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lua.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapgen.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapnode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modchannels.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modstoragedatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_moveaction.cpp.o src/CMakeFiles/luanti.dir/unittest/test_nodedef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noderesolver.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noise.cpp.o src/CMakeFiles/luanti.dir/unittest/test_objdef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_profiler.cpp.o src/CMakeFiles/luanti.dir/unittest/test_random.cpp.o src/CMakeFiles/luanti.dir/unittest/test_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/test_schematic.cpp.o src/CMakeFiles/luanti.dir/unittest/test_scriptapi.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serialization.cpp.o src/CMakeFiles/luanti.dir/unittest/test_server_shutdown_state.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serveractiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_servermodmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_settings.cpp.o src/CMakeFiles/luanti.dir/unittest/test_socket.cpp.o src/CMakeFiles/luanti.dir/unittest/test_threading.cpp.o src/CMakeFiles/luanti.dir/unittest/test_translations.cpp.o src/CMakeFiles/luanti.dir/unittest/test_utilities.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelalgorithms.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelarea.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelmanipulator.cpp.o src/CMakeFiles/luanti.dir/catch.cpp.o src/CMakeFiles/luanti.dir/clientdynamicinfo.cpp.o src/CMakeFiles/luanti.dir/collision.cpp.o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o src/CMakeFiles/luanti.dir/emerge.cpp.o src/CMakeFiles/luanti.dir/environment.cpp.o src/CMakeFiles/luanti.dir/filesys.cpp.o src/CMakeFiles/luanti.dir/gettext.cpp.o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o src/CMakeFiles/luanti.dir/itemdef.cpp.o src/CMakeFiles/luanti.dir/light.cpp.o src/CMakeFiles/luanti.dir/main.cpp.o src/CMakeFiles/luanti.dir/map.cpp.o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/mapblock.cpp.o src/CMakeFiles/luanti.dir/mapnode.cpp.o src/CMakeFiles/luanti.dir/mapsector.cpp.o src/CMakeFiles/luanti.dir/nodedef.cpp.o src/CMakeFiles/luanti.dir/pathfinder.cpp.o src/CMakeFiles/luanti.dir/player.cpp.o src/CMakeFiles/luanti.dir/porting.cpp.o src/CMakeFiles/luanti.dir/raycast.cpp.o src/CMakeFiles/luanti.dir/reflowscan.cpp.o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o src/CMakeFiles/luanti.dir/server.cpp.o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o src/CMakeFiles/luanti.dir/servermap.cpp.o src/CMakeFiles/luanti.dir/translation.cpp.o src/CMakeFiles/luanti.dir/version.cpp.o src/CMakeFiles/luanti.dir/voxel.cpp.o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -o /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti /usr/lib/libz.so.7.1 irr/src/libIrrlichtMt.a /usr/local/lib/libzstd.so.7.0 /usr/local/lib/libopenal.so.6.0 /usr/local/lib/libvorbisfile.so.6.0 /usr/local/lib/libvorbis.so.9.0 /usr/local/lib/libogg.so.6.2 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libluajit-5.1.so.1.0 /usr/local/lib/libgmp.so.11.1 /usr/local/lib/libjsoncpp.so.6.0 lib/sha256/libsha256.a /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libiconv.so.7.1 /usr/local/lib/libintl.so.8.1 /usr/local/lib/libcurl.so.26.32 /usr/lib/libncursesw.so.16.0 /usr/lib/libform.so.7.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libspatialindex.so.5.0 lib/catch2/libcatch2.a /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libpng.so.18.2 /usr/local/lib/libSDL2.so.0.15 /usr/X11R6/lib/libGL.so.19.2 /usr/X11R6/lib/libGLU.so.9.0 -pthread && :
FAILED: /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti
: && /pobj/luanti-5.13.0/bin/c++ -O2 -pipe -I/usr/X11R6/include -DNDEBUG -Wall -Wextra -Wno-unused-parameter -Werror=vla -pipe -funroll-loops -O3 -fomit-frame-pointer -fno-math-errno -fno-trapping-math -fno-signed-zeros -flto=thin -L/usr/X11R6/lib -L/usr/local/lib -Xlinker --dependency-file=src/CMakeFiles/luanti.dir/link.d src/CMakeFiles/EngineCommon.dir/chat.cpp.o src/CMakeFiles/EngineCommon.dir/content_nodemeta.cpp.o src/CMakeFiles/EngineCommon.dir/convert_json.cpp.o src/CMakeFiles/EngineCommon.dir/craftdef.cpp.o src/CMakeFiles/EngineCommon.dir/debug.cpp.o src/CMakeFiles/EngineCommon.dir/face_position_cache.cpp.o src/CMakeFiles/EngineCommon.dir/gettext_plural_form.cpp.o src/CMakeFiles/EngineCommon.dir/httpfetch.cpp.o src/CMakeFiles/EngineCommon.dir/hud.cpp.o src/CMakeFiles/EngineCommon.dir/inventory.cpp.o src/CMakeFiles/EngineCommon.dir/itemstackmetadata.cpp.o src/CMakeFiles/EngineCommon.dir/log.cpp.o src/CMakeFiles/EngineCommon.dir/metadata.cpp.o src/CMakeFiles/EngineCommon.dir/modchannels.cpp.o src/CMakeFiles/EngineCommon.dir/nameidmapping.cpp.o src/CMakeFiles/EngineCommon.dir/nodemetadata.cpp.o src/CMakeFiles/EngineCommon.dir/nodetimer.cpp.o src/CMakeFiles/EngineCommon.dir/noise.cpp.o src/CMakeFiles/EngineCommon.dir/objdef.cpp.o src/CMakeFiles/EngineCommon.dir/object_properties.cpp.o src/CMakeFiles/EngineCommon.dir/particles.cpp.o src/CMakeFiles/EngineCommon.dir/profiler.cpp.o src/CMakeFiles/EngineCommon.dir/serialization.cpp.o src/CMakeFiles/EngineCommon.dir/settings.cpp.o src/CMakeFiles/EngineCommon.dir/staticobject.cpp.o src/CMakeFiles/EngineCommon.dir/terminal_chat_console.cpp.o src/CMakeFiles/EngineCommon.dir/texture_override.cpp.o src/CMakeFiles/EngineCommon.dir/tileanimation.cpp.o src/CMakeFiles/EngineCommon.dir/tool.cpp.o src/CMakeFiles/EngineCommon.dir/network/address.cpp.o src/CMakeFiles/EngineCommon.dir/network/connection.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/impl.cpp.o src/CMakeFiles/EngineCommon.dir/network/mtp/threads.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkpacket.cpp.o src/CMakeFiles/EngineCommon.dir/network/networkprotocol.cpp.o src/CMakeFiles/EngineCommon.dir/network/socket.cpp.o src/CMakeFiles/EngineCommon.dir/content/content.cpp.o src/CMakeFiles/EngineCommon.dir/content/mod_configuration.cpp.o src/CMakeFiles/EngineCommon.dir/content/mods.cpp.o src/CMakeFiles/EngineCommon.dir/content/subgames.cpp.o src/CMakeFiles/EngineCommon.dir/database/database.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-dummy.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-files.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-leveldb.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-postgresql.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-redis.cpp.o src/CMakeFiles/EngineCommon.dir/database/database-sqlite3.cpp.o src/CMakeFiles/EngineCommon.dir/threading/event.cpp.o src/CMakeFiles/EngineCommon.dir/threading/thread.cpp.o src/CMakeFiles/EngineCommon.dir/threading/semaphore.cpp.o src/CMakeFiles/EngineCommon.dir/util/areastore.cpp.o src/CMakeFiles/EngineCommon.dir/util/auth.cpp.o src/CMakeFiles/EngineCommon.dir/util/base64.cpp.o src/CMakeFiles/EngineCommon.dir/util/colorize.cpp.o src/CMakeFiles/EngineCommon.dir/util/directiontables.cpp.o src/CMakeFiles/EngineCommon.dir/util/enriched_string.cpp.o src/CMakeFiles/EngineCommon.dir/util/guid.cpp.o src/CMakeFiles/EngineCommon.dir/util/hashing.cpp.o src/CMakeFiles/EngineCommon.dir/util/ieee_float.cpp.o src/CMakeFiles/EngineCommon.dir/util/metricsbackend.cpp.o src/CMakeFiles/EngineCommon.dir/util/numeric.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointedthing.cpp.o src/CMakeFiles/EngineCommon.dir/util/pointabilities.cpp.o src/CMakeFiles/EngineCommon.dir/util/quicktune.cpp.o src/CMakeFiles/EngineCommon.dir/util/serialize.cpp.o src/CMakeFiles/EngineCommon.dir/util/sha1.cpp.o src/CMakeFiles/EngineCommon.dir/util/string.cpp.o src/CMakeFiles/EngineCommon.dir/util/srp.cpp.o src/CMakeFiles/EngineCommon.dir/util/timetaker.cpp.o src/CMakeFiles/EngineCommon.dir/util/png.cpp.o src/CMakeFiles/EngineCommon.dir/util/enum_string.cpp.o src/CMakeFiles/luanti.dir/client/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/client/camera.cpp.o src/CMakeFiles/luanti.dir/client/client.cpp.o src/CMakeFiles/luanti.dir/client/clientenvironment.cpp.o src/CMakeFiles/luanti.dir/client/clientlauncher.cpp.o src/CMakeFiles/luanti.dir/client/clientmap.cpp.o src/CMakeFiles/luanti.dir/client/clientmedia.cpp.o src/CMakeFiles/luanti.dir/client/clientobject.cpp.o src/CMakeFiles/luanti.dir/client/clouds.cpp.o src/CMakeFiles/luanti.dir/client/content_cao.cpp.o src/CMakeFiles/luanti.dir/client/content_cso.cpp.o src/CMakeFiles/luanti.dir/client/content_mapblock.cpp.o src/CMakeFiles/luanti.dir/client/filecache.cpp.o src/CMakeFiles/luanti.dir/client/fontengine.cpp.o src/CMakeFiles/luanti.dir/client/game.cpp.o src/CMakeFiles/luanti.dir/client/game_formspec.cpp.o src/CMakeFiles/luanti.dir/client/gameui.cpp.o src/CMakeFiles/luanti.dir/client/guiscalingfilter.cpp.o src/CMakeFiles/luanti.dir/client/hud.cpp.o src/CMakeFiles/luanti.dir/client/imagefilters.cpp.o src/CMakeFiles/luanti.dir/client/imagesource.cpp.o src/CMakeFiles/luanti.dir/client/inputhandler.cpp.o src/CMakeFiles/luanti.dir/client/item_visuals_manager.cpp.o src/CMakeFiles/luanti.dir/client/joystick_controller.cpp.o src/CMakeFiles/luanti.dir/client/keycode.cpp.o src/CMakeFiles/luanti.dir/client/localplayer.cpp.o src/CMakeFiles/luanti.dir/client/mapblock_mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh.cpp.o src/CMakeFiles/luanti.dir/client/mesh_generator_thread.cpp.o src/CMakeFiles/luanti.dir/client/meshgen/collector.cpp.o src/CMakeFiles/luanti.dir/client/minimap.cpp.o src/CMakeFiles/luanti.dir/client/particles.cpp.o src/CMakeFiles/luanti.dir/client/render/anaglyph.cpp.o src/CMakeFiles/luanti.dir/client/render/core.cpp.o src/CMakeFiles/luanti.dir/client/render/factory.cpp.o src/CMakeFiles/luanti.dir/client/render/interlaced.cpp.o src/CMakeFiles/luanti.dir/client/render/pipeline.cpp.o src/CMakeFiles/luanti.dir/client/render/plain.cpp.o src/CMakeFiles/luanti.dir/client/render/secondstage.cpp.o src/CMakeFiles/luanti.dir/client/render/sidebyside.cpp.o src/CMakeFiles/luanti.dir/client/render/stereo.cpp.o src/CMakeFiles/luanti.dir/client/renderingengine.cpp.o src/CMakeFiles/luanti.dir/client/shader.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadows.cpp.o src/CMakeFiles/luanti.dir/client/shadows/dynamicshadowsrender.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsScreenQuad.cpp.o src/CMakeFiles/luanti.dir/client/shadows/shadowsshadercallbacks.cpp.o src/CMakeFiles/luanti.dir/client/sky.cpp.o src/CMakeFiles/luanti.dir/client/sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_extensions.cpp.o src/CMakeFiles/luanti.dir/client/sound/al_helpers.cpp.o src/CMakeFiles/luanti.dir/client/sound/ogg_file.cpp.o src/CMakeFiles/luanti.dir/client/sound/playing_sound.cpp.o src/CMakeFiles/luanti.dir/client/sound/proxy_sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_data.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_manager.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_openal.cpp.o src/CMakeFiles/luanti.dir/client/sound/sound_singleton.cpp.o src/CMakeFiles/luanti.dir/client/texturepaths.cpp.o src/CMakeFiles/luanti.dir/client/texturesource.cpp.o src/CMakeFiles/luanti.dir/client/tile.cpp.o src/CMakeFiles/luanti.dir/client/wieldmesh.cpp.o src/CMakeFiles/luanti.dir/gui/drawItemStack.cpp.o src/CMakeFiles/luanti.dir/gui/guiAnimatedImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBackgroundImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiButton.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiButtonKey.cpp.o src/CMakeFiles/luanti.dir/gui/guiChatConsole.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBox.cpp.o src/CMakeFiles/luanti.dir/gui/guiEditBoxWithScrollbar.cpp.o src/CMakeFiles/luanti.dir/gui/guiEngine.cpp.o src/CMakeFiles/luanti.dir/gui/guiFormSpecMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiHyperText.cpp.o src/CMakeFiles/luanti.dir/gui/guiInventoryList.cpp.o src/CMakeFiles/luanti.dir/gui/guiItemImage.cpp.o src/CMakeFiles/luanti.dir/gui/guiOpenURL.cpp.o src/CMakeFiles/luanti.dir/gui/guiPasswordChange.cpp.o src/CMakeFiles/luanti.dir/gui/guiPathSelectMenu.cpp.o src/CMakeFiles/luanti.dir/gui/guiScene.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollBar.cpp.o src/CMakeFiles/luanti.dir/gui/guiScrollContainer.cpp.o src/CMakeFiles/luanti.dir/gui/guiTable.cpp.o src/CMakeFiles/luanti.dir/gui/guiVolumeChange.cpp.o src/CMakeFiles/luanti.dir/gui/modalMenu.cpp.o src/CMakeFiles/luanti.dir/gui/profilergraph.cpp.o src/CMakeFiles/luanti.dir/gui/touchcontrols.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreeneditor.cpp.o src/CMakeFiles/luanti.dir/gui/touchscreenlayout.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/CGUITTFont.cpp.o src/CMakeFiles/luanti.dir/irrlicht_changes/static_text.cpp.o src/CMakeFiles/luanti.dir/mapgen/cavegen.cpp.o src/CMakeFiles/luanti.dir/mapgen/dungeongen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_carpathian.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_flat.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_fractal.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_singlenode.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v5.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v6.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_v7.cpp.o src/CMakeFiles/luanti.dir/mapgen/mapgen_valleys.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_biome.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_decoration.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_ore.cpp.o src/CMakeFiles/luanti.dir/mapgen/mg_schematic.cpp.o src/CMakeFiles/luanti.dir/mapgen/treegen.cpp.o src/CMakeFiles/luanti.dir/network/clientopcodes.cpp.o src/CMakeFiles/luanti.dir/network/clientpackethandler.cpp.o src/CMakeFiles/luanti.dir/network/serveropcodes.cpp.o src/CMakeFiles/luanti.dir/network/serverpackethandler.cpp.o src/CMakeFiles/luanti.dir/script/common/c_content.cpp.o src/CMakeFiles/luanti.dir/script/common/c_converter.cpp.o src/CMakeFiles/luanti.dir/script/common/c_internal.cpp.o src/CMakeFiles/luanti.dir/script/common/c_packer.cpp.o src/CMakeFiles/luanti.dir/script/common/helper.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_async.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_base.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_client_common.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_entity.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_env.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_inventory.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_item.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_node.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_player.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_security.cpp.o src/CMakeFiles/luanti.dir/script/cpp_api/s_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_areastore.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_auth.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_base.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_camera.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_client_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_craft.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_env.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_http.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_inventory.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_ipc.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_item.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_itemstackmeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_localplayer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mainmenu_sound.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_mapgen.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_menu_common.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_metadata.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_minimap.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_modchannels.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodemeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_nodetimer.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_noise.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_object.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_particles_local.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_playermeta.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_rollback.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_server.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_settings.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_storage.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_util.cpp.o src/CMakeFiles/luanti.dir/script/lua_api/l_vmanip.cpp.o src/CMakeFiles/luanti.dir/script/scripting_client.cpp.o src/CMakeFiles/luanti.dir/script/scripting_emerge.cpp.o src/CMakeFiles/luanti.dir/script/scripting_mainmenu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_pause_menu.cpp.o src/CMakeFiles/luanti.dir/script/scripting_server.cpp.o src/CMakeFiles/luanti.dir/server/activeobjectmgr.cpp.o src/CMakeFiles/luanti.dir/server/ban.cpp.o src/CMakeFiles/luanti.dir/server/blockmodifier.cpp.o src/CMakeFiles/luanti.dir/server/clientiface.cpp.o src/CMakeFiles/luanti.dir/server/luaentity_sao.cpp.o src/CMakeFiles/luanti.dir/server/mods.cpp.o src/CMakeFiles/luanti.dir/server/player_sao.cpp.o src/CMakeFiles/luanti.dir/server/rollback.cpp.o src/CMakeFiles/luanti.dir/server/serveractiveobject.cpp.o src/CMakeFiles/luanti.dir/server/serverinventorymgr.cpp.o src/CMakeFiles/luanti.dir/server/serverlist.cpp.o src/CMakeFiles/luanti.dir/server/unit_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test.cpp.o src/CMakeFiles/luanti.dir/unittest/test_activeobject.cpp.o src/CMakeFiles/luanti.dir/unittest/test_address.cpp.o src/CMakeFiles/luanti.dir/unittest/test_areastore.cpp.o src/CMakeFiles/luanti.dir/unittest/test_authdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_ban.cpp.o src/CMakeFiles/luanti.dir/unittest/test_clientactiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_collision.cpp.o src/CMakeFiles/luanti.dir/unittest/test_compression.cpp.o src/CMakeFiles/luanti.dir/unittest/test_connection.cpp.o src/CMakeFiles/luanti.dir/unittest/test_content_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_craft.cpp.o src/CMakeFiles/luanti.dir/unittest/test_datastructures.cpp.o src/CMakeFiles/luanti.dir/unittest/test_eventmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_filesys.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gameui.cpp.o src/CMakeFiles/luanti.dir/unittest/test_gettext.cpp.o src/CMakeFiles/luanti.dir/unittest/test_inventory.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_gltf_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_matrix4.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_rotation.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irr_x_mesh_loader.cpp.o src/CMakeFiles/luanti.dir/unittest/test_irrptr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_k_d_tree.cpp.o src/CMakeFiles/luanti.dir/unittest/test_keycode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lbmmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_logging.cpp.o src/CMakeFiles/luanti.dir/unittest/test_lua.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map.cpp.o src/CMakeFiles/luanti.dir/unittest/test_map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapblock.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapdatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapgen.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mapnode.cpp.o src/CMakeFiles/luanti.dir/unittest/test_mesh_compare.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modchannels.cpp.o src/CMakeFiles/luanti.dir/unittest/test_modstoragedatabase.cpp.o src/CMakeFiles/luanti.dir/unittest/test_moveaction.cpp.o src/CMakeFiles/luanti.dir/unittest/test_nodedef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noderesolver.cpp.o src/CMakeFiles/luanti.dir/unittest/test_noise.cpp.o src/CMakeFiles/luanti.dir/unittest/test_objdef.cpp.o src/CMakeFiles/luanti.dir/unittest/test_profiler.cpp.o src/CMakeFiles/luanti.dir/unittest/test_random.cpp.o src/CMakeFiles/luanti.dir/unittest/test_sao.cpp.o src/CMakeFiles/luanti.dir/unittest/test_schematic.cpp.o src/CMakeFiles/luanti.dir/unittest/test_scriptapi.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serialization.cpp.o src/CMakeFiles/luanti.dir/unittest/test_server_shutdown_state.cpp.o src/CMakeFiles/luanti.dir/unittest/test_serveractiveobjectmgr.cpp.o src/CMakeFiles/luanti.dir/unittest/test_servermodmanager.cpp.o src/CMakeFiles/luanti.dir/unittest/test_settings.cpp.o src/CMakeFiles/luanti.dir/unittest/test_socket.cpp.o src/CMakeFiles/luanti.dir/unittest/test_threading.cpp.o src/CMakeFiles/luanti.dir/unittest/test_translations.cpp.o src/CMakeFiles/luanti.dir/unittest/test_utilities.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelalgorithms.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelarea.cpp.o src/CMakeFiles/luanti.dir/unittest/test_voxelmanipulator.cpp.o src/CMakeFiles/luanti.dir/catch.cpp.o src/CMakeFiles/luanti.dir/clientdynamicinfo.cpp.o src/CMakeFiles/luanti.dir/collision.cpp.o src/CMakeFiles/luanti.dir/content_mapnode.cpp.o src/CMakeFiles/luanti.dir/defaultsettings.cpp.o src/CMakeFiles/luanti.dir/emerge.cpp.o src/CMakeFiles/luanti.dir/environment.cpp.o src/CMakeFiles/luanti.dir/filesys.cpp.o src/CMakeFiles/luanti.dir/gettext.cpp.o src/CMakeFiles/luanti.dir/inventorymanager.cpp.o src/CMakeFiles/luanti.dir/itemdef.cpp.o src/CMakeFiles/luanti.dir/light.cpp.o src/CMakeFiles/luanti.dir/main.cpp.o src/CMakeFiles/luanti.dir/map.cpp.o src/CMakeFiles/luanti.dir/map_settings_manager.cpp.o src/CMakeFiles/luanti.dir/mapblock.cpp.o src/CMakeFiles/luanti.dir/mapnode.cpp.o src/CMakeFiles/luanti.dir/mapsector.cpp.o src/CMakeFiles/luanti.dir/nodedef.cpp.o src/CMakeFiles/luanti.dir/pathfinder.cpp.o src/CMakeFiles/luanti.dir/player.cpp.o src/CMakeFiles/luanti.dir/porting.cpp.o src/CMakeFiles/luanti.dir/raycast.cpp.o src/CMakeFiles/luanti.dir/reflowscan.cpp.o src/CMakeFiles/luanti.dir/remoteplayer.cpp.o src/CMakeFiles/luanti.dir/rollback_interface.cpp.o src/CMakeFiles/luanti.dir/server.cpp.o src/CMakeFiles/luanti.dir/serverenvironment.cpp.o src/CMakeFiles/luanti.dir/servermap.cpp.o src/CMakeFiles/luanti.dir/translation.cpp.o src/CMakeFiles/luanti.dir/version.cpp.o src/CMakeFiles/luanti.dir/voxel.cpp.o src/CMakeFiles/luanti.dir/voxelalgorithms.cpp.o -o /pobj/luanti-5.13.0/luanti-5.13.0/bin/luanti /usr/lib/libz.so.7.1 irr/src/libIrrlichtMt.a /usr/local/lib/libzstd.so.7.0 /usr/local/lib/libopenal.so.6.0 /usr/local/lib/libvorbisfile.so.6.0 /usr/local/lib/libvorbis.so.9.0 /usr/local/lib/libogg.so.6.2 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libluajit-5.1.so.1.0 /usr/local/lib/libgmp.so.11.1 /usr/local/lib/libjsoncpp.so.6.0 lib/sha256/libsha256.a /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libiconv.so.7.1 /usr/local/lib/libintl.so.8.1 /usr/local/lib/libcurl.so.26.32 /usr/lib/libncursesw.so.16.0 /usr/lib/libform.so.7.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libspatialindex.so.5.0 lib/catch2/libcatch2.a /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libpng.so.18.2 /usr/local/lib/libSDL2.so.0.15 /usr/X11R6/lib/libGL.so.19.2 /usr/X11R6/lib/libGLU.so.9.0 -pthread && :
c++: error: unable to execute command: Segmentation fault (core dumped)
c++: error: linker command failed due to signal (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in games/luanti (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/luanti-5.13.0/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in games/luanti (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/luanti-5.13.0/build-i386/.build_done': @cd /usr/ports/game...)
*** Error 2 in games/luanti (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=luanti-5.13.0; export _LOCKS_HELD=" luanti-5.13.0...)
===> Exiting games/luanti with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756376238.72
max_stuck=79.55/depends=4.33/show-prepare-results=4.74/patch=3.89/configure=18.38/build=1934.54
Error: job failed with 512 on localhost at 1756376238
==> failures/games/moonlight-qt.log <==
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/compatfetcher.h -o release/moc_compatfetcher.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_compatfetcher.o release/moc_compatfetcher.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/mappingfetcher.h -o release/moc_mappingfetcher.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_mappingfetcher.o release/moc_mappingfetcher.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/computerseeker.h -o release/moc_computerseeker.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computerseeker.o release/moc_computerseeker.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/nvhttp.h -o release/moc_nvhttp.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_nvhttp.o release/moc_nvhttp.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/computermanager.h -o release/moc_computermanager.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computermanager.o release/moc_computermanager.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/boxartmanager.h -o release/moc_boxartmanager.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_boxartmanager.o release/moc_boxartmanager.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/listapps.h -o release/moc_listapps.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_listapps.o release/moc_listapps.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/quitstream.h -o release/moc_quitstream.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_quitstream.o release/moc_quitstream.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/cli/startstream.h -o release/moc_startstream.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_startstream.o release/moc_startstream.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/settings/streamingpreferences.h -o release/moc_streamingpreferences.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_streamingpreferences.o release/moc_streamingpreferences.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/streaming/session.h -o release/moc_session.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_session.o release/moc_session.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/computermodel.h -o release/moc_computermodel.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_computermodel.o release/moc_computermodel.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/appmodel.h -o release/moc_appmodel.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_appmodel.o release/moc_appmodel.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/autoupdatechecker.h -o release/moc_autoupdatechecker.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_autoupdatechecker.o release/moc_autoupdatechecker.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/gui/sdlgamepadkeynavigation.h -o release/moc_sdlgamepadkeynavigation.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_sdlgamepadkeynavigation.o release/moc_sdlgamepadkeynavigation.cpp
/usr/local/lib/qt6/libexec/moc -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB --include /pobj/moonlight-qt-6.1.0/build-i386/app/release/moc_predefs.h -I/usr/local/lib/qt6/mkspecs/openbsd-clang -I/pobj/moonlight-qt-6.1.0/app -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -I. -I/usr/include/c++/v1 -I/usr/lib/clang/19/include -I/usr/include /pobj/moonlight-qt-6.1.0/app/backend/systemproperties.h -o release/moc_systemproperties.cpp
c++ -c -O2 -pipe -g -Wall -Wextra -fno-direct-access-external-data -pthread -DNDEBUG -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DHAS_X11 -DHAVE_FFMPEG -DHAVE_LIBVA -DHAVE_LIBVA_X11 -DHAVE_LIBPLACEBO_VULKAN -DHAVE_EGL -DHAS_WAYLAND -DVERSION_STR=\"6.1.0\" -D_REENTRANT -DQT_NO_DEBUG -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_GUI_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/include/c++/v1 -I/pobj/moonlight-qt-6.1.0/app -I. -I/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src -I/pobj/moonlight-qt-6.1.0/qmdnsengine/qmdnsengine/src/include -I/pobj/moonlight-qt-6.1.0/qmdnsengine -I/pobj/moonlight-qt-6.1.0/h264bitstream/h264bitstream -I/pobj/moonlight-qt-6.1.0/AntiHooking -I/usr/local/include/SDL2 -I/usr/X11R6/include -I/usr/local/include/opus -I/usr/local/include -I/usr/local/include/libepoll-shim -I/usr/local/include/X11/qt6 -I/usr/local/include/X11/qt6/QtQuickControls2 -I/usr/local/include/X11/qt6/QtQuick -I/usr/local/include/X11/qt6/QtOpenGL -I/usr/local/include/X11/qt6/QtSvg -I/usr/local/include/X11/qt6/QtGui -I/usr/local/include/X11/qt6/QtQmlMeta -I/usr/local/include/X11/qt6/QtQmlModels -I/usr/local/include/X11/qt6/QtQmlWorkerScript -I/usr/local/include/X11/qt6/QtQml -I/usr/local/include/X11/qt6/QtQmlIntegration -I/usr/local/include/X11/qt6/QtNetwork -I/usr/local/include/X11/qt6/QtCore -Irelease -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include -I/usr/local/lib/qt6/mkspecs/openbsd-clang -o release/moc_systemproperties.o release/moc_systemproperties.cpp
clang++ -pthread -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath,/usr/local/lib -Wl,-rpath-link,/usr/local/lib -o moonlight release/nvaddress.o release/nvapp.o release/pair.o release/main.o release/computerseeker.o release/identitymanager.o release/nvcomputer.o release/nvhttp.o release/nvpairingmanager.o release/computermanager.o release/boxartmanager.o release/richpresencemanager.o release/commandlineparser.o release/listapps.o release/quitstream.o release/startstream.o release/compatfetcher.o release/mappingfetcher.o release/streamingpreferences.o release/abstouch.o release/gamepad.o release/input.o release/keyboard.o release/mouse.o release/reltouch.o release/session.o release/audio.o release/sdlaud.o release/computermodel.o release/appmodel.o release/streamutils.o release/autoupdatechecker.o release/path.o release/mappingmanager.o release/sdlgamepadkeynavigation.o release/overlaymanager.o release/systemproperties.o release/wm.o release/ffmpeg.o release/genhwaccel.o release/sdlvid.o release/swframemapper.o release/pacer.o release/vaapi.o release/plvk.o release/plvk_c.o release/eglvid.o release/egl_extensions.o release/eglimagefactory.o release/waylandvsyncsource.o release/qrc_resources.o release/qrc_qml.o release/moc_pair.o release/moc_compatfetcher.o release/moc_mappingfetcher.o release/moc_computerseeker.o release/moc_nvhttp.o release/moc_computermanager.o release/moc_boxartmanager.o release/moc_listapps.o release/moc_quitstream.o release/moc_startstream.o release/moc_streamingpreferences.o release/moc_session.o release/moc_computermodel.o release/moc_appmodel.o release/moc_autoupdatechecker.o release/moc_sdlgamepadkeynavigation.o release/moc_systemproperties.o -L/usr/local/lib -lmoonlight-common-c -lqmdnsengine -lh264bitstream -lssl -lcrypto -L/usr/X11R6/lib -lSDL2_ttf -lSDL2 -lopus -lavcodec -Wl,-rpath-link,/usr/local/lib -lavutil -lswscale -lplacebo -lwayland-client -lm -lX11 -lva-x11 -lva -lQt6QuickControls2 -lQt6Quick -lQt6OpenGL -lQt6Svg -lQt6Gui -lGL -lQt6QmlMeta -lQt6QmlModels -lQt6QmlWorkerScript -lQt6Qml -pthread -lQt6Network -lQt6Core -lpthread -lQt6Quick -lQt6QmlMeta -lQt6OpenGL -lQt6Gui -lQt6QmlModels -lQt6QmlWorkerScript -lQt6Qml -lQt6Network -lQt6Core -lEGL -L/pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/ -L/pobj/moonlight-qt-6.1.0/build-i386/app/../qmdnsengine/ -L/pobj/moonlight-qt-6.1.0/build-i386/app/../h264bitstream/ -L/pobj/moonlight-qt-6.1.0/app -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib
ld.lld: warning: RtpVideoQueue.c:284 (/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src/RtpVideoQueue.c:284)(RtpVideoQueue.o:(reconstructFrame) in archive /pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/libmoonlight-common-c.a): warning: rand() may return deterministic values, is that what you want?
ld.lld: warning: Platform.c:513 (/pobj/moonlight-qt-6.1.0/moonlight-common-c/moonlight-common-c/src/Platform.c:513)(Platform.o:(PltSafeStrcpy) in archive /pobj/moonlight-qt-6.1.0/build-i386/app/../moonlight-common-c/libmoonlight-common-c.a): warning: strcpy() is almost always misused, please use strlcpy()
ld.lld: error: undefined symbol: __cpu_model
>>> referenced by streamutils.cpp:159 (/pobj/moonlight-qt-6.1.0/app/streaming/streamutils.cpp:159)
>>> release/streamutils.o:(StreamUtils::hasFastAes())
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error 1 in app (Makefile.Release:298 'moonlight')
*** Error 2 in app (Makefile:46 'release-all')
*** Error 2 in /pobj/moonlight-qt-6.1.0/build-i386 (Makefile:108 'sub-app-all')
*** Error 2 in games/moonlight-qt (/usr/ports/devel/qmake/qmake.port.mk:98 'do-build': @ cd /pobj/moonlight-qt-6.1.0/build-i386; if [ -d /p...)
*** Error 2 in games/moonlight-qt (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/moonlight-qt-6.1.0/build-i386/.build_done': @cd /usr...)
*** Error 2 in games/moonlight-qt (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=moonlight-qt-6.1.0; export _LOCKS_HELD=" mo...)
===> Exiting games/moonlight-qt with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756383291.35
max_stuck=4.52/waiting-for-lock #185=8.47/depends=8.07/show-prepare-results=3.68/junk=2.07/extract=4.83/patch=0.50/configure=18.37/build=814.27
Error: job failed with 512 on i386-1 at 1756383291
==> failures/games/openmw.log <==
[61/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/configuration.cpp.o -MF components/CMakeFiles/components.dir/lua/configuration.cpp.o.d -o components/CMakeFiles/components.dir/lua/configuration.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/configuration.cpp
[62/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/l10n.cpp.o -MF components/CMakeFiles/components.dir/lua/l10n.cpp.o.d -o components/CMakeFiles/components.dir/lua/l10n.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/l10n.cpp
[63/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/lua/storage.cpp.o -MF components/CMakeFiles/components.dir/lua/storage.cpp.o.d -o components/CMakeFiles/components.dir/lua/storage.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/lua/storage.cpp
[64/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o -MF components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o.d -o components/CMakeFiles/components.dir/l10n/messagebundles.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/l10n/messagebundles.cpp
[65/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/settings/settings.cpp.o -MF components/CMakeFiles/components.dir/settings/settings.cpp.o.d -o components/CMakeFiles/components.dir/settings/settings.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/settings/settings.cpp
[66/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/settings/parser.cpp.o -MF components/CMakeFiles/components.dir/settings/parser.cpp.o.d -o components/CMakeFiles/components.dir/settings/parser.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/settings/parser.cpp
[67/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o -MF components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o.d -o components/CMakeFiles/components.dir/bsa/bsa_file.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/bsa/bsa_file.cpp
[68/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o -MF components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o.d -o components/CMakeFiles/components.dir/bsa/compressedbsafile.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/bsa/compressedbsafile.cpp
[69/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/manager.cpp.o -MF components/CMakeFiles/components.dir/vfs/manager.cpp.o.d -o components/CMakeFiles/components.dir/vfs/manager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/manager.cpp
[70/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o -MF components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o.d -o components/CMakeFiles/components.dir/vfs/bsaarchive.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/bsaarchive.cpp
[71/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o -MF components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o.d -o components/CMakeFiles/components.dir/vfs/filesystemarchive.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/filesystemarchive.cpp
[72/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o -MF components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o.d -o components/CMakeFiles/components.dir/vfs/registerarchives.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/vfs/registerarchives.cpp
[73/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/scenemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/scenemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/scenemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/scenemanager.cpp
[74/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/keyframemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/keyframemanager.cpp
[75/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/imagemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/imagemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/imagemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/imagemanager.cpp
[76/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/bulletshapemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/bulletshapemanager.cpp
[77/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/bulletshape.cpp.o -MF components/CMakeFiles/components.dir/resource/bulletshape.cpp.o.d -o components/CMakeFiles/components.dir/resource/bulletshape.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/bulletshape.cpp
[78/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o -MF components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o.d -o components/CMakeFiles/components.dir/resource/niffilemanager.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/niffilemanager.cpp
[79/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o -MF components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o.d -o components/CMakeFiles/components.dir/resource/multiobjectcache.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/multiobjectcache.cpp
[80/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o -MF components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o.d -o components/CMakeFiles/components.dir/resource/resourcesystem.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/resourcesystem.cpp
[81/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/stats.cpp.o -MF components/CMakeFiles/components.dir/resource/stats.cpp.o.d -o components/CMakeFiles/components.dir/resource/stats.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/stats.cpp
[82/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/animation.cpp.o -MF components/CMakeFiles/components.dir/resource/animation.cpp.o.d -o components/CMakeFiles/components.dir/resource/animation.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/animation.cpp
[83/1156] /pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -MF components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o.d -o components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp
FAILED: components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o
/pobj/openmw-0.48.0/bin/c++ -DBOOST_NO_CXX11_SCOPED_ENUMS=ON -DBT_USE_DOUBLE_PRECISION -DGLOBAL_CONFIG_PATH=\"/etc\" -DGLOBAL_DATA_PATH=\"/usr/local/share/games\" -DMYGUI_DONT_REPLACE_NULLPTR -D__STDC_CONSTANT_MACROS -I/pobj/openmw-0.48.0/build-i386/components -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DebugUtils/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Recast/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/Detour/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/fetched/recastnavigation/DetourTileCache/Include -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/Base64/. -I/pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/smhasher/. -isystem /usr/local/include -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol_config -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/extern/sol3 -isystem /usr/local/include/luajit-2.1 -isystem /usr/local/include/bullet -isystem /usr/local/include/AL -isystem /usr/local/include/MYGUI -isystem /usr/local/include/SDL2 -isystem /pobj/openmw-0.48.0/openmw-openmw-0.48.0/. -Wall -Wextra -Wundef -Wno-unused-parameter -pedantic -Wno-long-long -O2 -pipe -I/usr/X11R6/include -pthread -Wno-potentially-evaluated-expression -DNDEBUG -std=gnu++20 -MD -MT components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -MF components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o.d -o components/CMakeFiles/components.dir/resource/foreachbulletobject.cpp.o -c /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.cpp:1:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/components/resource/foreachbulletobject.hpp:5:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/misc/convert.hpp:5:
In file included from /pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/esm3/loadpgrd.hpp:4:
In file included from /usr/include/c++/v1/string:647:
/usr/include/c++/v1/string_view:300:42: error: implicit instantiation of undefined template 'std::char_traits<signed char>'
300 | static_assert(is_same<_CharT, typename traits_type::char_type>::value,
| ^
/pobj/openmw-0.48.0/openmw-openmw-0.48.0/./components/to_utf8/to_utf8.hpp:49:55: note: in instantiation of template class 'std::basic_string_view<signed char>' requested here
49 | const std::basic_string_view<signed char> mTranslationArray;
| ^
/usr/include/c++/v1/__string/char_traits.h:45:8: note: template is declared here
45 | struct char_traits;
| ^
1 error generated.
ninja: build stopped: subcommand failed.
*** Error 1 in games/openmw (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/openmw-0.48.0/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in games/openmw (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/openmw-0.48.0/build-i386/.build_done': @cd /usr/ports/game...)
*** Error 2 in games/openmw (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=openmw-0.48.0p1; export _LOCKS_HELD=" openmw-0.48...)
===> Exiting games/openmw with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756325173.85
max_stuck=48.08/depends=35.07/show-prepare-results=6.03/patch=5.16/configure=29.05/build=336.13
Error: job failed with 512 on localhost at 1756325173
==> failures/games/scorched3d.log <==
| ^
/usr/include/c++/v1/string:745:29: note: in instantiation of template class 'std::is_convertible<const std::basic_string<unsigned int> &, std::basic_string_view<unsigned int>>' requested here
745 | : public _BoolConstant< is_convertible<const _Tp&, basic_string_view<_CharT, _Traits> >::value &&
| ^
/usr/include/c++/v1/string:1151:27: note: in instantiation of template class 'std::__can_be_converted_to_string_view<unsigned int, std::char_traits<unsigned int>, std::basic_string<unsigned int>>' requested here
1151 | __enable_if_t<__can_be_converted_to_string_view<_CharT, _Traits, _Tp>::value &&
| ^
/usr/include/c++/v1/string:1154:93: note: while substituting prior template arguments into non-type template parameter [with _Tp = std::basic_string<unsigned int>]
1154 | _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit basic_string(const _Tp& __t)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
1155 | : __r_(__default_init_tag(), __default_init_tag()) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1156 | __self_view __sv = __t;
| ~~~~~~~~~~~~~~~~~~~~~~~
1157 | __init(__sv.data(), __sv.size());
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1158 | }
| ~
/usr/include/c++/v1/string:752:7: note: while substituting deduced template arguments into function template 'basic_string' [with _Tp = std::basic_string<unsigned int>, $1 = (no value)]
752 | class basic_string {
| ^
../../common/lang/LangString.h:31:7: note: while declaring the implicit copy constructor for 'LangStringConverter'
31 | class LangStringConverter
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
../../common/engine/ModFileEntryLoader.cpp:33:13: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
33 | while (dir = strchr(dir, '/'))
| ~~~~^~~~~~~~~~~~~~~~~~
../../common/engine/ModFileEntryLoader.cpp:33:13: note: place parentheses around the assignment to silence this warning
33 | while (dir = strchr(dir, '/'))
| ^
| ( )
../../common/engine/ModFileEntryLoader.cpp:33:13: note: use '==' to turn this assignment into an equality comparison
33 | while (dir = strchr(dir, '/'))
| ^
| ==
1 warning and 2 errors generated.
*** Error 1 in src/launcher/scorched (Makefile:598 'ModFileEntryLoader.o')
*** Error 1 in src/launcher (Makefile:315 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in *=* | --[!k]*);;...)
*** Error 1 in src (Makefile:315 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in *=* | --[!k]*);; *k*) fa...)
*** Error 1 in /pobj/scorched3d-44/scorched (Makefile:6411 'all-recursive': @fail= failcom='exit 1'; for f in x $MAKEFLAGS; do case $f in ...)
*** Error 2 in games/scorched3d (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/scorched3d-44/.build_done': @cd /pobj/scorched3d-44/sc...)
*** Error 2 in games/scorched3d (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=scorched3d-44p4; export _LOCKS_HELD=" scorche...)
===> Exiting games/scorched3d with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756356834.67
max_stuck=8.96/depends=11.51/show-prepare-results=3.09/extract=7.80/patch=0.72/configure=34.72/build=2.60
Error: job failed with 512 on i386-2 at 1756356834
==> failures/games/xye.log <==
src/xye_script.cpp:303:22: note: use '==' to turn this assignment into an equality comparison
303 | else if (pack=fil.FirstChildElement("xyereplay"))
| ^
| ==
src/xye_script.cpp:405:25: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
405 | if (pack=pack->FirstChildElement("moves"))
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:405:25: note: place parentheses around the assignment to silence this warning
405 | if (pack=pack->FirstChildElement("moves"))
| ^
| ( )
src/xye_script.cpp:405:25: note: use '==' to turn this assignment into an equality comparison
405 | if (pack=pack->FirstChildElement("moves"))
| ^
| ==
src/xye_script.cpp:862:5: error: reference to 'lock' is ambiguous
862 | lock* bc=new lock(game::SquareN(LastX,LastY),c);
| ^
src/xye.h:1048:7: note: candidate found by name lookup is 'lock'
1048 | class lock : public obj
| ^
/usr/include/c++/v1/mutex:417:35: note: candidate found by name lookup is 'std::lock'
417 | inline _LIBCPP_HIDE_FROM_ABI void lock(_L0& __l0, _L1& __l1, _L2& __l2, _L3&... __l3) {
| ^
/usr/include/c++/v1/mutex:357:28: note: candidate found by name lookup is 'std::lock'
357 | _LIBCPP_HIDE_FROM_ABI void lock(_L0& __l0, _L1& __l1) {
| ^
src/xye_script.cpp:1517:16: warning: 4 enumeration values not handled in switch: 'OT_XYE', 'OT_FIREBALL', 'OT_EXIT'... [-Wswitch]
1517 | switch(GetOTFromXmlElement(pEChild,&x))
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:1917:16: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/xye_script.cpp:1917:16: note: place parentheses around the assignment to silence this warning
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ^
| ( )
src/xye_script.cpp:1917:16: note: use '==' to turn this assignment into an equality comparison
1917 | if (pEChild= ( level->FirstChildElement("kyeformat")))
| ^
| ==
16 warnings and 1 error generated.
*** Error 1 in /pobj/xye-0.12.2/xye-0.12.2 (Makefile:647 'xye_script.o')
*** Error 2 in games/xye (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/xye-0.12.2/.build_done': @cd /pobj/xye-0.12.2/xye-0.12.2 && e...)
*** Error 2 in games/xye (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=xye-0.12.2p5; export _LOCKS_HELD=" xye-0.12.2p5"; ...)
===> Exiting games/xye with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756330615.63
max_stuck=4.07/waiting-for-lock #161=27.17/depends=2.89/show-prepare-results=1.11/build=41.61
Error: job failed with 512 on i386-2 at 1756330615
==> failures/graphics/chafa.log <==
mv -f .deps/libchafa_la-chafa-placement.Tpo .deps/libchafa_la-chafa-placement.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c -o libchafa_la-chafa-symbol-map.lo `test -f 'chafa-symbol-map.c' || echo './'`chafa-symbol-map.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c chafa-symbol-map.c -fPIC -DPIC -o .libs/libchafa_la-chafa-symbol-map.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-symbol-map.lo -MD -MP -MF .deps/libchafa_la-chafa-symbol-map.Tpo -c chafa-symbol-map.c -o libchafa_la-chafa-symbol-map.o
mv -f .deps/libchafa_la-chafa-symbol-map.Tpo .deps/libchafa_la-chafa-symbol-map.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c -o libchafa_la-chafa-term-db.lo `test -f 'chafa-term-db.c' || echo './'`chafa-term-db.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c chafa-term-db.c -fPIC -DPIC -o .libs/libchafa_la-chafa-term-db.o
chafa-term-db.c:247:21: warning: unused variable 'default_key_seqs' [-Wunused-const-variable]
247 | static const SeqStr default_key_seqs [] =
| ^~~~~~~~~~~~~~~~
1 warning generated.
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-db.lo -MD -MP -MF .deps/libchafa_la-chafa-term-db.Tpo -c chafa-term-db.c -o libchafa_la-chafa-term-db.o
chafa-term-db.c:247:21: warning: unused variable 'default_key_seqs' [-Wunused-const-variable]
247 | static const SeqStr default_key_seqs [] =
| ^~~~~~~~~~~~~~~~
1 warning generated.
mv -f .deps/libchafa_la-chafa-term-db.Tpo .deps/libchafa_la-chafa-term-db.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c -o libchafa_la-chafa-term-info.lo `test -f 'chafa-term-info.c' || echo './'`chafa-term-info.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c chafa-term-info.c -fPIC -DPIC -o .libs/libchafa_la-chafa-term-info.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-term-info.lo -MD -MP -MF .deps/libchafa_la-chafa-term-info.Tpo -c chafa-term-info.c -o libchafa_la-chafa-term-info.o
mv -f .deps/libchafa_la-chafa-term-info.Tpo .deps/libchafa_la-chafa-term-info.Plo
/usr/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c -o libchafa_la-chafa-util.lo `test -f 'chafa-util.c' || echo './'`chafa-util.c
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c chafa-util.c -fPIC -DPIC -o .libs/libchafa_la-chafa-util.o
cc -DHAVE_CONFIG_H -I. -I.. -I.. -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -MT libchafa_la-chafa-util.lo -MD -MP -MF .deps/libchafa_la-chafa-util.Tpo -c chafa-util.c -o libchafa_la-chafa-util.o
mv -f .deps/libchafa_la-chafa-util.Tpo .deps/libchafa_la-chafa-util.Plo
/usr/bin/libtool --tag=CC --mode=link cc -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic -no-undefined -version-info 10:1:10 -o libchafa.la -rpath /usr/local/lib libchafa_la-chafa-canvas.lo libchafa_la-chafa-canvas-config.lo libchafa_la-chafa-features.lo libchafa_la-chafa-frame.lo libchafa_la-chafa-image.lo libchafa_la-chafa-placement.lo libchafa_la-chafa-symbol-map.lo libchafa_la-chafa-term-db.lo libchafa_la-chafa-term-info.lo libchafa_la-chafa-util.lo -L/usr/local/lib -lglib-2.0 -lintl internal/libchafa-internal.la -lm
libtool: link: cc -shared -fPIC -DPIC -o .libs/libchafa.so.5.0 -pthread -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic .libs/libchafa_la-chafa-canvas.o .libs/libchafa_la-chafa-canvas-config.o .libs/libchafa_la-chafa-features.o .libs/libchafa_la-chafa-frame.o .libs/libchafa_la-chafa-image.o .libs/libchafa_la-chafa-placement.o .libs/libchafa_la-chafa-symbol-map.o .libs/libchafa_la-chafa-term-db.o .libs/libchafa_la-chafa-term-info.o .libs/libchafa_la-chafa-util.o -Wl,-whole-archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a -Wl,-no-whole-archive -L.libs -lglib-2.0 -liconv -lintl -lpcre2-8 -lpthread -lm -Wl,-soname,libchafa.so.5.0
ld.lld: error: relocation R_386_PC32 cannot be used against symbol '__cpu_indicator_init'; recompile with -fPIC
>>> defined in /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a(libsmolscale_la-smolscale.o)
>>> referenced by smolscale.c
>>> libsmolscale_la-smolscale.o:(smol_scale_init) in archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a
ld.lld: error: relocation R_386_GOTOFF cannot be used against symbol '__cpu_model'; recompile with -fPIC
>>> defined in /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a(libsmolscale_la-smolscale.o)
>>> referenced by smolscale.c
>>> libsmolscale_la-smolscale.o:(smol_scale_init) in archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Error while executing cc -shared -fPIC -DPIC -o .libs/libchafa.so.5.0 -pthread -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -Wall -Wextra -Wmissing-prototypes -Wwrite-strings -Wunused-macros -Wundef -Wpointer-arith -Werror=format-security -Wfor-loop-analysis -Wlogical-op-parentheses -ffast-math -fvisibility=hidden -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -DCHAFA_COMPILATION -O2 -pipe -Wl,-Bsymbolic .libs/libchafa_la-chafa-canvas.o .libs/libchafa_la-chafa-canvas-config.o .libs/libchafa_la-chafa-features.o .libs/libchafa_la-chafa-frame.o .libs/libchafa_la-chafa-image.o .libs/libchafa_la-chafa-placement.o .libs/libchafa_la-chafa-symbol-map.o .libs/libchafa_la-chafa-term-db.o .libs/libchafa_la-chafa-term-info.o .libs/libchafa_la-chafa-util.o -Wl,-whole-archive /pobj/chafa-1.16.1/chafa-1.16.1/chafa/internal/.libs/libchafa-internal.a -Wl,-no-whole-archive -L.libs -lglib-2.0 -liconv -lintl -lpcre2-8 -lpthread -lm -Wl,-soname,libchafa.so.5.0
*** Error 2 in chafa (Makefile:572 'libchafa.la')
*** Error 1 in chafa (Makefile:768 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_runnin...)
*** Error 2 in chafa (Makefile:489 'all')
*** Error 1 in . (Makefile:531 'all-recursive': @fail=; if (target_option=k; case ${target_option-} in ?) ;; *) echo "am__make_running_wi...)
*** Error 2 in /pobj/chafa-1.16.1/chafa-1.16.1 (Makefile:415 'all')
*** Error 2 in graphics/chafa (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/chafa-1.16.1/.build_done': @cd /pobj/chafa-1.16.1/chafa-...)
*** Error 2 in graphics/chafa (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=chafa-1.16.1p1; export _LOCKS_HELD=" chafa-1.16...)
===> Exiting graphics/chafa with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756342410.78
max_stuck=0.00/depends=3.08/show-prepare-results=2.67/patch=1.23/configure=35.11/build=60.71
Error: job failed with 512 on i386-2 at 1756342410
==> failures/graphics/mapnik.log <==
[247/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_datasource.cpp
[248/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_featureset.cpp
[249/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_ogr_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -MF plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o.d -o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/ogr/ogr_index_featureset.cpp
[250/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/ogr/CMakeFiles/input-ogr.dir/link.d -shared -o out/plugins/input/ogr.input plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_converter.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_datasource.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_utils.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_featureset.cpp.o plugins/input/ogr/CMakeFiles/input-ogr.dir/ogr_index_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libgdal.so.51.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[251/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_datasource.cpp
[252/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_featureset.cpp
[253/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_pgraster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -MF plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o.d -o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/pgraster/pgraster_wkb_reader.cpp
[254/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/pgraster/CMakeFiles/input-pgraster.dir/link.d -shared -o out/plugins/input/pgraster.input plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_datasource.cpp.o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_featureset.cpp.o plugins/input/pgraster/CMakeFiles/input-pgraster.dir/pgraster_wkb_reader.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[255/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_postgis_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -MF plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o.d -o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/postgis/postgis_featureset.cpp
[256/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_datasource.cpp
[257/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_postgis_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -isystem /usr/local/include/postgresql -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o -MF plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o.d -o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/postgis/postgis_datasource.cpp
[258/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/postgis/CMakeFiles/input-postgis.dir/link.d -shared -o out/plugins/input/postgis.input plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_datasource.cpp.o plugins/input/postgis/CMakeFiles/input-postgis.dir/postgis_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libpq.so.6.16 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[259/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_info.cpp
[260/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_raster_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o -MF plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o.d -o plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/raster/raster_featureset.cpp
[261/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/raster/CMakeFiles/input-raster.dir/link.d -shared -o out/plugins/input/raster.input plugins/input/raster/CMakeFiles/input-raster.dir/raster_datasource.cpp.o plugins/input/raster/CMakeFiles/input-raster.dir/raster_featureset.cpp.o plugins/input/raster/CMakeFiles/input-raster.dir/raster_info.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[262/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/dbf_test.cpp
[263/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/dbfile.cpp
[264/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_datasource.cpp
[265/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_featureset.cpp
[266/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_index_featureset.cpp
[267/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_utils.cpp
[268/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_shape_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o -MF plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o.d -o plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/shape/shape_io.cpp
[269/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/shape/CMakeFiles/input-shape.dir/link.d -shared -o out/plugins/input/shape.input plugins/input/shape/CMakeFiles/input-shape.dir/dbfile.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/dbf_test.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_datasource.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_featureset.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_index_featureset.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_io.cpp.o plugins/input/shape/CMakeFiles/input-shape.dir/shape_utils.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[270/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_sqlite_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -MF plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o.d -o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite/sqlite_featureset.cpp
[271/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_sqlite_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o -MF plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o.d -o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite/sqlite_datasource.cpp
[272/348] : && /pobj/mapnik-4.1.2/bin/c++ -fPIC -O2 -pipe -DNDEBUG -Wl,-rpath-link,/usr/X11R6/lib -Xlinker --dependency-file=plugins/input/sqlite/CMakeFiles/input-sqlite.dir/link.d -shared -o out/plugins/input/sqlite.input plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_datasource.cpp.o plugins/input/sqlite/CMakeFiles/input-sqlite.dir/sqlite_featureset.cpp.o -Wl,-z,origin,-rpath,/pobj/mapnik-4.1.2/build-i386/out:/usr/local/lib:/usr/X11R6/lib: out/libmapnik.so.4.0 /usr/local/lib/libsqlite3.so.37.33 /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicudata.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/X11R6/lib/libfreetype.so.31.0 /usr/local/lib/libharfbuzz.so.18.18 /usr/local/lib/libxml2.so.22.0 /usr/local/lib/libpng.so.18.2 /usr/lib/libz.so.7.1 /usr/local/lib/libjpeg.so.71.0 /usr/local/lib/libtiff.so.42.1 /usr/local/lib/libwebp.so.4.4 /usr/local/lib/libavif.so.8.0 /usr/local/lib/libcairo.so.13.5 /usr/local/lib/libproj.so.20.1 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
[273/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DMAPNIK_VECTOR_TILE_LIBRARY=1 -DSVG_RENDERER -Dinput_tiles_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/mapnik-vector-tile/src -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -MF plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o.d -o plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp
FAILED: plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o
/pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DMAPNIK_VECTOR_TILE_LIBRARY=1 -DSVG_RENDERER -Dinput_tiles_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/mapnik-vector-tile/src -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/sqlite -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -MF plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o.d -o plugins/input/tiles/CMakeFiles/input-tiles.dir/tiles_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp
In file included from /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/tiles_datasource.cpp:26:
/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/pmtiles_source.hpp:525:51: error: non-constant-expression cannot be narrowed from type 'std::uint64_t' (aka 'unsigned long long') to 'size_type' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
525 | metadata = {data() + metadata_offset, metadata_length};
| ^~~~~~~~~~~~~~~
/pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/tiles/pmtiles_source.hpp:525:51: note: insert an explicit cast to silence this issue
525 | metadata = {data() + metadata_offset, metadata_length};
| ^~~~~~~~~~~~~~~
| static_cast<size_type>( )
1 error generated.
[274/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_topojson_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o -MF plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o.d -o plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_datasource.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/topojson/topojson_datasource.cpp
[275/348] /pobj/mapnik-4.1.2/bin/c++ -DBIGINT -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_HAS_ICU -DBOOST_REGEX_NO_LIB -DGRID_RENDERER -DHAVE_AVIF -DHAVE_CAIRO -DHAVE_JPEG -DHAVE_LIBXML2 -DHAVE_PNG -DHAVE_TIFF -DHAVE_WEBP -DMAPNIK_HAS_DLCFN -DMAPNIK_MEMORY_MAPPED_FILE -DMAPNIK_PROJ_VERSION=90602 -DMAPNIK_THREADSAFE -DMAPNIK_USE_PROJ -DSVG_RENDERER -Dinput_topojson_EXPORTS -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/geometry/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/polylabel/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/variant/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps/mapbox/protozero/include -I/pobj/mapnik-4.1.2/mapnik-v4.1.2/deps -isystem /usr/local/include -isystem /usr/X11R6/include/freetype2 -isystem /usr/local/include/harfbuzz -isystem /usr/local/include/libxml2 -isystem /usr/local/include/webp -isystem /usr/local/include/cairo -isystem /usr/local/include/libpng16 -isystem /usr/X11R6/include -isystem /usr/X11R6/include/pixman-1 -O2 -pipe -DNDEBUG -std=c++20 -fPIC -DAVIF_DLL -MD -MT plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o -MF plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o.d -o plugins/input/topojson/CMakeFiles/input-topojson.dir/topojson_featureset.cpp.o -c /pobj/mapnik-4.1.2/mapnik-v4.1.2/plugins/input/topojson/topojson_featureset.cpp
ninja: build stopped: subcommand failed.
*** Error 1 in graphics/mapnik (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/mapnik-4.1.2/build-i386 && exec /usr/bin/env -...)
*** Error 2 in graphics/mapnik (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/mapnik-4.1.2/build-i386/.build_done': @cd /usr/ports/gr...)
*** Error 2 in graphics/mapnik (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=mapnik-4.1.2; export _LOCKS_HELD=" mapnik-4.1....)
===> Exiting graphics/mapnik with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756358206.56
max_stuck=34.09/depends=3.09/show-prepare-results=2.88/extract=6.14/patch=0.60/configure=18.53/build=832.92
Error: job failed with 512 on i386-1 at 1756358206
==> failures/graphics/orthanc/server.log <==
[228/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancPluginDatabaseV4.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/OrthancPluginDatabaseV4.cpp
[229/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancPlugins.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/OrthancPlugins.cpp
[230/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsEnumerations.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsEnumerations.cpp
[231/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsErrorDictionary.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsErrorDictionary.cpp
[232/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsJob.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsJob.cpp
[233/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"PluginsManager.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o -MF CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o.d -o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Engine/PluginsManager.cpp
[234/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"OrthancDatabasePlugin.pb.cc\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o -MF CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o.d -o CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o -c /pobj/orthanc-1.12.7/build-i386/AUTOGENERATED/OrthancDatabasePlugin.pb.cc
/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED/OrthancDatabasePlugin.pb.cc:3:10: warning: undefining builtin macro [-Wbuiltin-macro-redefined]
3 | # undef __FILE__
| ^
1 warning generated.
[235/276] : && /usr/local/bin/cmake -E rm -f libServerLibrary.a && /usr/bin/ar qc libServerLibrary.a CMakeFiles/ServerLibrary.dir/Sources/Database/BaseCompatibilityTransaction.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/DatabaseLookup.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/GenericFind.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ICreateInstance.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/IGetChildrenMetadata.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ILookupResourceAndParent.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/ILookupResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/Compatibility/SetOfResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/FindRequest.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/FindResponse.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/MainDicomTagsRegistry.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/OrthancIdentifiers.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/ResourcesContent.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/SQLiteDatabaseWrapper.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/StatelessDatabaseOperations.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Database/VoidDatabaseListener.cpp.o CMakeFiles/ServerLibrary.dir/Sources/DicomInstanceOrigin.cpp.o CMakeFiles/ServerLibrary.dir/Sources/DicomInstanceToStore.cpp.o CMakeFiles/ServerLibrary.dir/Sources/EmbeddedResourceHttpHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ExportedResource.cpp.o CMakeFiles/ServerLibrary.dir/Sources/LuaScripting.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancConfiguration.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancFindRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancGetRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancHttpHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancInitialization.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancMoveRequestHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestAnonymizeModify.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestApi.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestArchive.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestChanges.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestModalities.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestResources.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancRestApi/OrthancRestSystem.cpp.o CMakeFiles/ServerLibrary.dir/Sources/OrthancWebDav.cpp.o CMakeFiles/ServerLibrary.dir/Sources/QueryRetrieveHandler.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ResourceFinder.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseDicomTagConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseDicomTagConstraints.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseMetadataConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DatabaseLookup.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/DicomTagConstraint.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/HierarchicalMatcher.cpp.o CMakeFiles/ServerLibrary.dir/Sources/Search/ISqlLookupFormatter.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerContext.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerEnumerations.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerIndex.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ArchiveJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/CleaningInstancesJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomModalityStoreJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomRetrieveScuBaseJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomGetScuJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/DicomMoveScuJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/LuaJobManager.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/MergeStudyJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/DeleteResourceOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/DicomInstanceOperationValue.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/ModifyInstanceOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/StorePeerOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/StoreScuOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/Operations/SystemCallOperation.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/OrthancJobUnserializer.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/OrthancPeerStoreJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ResourceModificationJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/SplitStudyJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/StorageCommitmentScpJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerJobs/ThreadedSetOfInstancesJob.cpp.o CMakeFiles/ServerLibrary.dir/Sources/ServerToolbox.cpp.o CMakeFiles/ServerLibrary.dir/Sources/SimpleInstanceOrdering.cpp.o CMakeFiles/ServerLibrary.dir/Sources/SliceOrdering.cpp.o CMakeFiles/ServerLibrary.dir/Sources/StorageCommitmentReports.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabase.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV3.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPluginDatabaseV4.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/OrthancPlugins.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsEnumerations.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsErrorDictionary.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsJob.cpp.o CMakeFiles/ServerLibrary.dir/Plugins/Engine/PluginsManager.cpp.o CMakeFiles/ServerLibrary.dir/AUTOGENERATED/OrthancDatabasePlugin.pb.cc.o && /usr/bin/ranlib libServerLibrary.a && :
[236/276] /pobj/orthanc-1.12.7/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_FILESYSTEM_VERSION=3 -DBOOST_HAS_FILESYSTEM_V3=1 -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_RANDOM_DYN_LINK -DBOOST_RANDOM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DCIVETWEB_HAS_DISABLE_KEEP_ALIVE=0 -DCIVETWEB_HAS_WEBDAV_WRITING=0 -DDCMTK_DICTIONARY_DIR=\"/usr/local/share/dcmtk-3.6.9\" -DDCMTK_USE_EMBEDDED_DICTIONARIES=0 -DDCMTK_VERSION_NUMBER=369 -DHAS_ORTHANC_EXCEPTION=0 -DHAVE_CONFIG_H=1 -DHAVE_MALLOC_TRIM=0 -DHAVE_MALLOPT=0 -DJSONCPP_DEPRECATED_STACK_LIMIT=5000 -DORTHANC_API_VERSION=27 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0 -DORTHANC_BUILD_UNIT_TESTS=1 -DORTHANC_DATABASE_VERSION=6 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 -DORTHANC_ENABLE_BASE64=1 -DORTHANC_ENABLE_CIVETWEB=1 -DORTHANC_ENABLE_CURL=1 -DORTHANC_ENABLE_DCMTK=1 -DORTHANC_ENABLE_DCMTK_JPEG=1 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 -DORTHANC_ENABLE_DCMTK_NETWORKING=1 -DORTHANC_ENABLE_DCMTK_TRANSCODING=1 -DORTHANC_ENABLE_JPEG=1 -DORTHANC_ENABLE_LOCALE=1 -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_STDIO=0 -DORTHANC_ENABLE_LUA=1 -DORTHANC_ENABLE_MD5=1 -DORTHANC_ENABLE_MONGOOSE=0 -DORTHANC_ENABLE_PKCS11=0 -DORTHANC_ENABLE_PLUGINS=1 -DORTHANC_ENABLE_PNG=1 -DORTHANC_ENABLE_PROTOBUF=1 -DORTHANC_ENABLE_PUGIXML=1 -DORTHANC_ENABLE_SQLITE=1 -DORTHANC_ENABLE_SSL=1 -DORTHANC_ENABLE_ZLIB=1 -DORTHANC_MAXIMUM_TAG_LENGTH=256 -DORTHANC_SANDBOXED=0 -DORTHANC_SQLITE_VERSION=3050002 -DORTHANC_STANDALONE=1 -DORTHANC_STATIC=0 -DORTHANC_VERSION=\"1.12.7\" -DORTHANC_VERSION_MAJOR=1 -DORTHANC_VERSION_MINOR=12 -DORTHANC_VERSION_REVISION=7 -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0 -D__ORTHANC_FILE__=\"main.cpp\" -I/pobj/orthanc-1.12.7/build-i386/AUTOGENERATED -I/usr/local/include/lua-5.1 -I/pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Plugins/Include -isystem /usr/local/include -O2 -pipe -I/usr/local/include -DNDEBUG -MD -MT CMakeFiles/Orthanc.dir/Sources/main.cpp.o -MF CMakeFiles/Orthanc.dir/Sources/main.cpp.o.d -o CMakeFiles/Orthanc.dir/Sources/main.cpp.o -c /pobj/orthanc-1.12.7/Orthanc-1.12.7/OrthancServer/Sources/main.cpp
[237/276] : && /pobj/orthanc-1.12.7/bin/c++ -O2 -pipe -I/usr/local/include -DNDEBUG -L/usr/local/lib -Xlinker --dependency-file=CMakeFiles/Orthanc.dir/link.d CMakeFiles/Orthanc.dir/Sources/main.cpp.o -o Orthanc -L/usr/local/lib -Wl,-z,origin,-rpath,/usr/local/lib: libServerLibrary.a libCoreLibrary.a -lofstd -loflog -loficonv -ldcmdata -li2d -ldcmxml -ldcmimgle -ldcmimage -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmjpls -ldcmtkcharls -ldcmtls -ldcmnet -ldcmsr -lcmr -ldcmdsig -ldcmwlm -ldcmqrdb -ldcmpstat -ldcmrt -ldcmiod -ldcmfg -ldcmseg -ldcmtract -ldcmpmap -ldcmect -lpthread -lsqlite3 /usr/lib/libssl.so.60.1 /usr/lib/libcrypto.so.57.1 /usr/local/lib/libcurl.so.26.32 -lcivetweb /usr/local/lib/libjpeg.so.71.0 /usr/lib/libz.so.7.1 /usr/local/lib/libpng.so.18.2 /usr/local/lib/liblua5.1.so.5.1 /usr/lib/libm.so.10.1 -lpugixml -liconv -lprotobuf -ljsoncpp /usr/local/lib/libuuid.so.14.1 /usr/local/lib/libboost_locale-mt.so.24.0 /usr/local/lib/libboost_chrono-mt.so.24.0 /usr/local/lib/libboost_filesystem-mt.so.24.0 /usr/local/lib/libboost_atomic-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_iostreams-mt.so.24.0 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/local/lib/libboost_random-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && cd /pobj/orthanc-1.12.7/build-i386 && /usr/local/bin/doxygen /pobj/orthanc-1.12.7/build-i386/OrthancPlugin.doxygen
FAILED: Orthanc
: && /pobj/orthanc-1.12.7/bin/c++ -O2 -pipe -I/usr/local/include -DNDEBUG -L/usr/local/lib -Xlinker --dependency-file=CMakeFiles/Orthanc.dir/link.d CMakeFiles/Orthanc.dir/Sources/main.cpp.o -o Orthanc -L/usr/local/lib -Wl,-z,origin,-rpath,/usr/local/lib: libServerLibrary.a libCoreLibrary.a -lofstd -loflog -loficonv -ldcmdata -li2d -ldcmxml -ldcmimgle -ldcmimage -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmjpls -ldcmtkcharls -ldcmtls -ldcmnet -ldcmsr -lcmr -ldcmdsig -ldcmwlm -ldcmqrdb -ldcmpstat -ldcmrt -ldcmiod -ldcmfg -ldcmseg -ldcmtract -ldcmpmap -ldcmect -lpthread -lsqlite3 /usr/lib/libssl.so.60.1 /usr/lib/libcrypto.so.57.1 /usr/local/lib/libcurl.so.26.32 -lcivetweb /usr/local/lib/libjpeg.so.71.0 /usr/lib/libz.so.7.1 /usr/local/lib/libpng.so.18.2 /usr/local/lib/liblua5.1.so.5.1 /usr/lib/libm.so.10.1 -lpugixml -liconv -lprotobuf -ljsoncpp /usr/local/lib/libuuid.so.14.1 /usr/local/lib/libboost_locale-mt.so.24.0 /usr/local/lib/libboost_chrono-mt.so.24.0 /usr/local/lib/libboost_filesystem-mt.so.24.0 /usr/local/lib/libboost_atomic-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_iostreams-mt.so.24.0 /usr/local/lib/libboost_regex-mt.so.24.0 /usr/local/lib/libboost_random-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && cd /pobj/orthanc-1.12.7/build-i386 && /usr/local/bin/doxygen /pobj/orthanc-1.12.7/build-i386/OrthancPlugin.doxygen
ld.lld: warning: CommandDispatcher.cpp(CommandDispatcher.cpp.o:(Orthanc::Internals::ReadString(DcmDataset&, DcmTagKey const&)) in archive libCoreLibrary.a): warning: sprintf() is often misused, please use snprintf()
ld.lld: warning: zip.c(zip.c.o:(zipOpenNewFileInZip4_64) in archive libCoreLibrary.a): warning: rand() may return deterministic values, is that what you want?
ld.lld: error: undefined symbol: char const* absl::lts_20250512::log_internal::MakeCheckOpString<unsigned long long, unsigned long long>(unsigned long long, unsigned long long, char const*)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::LogMessageFatal(char const*, int, char const*)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: void absl::lts_20250512::log_internal::LogMessage::CopyToEncodedBuffer<(absl::lts_20250512::log_internal::LogMessage::StringType)0>(std::__1::basic_string_view<char, std::__1::char_traits<char>>)
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessage::Flush()
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::~LogMessageFatal()
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
>>> referenced by OrthancPluginDatabaseV4.cpp
>>> OrthancPluginDatabaseV4.cpp.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libServerLibrary.a
c++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in graphics/orthanc/server (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/orthanc-1.12.7/build-i386 && exec /usr...)
*** Error 2 in graphics/orthanc/server (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/orthanc-1.12.7/build-i386/.build_done': @cd /us...)
*** Error 2 in graphics/orthanc/server (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=orthanc-1.12.7p1; export _LOCKS_HELD="...)
===> Exiting graphics/orthanc/server with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756379958.45
max_stuck=26.27/depends=35.15/show-prepare-results=4.88/patch=1.29/configure=25.73/build=1216.03
Error: job failed with 512 on i386-2 at 1756379958
==> failures/lang/apl.log <==
| ^
In file included from file_io.cc:26:
In file included from ./../Quad_FIO.hh:24:
In file included from /usr/include/c++/v1/vector:325:
In file included from /usr/include/c++/v1/__format/formatter_bool.h:19:
In file included from /usr/include/c++/v1/__format/formatter_integral.h:21:
In file included from /usr/include/c++/v1/__format/formatter_output.h:22:
In file included from /usr/include/c++/v1/__format/parser_std_format_spec.h:39:
/usr/include/c++/v1/string:2841:7: error: implicit instantiation of undefined template 'std::char_traits<Unicode>'
2841 | traits_type::copy(__p + __sz, __s, __n);
| ^
/usr/include/c++/v1/string:1386:12: note: in instantiation of member function 'std::basic_string<Unicode>::append' requested here
1386 | return append(__sv.data(), __sv.size());
| ^
./../UCS_string.hh:220:23: note: in instantiation of function template specialization 'std::basic_string<Unicode>::append<UCS_string, 0>' requested here
220 | { basic_string::append(other); }
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from file_io.cc:26:
In file included from ./../Quad_FIO.hh:24:
In file included from /usr/include/c++/v1/vector:325:
In file included from /usr/include/c++/v1/__format/formatter_bool.h:19:
In file included from /usr/include/c++/v1/__format/formatter_integral.h:21:
In file included from /usr/include/c++/v1/__format/formatter_output.h:22:
In file included from /usr/include/c++/v1/__format/parser_std_format_spec.h:39:
/usr/include/c++/v1/string:2844:7: error: implicit instantiation of undefined template 'std::char_traits<Unicode>'
2844 | traits_type::assign(__p[__sz], value_type());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
Error while executing c++ -DHAVE_CONFIG_H -I. -I../.. -I ./.. -g -O2 -pipe -std=c++14 -I/usr/local/include -MT lib_file_io_la-file_io.lo -MD -MP -MF .deps/lib_file_io_la-file_io.Tpo -c file_io.cc -fPIC -DPIC -o .libs/lib_file_io_la-file_io.o
gmake[3]: *** [Makefile:558: lib_file_io_la-file_io.lo] Error 2
gmake[3]: Leaving directory '/pobj/apl-1.8/apl-1.8/src/native'
gmake[2]: *** [Makefile:4484: all-recursive] Error 1
gmake[2]: Leaving directory '/pobj/apl-1.8/apl-1.8/src'
gmake[1]: *** [Makefile:524: all-recursive] Error 1
gmake[1]: Leaving directory '/pobj/apl-1.8/apl-1.8'
gmake: *** [Makefile:411: all] Error 2
*** Error 2 in lang/apl (/usr/ports/infrastructure/mk/bsd.port.mk:3070 '/pobj/apl-1.8/.build_done': @cd /pobj/apl-1.8/apl-1.8 && exec /usr/...)
*** Error 2 in lang/apl (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=apl-1.8p3; export _LOCKS_HELD=" apl-1.8p3"; /usr/bi...)
===> Exiting lang/apl with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756393780.70
max_stuck=0.00/waiting-for-lock #278=3.36/depends=5.74/show-prepare-results=2.12/patch=2.19/configure=51.12/build=3.26
Error: job failed with 512 on i386-2 at 1756393780
==> failures/multimedia/sfml.log <==
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:28:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/String.hpp:32:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/Utf.hpp:33:
In file included from /usr/include/c++/v1/locale:205:
In file included from /usr/include/c++/v1/__locale:24:
/usr/include/c++/v1/string:2368:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned int>'
2368 | traits_type::copy(std::__to_address(__p), __s, __sz + 1);
| ^
/usr/include/c++/v1/string:1005:7: note: in instantiation of member function 'std::basic_string<unsigned int>::__init_copy_ctor_external' requested here
1005 | __init_copy_ctor_external(std::__to_address(__str.__get_long_pointer()), __str.__get_long_size());
| ^
/pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:123:1: note: in instantiation of member function 'std::basic_string<unsigned int>::basic_string' requested here
123 | m_string(utf32String)
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:28:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/String.hpp:32:
In file included from /pobj/sfml-2.5.1/SFML-2.5.1/include/SFML/System/Utf.hpp:33:
In file included from /usr/include/c++/v1/locale:205:
In file included from /usr/include/c++/v1/__locale:24:
/usr/include/c++/v1/string:3396:3: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
3396 | traits_type::copy(std::__to_address(__new_data), std::__to_address(__p), size() + 1);
| ^
/usr/include/c++/v1/string:3333:3: note: in instantiation of member function 'std::basic_string<unsigned char>::__shrink_or_extend' requested here
3333 | __shrink_or_extend(__target_capacity);
| ^
/pobj/sfml-2.5.1/SFML-2.5.1/src/SFML/System/String.cpp:182:12: note: in instantiation of member function 'std::basic_string<unsigned char>::reserve' requested here
182 | output.reserve(m_string.length());
| ^
/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
| ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
ninja: build stopped: subcommand failed.
*** Error 1 in multimedia/sfml (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/sfml-2.5.1/build-i386 && exec /usr/bin/env -i ...)
*** Error 2 in multimedia/sfml (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/sfml-2.5.1/build-i386/.build_done': @cd /usr/ports/mult...)
*** Error 2 in multimedia/sfml (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=sfml-2.5.1p0; export _LOCKS_HELD=" sfml-2.5.1p...)
===> Exiting multimedia/sfml with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756379303.63
max_stuck=0.00/depends=3.65/show-prepare-results=2.25/patch=4.83/configure=4.61/build=5.17
Error: job failed with 512 on localhost at 1756379303
==> failures/productivity/libphonenumber.log <==
[87/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/utf/unicodetext.cc
[88/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/utf/unilib.cc
[89/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/regexp_adapter_icu.cc
[90/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/phonenumbermatch.cc
[91/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/phonenumbermatcher.cc
[92/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/alternate_format.cc
[93/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/area_code_map.cc
[94/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/default_map_storage.cc
[95/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/geocoding_data.cc
[96/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/mapping_file_provider.cc
[97/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc
[98/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/test_metadata.cc
[99/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o -MF CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o.d -o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src/phonenumbers/short_metadata.cc
[100/127] : && /usr/local/bin/cmake -E rm -f libphonenumber_testing.a && /usr/bin/ar qc libphonenumber_testing.a CMakeFiles/phonenumber_testing.dir/src/phonenumbers/asyoutypeformatter.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/base/strings/string_piece.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/default_logger.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/logger.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonemetadata.pb.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumber.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumber.pb.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumberutil.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regex_based_matcher.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_cache.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/shortnumberinfo.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/string_byte_sink.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/stringutil.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/unicodestring.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/rune.c.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unicodetext.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/utf/unilib.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/regexp_adapter_icu.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatch.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/phonenumbermatcher.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/alternate_format.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/area_code_map.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/default_map_storage.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/geocoding_data.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/mapping_file_provider.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/test_metadata.cc.o CMakeFiles/phonenumber_testing.dir/src/phonenumbers/short_metadata.cc.o && /usr/bin/ranlib libphonenumber_testing.a && :
[101/127] /pobj/libphonenumber-9.0.12/bin/c++ -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DI18N_PHONENUMBERS_USE_ALTERNATE_FORMATS -DI18N_PHONENUMBERS_USE_BOOST -DI18N_PHONENUMBERS_USE_ICU_REGEXP -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/src -I/pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test -isystem /usr/local/include -O2 -pipe -DNDEBUG -std=gnu++17 -Wall -MD -MT CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -MF CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o.d -o CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -c /pobj/libphonenumber-9.0.12/libphonenumber-9.0.12/cpp/test/phonenumbers/geocoding/geocoding_test_program.cc
[102/127] : && /pobj/libphonenumber-9.0.12/bin/c++ -O2 -pipe -DNDEBUG -Xlinker --dependency-file=CMakeFiles/geocoding_test_program.dir/link.d CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -o geocoding_test_program -Wl,-z,origin,-rpath,/usr/local/lib libgeocoding.a libphonenumber.a /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libprotobuf.so.32.0 /usr/local/lib/libabsl_raw_hash_set.so.7.0 /usr/local/lib/libabsl_cord.so.7.0 /usr/local/lib/libabsl_cordz_info.so.7.0 /usr/local/lib/libabsl_cord_internal.so.7.0 /usr/local/lib/libabsl_cordz_functions.so.7.0 /usr/local/lib/libabsl_cordz_handle.so.7.0 /usr/local/lib/libabsl_crc_cord_state.so.7.0 /usr/local/lib/libabsl_crc32c.so.7.0 /usr/local/lib/libabsl_crc_internal.so.7.0 /usr/local/lib/libabsl_crc_cpu_detect.so.7.0 /usr/local/lib/libabsl_str_format_internal.so.7.0 /usr/local/lib/libabsl_hash.so.7.0 /usr/local/lib/libabsl_city.so.7.0 /usr/local/lib/libabsl_low_level_hash.so.7.0 /usr/local/lib/libabsl_hashtablez_sampler.so.7.0 /usr/local/lib/libabsl_exponential_biased.so.7.0 /usr/local/lib/libabsl_synchronization.so.7.0 /usr/local/lib/libabsl_graphcycles_internal.so.7.0 /usr/local/lib/libabsl_kernel_timeout_internal.so.7.0 /usr/local/lib/libabsl_stacktrace.so.7.0 /usr/local/lib/libabsl_symbolize.so.7.0 /usr/local/lib/libabsl_malloc_internal.so.7.0 /usr/local/lib/libabsl_debugging_internal.so.7.0 /usr/local/lib/libabsl_demangle_internal.so.7.0 /usr/local/lib/libabsl_demangle_rust.so.7.0 /usr/local/lib/libabsl_decode_rust_punycode.so.7.0 /usr/local/lib/libabsl_utf8_for_code_point.so.7.0 /usr/local/lib/libabsl_tracing_internal.so.7.0 /usr/local/lib/libabsl_time.so.7.0 /usr/local/lib/libabsl_strings.so.7.0 /usr/local/lib/libabsl_strings_internal.so.7.0 /usr/local/lib/libabsl_string_view.so.7.0 /usr/local/lib/libabsl_throw_delegate.so.7.0 /usr/local/lib/libabsl_int128.so.7.0 /usr/local/lib/libabsl_base.so.7.0 /usr/local/lib/libabsl_spinlock_wait.so.7.0 /usr/local/lib/libabsl_raw_logging_internal.so.7.0 /usr/local/lib/libabsl_log_severity.so.7.0 /usr/local/lib/libabsl_civil_time.so.7.0 /usr/local/lib/libabsl_time_zone.so.7.0 /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
FAILED: geocoding_test_program
: && /pobj/libphonenumber-9.0.12/bin/c++ -O2 -pipe -DNDEBUG -Xlinker --dependency-file=CMakeFiles/geocoding_test_program.dir/link.d CMakeFiles/geocoding_test_program.dir/test/phonenumbers/geocoding/geocoding_test_program.cc.o -o geocoding_test_program -Wl,-z,origin,-rpath,/usr/local/lib libgeocoding.a libphonenumber.a /usr/local/lib/libicuuc.so.22.5 /usr/local/lib/libicui18n.so.22.5 /usr/local/lib/libprotobuf.so.32.0 /usr/local/lib/libabsl_raw_hash_set.so.7.0 /usr/local/lib/libabsl_cord.so.7.0 /usr/local/lib/libabsl_cordz_info.so.7.0 /usr/local/lib/libabsl_cord_internal.so.7.0 /usr/local/lib/libabsl_cordz_functions.so.7.0 /usr/local/lib/libabsl_cordz_handle.so.7.0 /usr/local/lib/libabsl_crc_cord_state.so.7.0 /usr/local/lib/libabsl_crc32c.so.7.0 /usr/local/lib/libabsl_crc_internal.so.7.0 /usr/local/lib/libabsl_crc_cpu_detect.so.7.0 /usr/local/lib/libabsl_str_format_internal.so.7.0 /usr/local/lib/libabsl_hash.so.7.0 /usr/local/lib/libabsl_city.so.7.0 /usr/local/lib/libabsl_low_level_hash.so.7.0 /usr/local/lib/libabsl_hashtablez_sampler.so.7.0 /usr/local/lib/libabsl_exponential_biased.so.7.0 /usr/local/lib/libabsl_synchronization.so.7.0 /usr/local/lib/libabsl_graphcycles_internal.so.7.0 /usr/local/lib/libabsl_kernel_timeout_internal.so.7.0 /usr/local/lib/libabsl_stacktrace.so.7.0 /usr/local/lib/libabsl_symbolize.so.7.0 /usr/local/lib/libabsl_malloc_internal.so.7.0 /usr/local/lib/libabsl_debugging_internal.so.7.0 /usr/local/lib/libabsl_demangle_internal.so.7.0 /usr/local/lib/libabsl_demangle_rust.so.7.0 /usr/local/lib/libabsl_decode_rust_punycode.so.7.0 /usr/local/lib/libabsl_utf8_for_code_point.so.7.0 /usr/local/lib/libabsl_tracing_internal.so.7.0 /usr/local/lib/libabsl_time.so.7.0 /usr/local/lib/libabsl_strings.so.7.0 /usr/local/lib/libabsl_strings_internal.so.7.0 /usr/local/lib/libabsl_string_view.so.7.0 /usr/local/lib/libabsl_throw_delegate.so.7.0 /usr/local/lib/libabsl_int128.so.7.0 /usr/local/lib/libabsl_base.so.7.0 /usr/local/lib/libabsl_spinlock_wait.so.7.0 /usr/local/lib/libabsl_raw_logging_internal.so.7.0 /usr/local/lib/libabsl_log_severity.so.7.0 /usr/local/lib/libabsl_civil_time.so.7.0 /usr/local/lib/libabsl_time_zone.so.7.0 /usr/local/lib/libboost_date_time-mt.so.24.0 /usr/local/lib/libboost_system-mt.so.24.0 /usr/local/lib/libboost_thread-mt.so.24.0 -lpthread -Wl,-rpath-link,/usr/X11R6/lib:/usr/local/lib && :
ld.lld: error: undefined symbol: char const* absl::lts_20250512::log_internal::MakeCheckOpString<unsigned long long, unsigned long long>(unsigned long long, unsigned long long, char const*)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::LogMessageFatal(char const*, int, char const*)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: void absl::lts_20250512::log_internal::LogMessage::CopyToEncodedBuffer<(absl::lts_20250512::log_internal::LogMessage::StringType)0>(std::__1::basic_string_view<char, std::__1::char_traits<char>>)
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessage::Flush()
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
ld.lld: error: undefined symbol: absl::lts_20250512::log_internal::LogMessageFatal::~LogMessageFatal()
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
>>> referenced by phonenumberutil.cc
>>> phonenumberutil.cc.o:(google::protobuf::RepeatedField<int>::GrowNoAnnotate(bool, int, int)) in archive libphonenumber.a
c++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
*** Error 1 in productivity/libphonenumber (/usr/ports/devel/cmake/cmake.port.mk:50 'do-build': @cd /pobj/libphonenumber-9.0.12/build-i386 &...)
*** Error 2 in productivity/libphonenumber (/usr/ports/infrastructure/mk/bsd.port.mk:3066 '/pobj/libphonenumber-9.0.12/build-i386/.build_done')
*** Error 2 in productivity/libphonenumber (/usr/ports/infrastructure/mk/bsd.port.mk:2713 'build': @lock=libphonenumber-9.0.12; export _LOC...)
===> Exiting productivity/libphonenumber with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:144 'build': @: ${echo_msg:=echo}; : ${target:=build}; for i in ; do eval...)
>>> Ended at 1756304817.67
max_stuck=4.57/depends=3.84/show-prepare-results=2.42/patch=3.14/configure=9.69/build=295.40
Error: job failed with 512 on localhost at 1756304817
----- End forwarded message -----
Subscribe to:
Comments (Atom)