light/tools/ci/amd64/FUCK

5890 lines
301 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#0 building with "default" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 7.14kB done
#1 WARN: NoEmptyContinuation: Empty continuation line (line 285)
#1 DONE 0.0s
#2 [internal] load metadata for docker.io/library/archlinux:latest
#2 DONE 0.8s
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.0s
#4 [ 1/12] FROM docker.io/library/archlinux:latest@sha256:0423e31111e93087aef7a46f999a91e892a8d1b49e9de939e3e660e34ce42fe8
#4 DONE 0.0s
#5 [ 6/12] RUN wget https://x.org/releases/individual/lib/libxcb-1.17.0.tar.xz && tar xf libxcb-1.17.0.tar.xz && cd libxcb-1.17.0 && export CC=clang && export CFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -fno-omit-frame-pointer -g -fPIC" && export LDFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -fno-omit-frame-pointer -g -fPIC" && ./configure --prefix=/msan --disable-static --without-doxygen && make && make install && cd .. && rm -rf libxcb-1.17.0 libxcb-1.17.0.tar.xz
#5 CACHED
#6 [ 9/12] RUN tar xf vulkansdk-linux-x86_64-1.4.328.1.tar.xz
#6 CACHED
#7 [ 3/12] RUN pacman -Syyu --noconfirm --needed --disable-download-timeout afl++ afl-utils base-devel bash cbindgen clang cmake curl debuginfod directx-headers elfutils expat gcc gcc-libs gdb git glibc glm glslang libc++ libclc libdrm libelf libglvnd libinput libpciaccess libpng libunwind libva libx11 libxcb libxdamage libxext libxfixes libxi libxinerama libxml2 libxpresent libxrandr libxshmfence libxxf86vm lm_sensors llvm lz4 meson mold ninja python python-distlib python-distutils-extra python-jsonschema python-mako python-packaging python-ply python-pyaml qt5-base qt6-base rust rust-bindgen spirv-llvm-translator spirv-tools systemd-libs valgrind vulkan-headers vulkan-icd-loader vulkan-tools vulkan-validation-layers wayland wayland-protocols wget xcb-proto xcb-util xcb-util-cursor xcb-util-keysyms xcb-util-wm xorg-server-xvfb xorg-util-macros xorgproto xtrans zlib zstd && pacman -Scc --noconfirm
#7 CACHED
#8 [10/12] RUN cd /1.4.328.1 && chmod +x ./vulkansdk && chmod +x ./setup-env.sh && export CC="$(which clang)" && export CXX="$(which clang++)" && export CXXFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -fno-omit-frame-pointer -g -std=c++23 -nostdinc++ -isystem /libcxx_msan/include/c++/v1/"&& export CFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer -g" && export LDFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -g -std=c++23 -L/msan/lib -Wl,-rpath,/msan/lib -L/libcxx_msan/lib -Wl,-rpath,/libcxx_msan/lib -lc++ -lc++abi" && ./vulkansdk --debug --numjobs `nproc` vulkan-loader
#8 CACHED
#9 [ 4/12] RUN git clone --branch llvmorg-20.1.8 --depth=1 https://github.com/llvm/llvm-project.git
#9 CACHED
#10 [ 8/12] RUN wget 'https://sdk.lunarg.com/sdk/download/1.4.328.1/linux/vulkansdk-linux-x86_64-1.4.328.1.tar.xz'
#10 CACHED
#11 [ 2/12] RUN mkdir /msan && echo 'src:*' > /msan/ignorelist_all_sources && sed -i 's/^#ParallelDownloads = .*/ParallelDownloads = 8/' /etc/pacman.conf && echo 'NoExtract = usr/share/{man,doc,info}/*' >> /etc/pacman.conf
#11 CACHED
#12 [ 7/12] RUN wget https://x.org/releases/individual/lib/libX11-1.8.12.tar.xz && tar xf libX11-1.8.12.tar.xz && cd libX11-1.8.12 && export CC=clang && export CFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -fno-omit-frame-pointer -g -fPIC" && export LDFLAGS=" -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-ignorelist=/msan/ignorelist_all_sources -fno-omit-frame-pointer -g -fPIC" && export PKG_CONFIG_PATH=/msan/lib/pkgconfig:$PKG_CONFIG_PATH && ./configure --prefix=/msan --disable-static && make && make install && cd .. && rm -rf libX11-1.8.12 libX11-1.8.12.tar.xz
#12 CACHED
#13 [ 5/12] RUN cd llvm-project/ && cmake -S ./runtimes -B ./build-lsan -G Ninja -D CMAKE_LINKER_TYPE="MOLD" -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/libcxx_lsan -D CMAKE_C_COMPILER=$(which clang) -D CMAKE_CXX_COMPILER=$(which clang++) -D LLVM_ENABLE_PROJECTS="clang;compiler-rt" -D LLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" -D LLVM_ENABLE_PIC=ON -D LIBCXX_INSTALL_MODULES=ON -D LIBCXXABI_USE_LLVM_UNWINDER=OFF -D LLVM_USE_SANITIZER=Leaks && cd ./build-lsan/ && ninja cxx cxxabi && ninja install-cxx install-cxxabi && cd ../ && cmake -S ./runtimes -B ./build-msan -G Ninja -D CMAKE_LINKER_TYPE="MOLD" -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/libcxx_msan -D CMAKE_C_COMPILER=$(which clang) -D CMAKE_CXX_COMPILER=$(which clang++) -D LLVM_ENABLE_PROJECTS="clang;compiler-rt" -D LLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" -D LLVM_ENABLE_PIC=ON -D LIBCXX_INSTALL_MODULES=ON -D LIBCXXABI_USE_LLVM_UNWINDER=OFF -D LLVM_USE_SANITIZER=MemoryWithOrigins && cd ./build-msan/ && ninja cxx cxxabi && ninja install-cxx install-cxxabi && cd ../ && cd ../ && rm -rf llvm-project
#13 CACHED
#14 [11/12] RUN git clone --branch='25.2' --depth=1 https://gitlab.freedesktop.org/mesa/mesa.git
#14 CACHED
#15 [12/12] RUN cd mesa/ && rm -rf /mesa/_build/meson-logs/meson-log.txt && mkdir _build && export CXX=$(which g++) && export CC=$(which gcc) && meson setup ./ _build -D build-tests=false -D enable-glcpp-tests=false -D build-radv-tests=false -D build-aco-tests=false -D install-intel-gpu-tests=false -D gallium-mediafoundation-test=false -D android-libbacktrace=disabled -D split-debug=disabled -D b_ndebug=true -D b_lto=false -D egl=enabled -D gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink -D gallium-extra-hud=true -D gallium-rusticl=true -D gallium-va=enabled -D gbm=enabled -D gles1=disabled -D gles2=enabled -D glvnd=enabled -D glx=dri -D libunwind=enabled -D llvm=enabled -D lmsensors=disabled -D microsoft-clc=disabled -D platforms=x11,wayland -D valgrind=disabled -D video-codecs=all -D vulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau -D vulkan-layers=device-select,intel-nullhw,overlay -D tools='' -D zstd=enabled -D buildtype=plain -D prefix=/usr -D sysconfdir=/etc --wrap-mode=nofallback --force-fallback-for=syn,paste,rustc-hash ; cat /mesa/_build/meson-logs/meson-log.txt && exit 1 RUN cd mesa/ && ninja -C _build
#15 4.788 The Meson build system
#15 4.788 Version: 1.9.1
#15 4.788 Source dir: /mesa
#15 4.788 Build dir: /mesa/_build
#15 4.788 Build type: native build
#15 4.788 Project name: mesa
#15 4.788 Project version: 25.2.4
#15 4.788 C compiler for the host machine: /usr/sbin/gcc (gcc 15.2.1 "gcc (GCC) 15.2.1 20250813")
#15 4.788 C linker for the host machine: /usr/sbin/gcc ld.bfd 2.45.0
#15 4.788 C++ compiler for the host machine: /usr/sbin/g++ (gcc 15.2.1 "g++ (GCC) 15.2.1 20250813")
#15 4.788 C++ linker for the host machine: /usr/sbin/g++ ld.bfd 2.45.0
#15 4.788 Host machine cpu family: x86_64
#15 4.788 Host machine cpu: x86_64
#15 4.788 Checking for size of "void*" : 8
#15 4.788 Checking if "-mtls-dialect=gnu2" runs: YES
#15 4.788 Checking if "split TLSDESC" links: YES
#15 4.788 Found pkg-config: YES (/usr/sbin/pkg-config) 2.5.1
#15 4.788 Run-time dependency libglvnd found: YES 1.7.0
#15 4.788 Found CMake: /usr/sbin/cmake (4.1.2)
#15 4.788 Run-time dependency vdpau found: NO (tried pkgconfig and cmake)
#15 4.788 Program glslangValidator found: YES (/usr/sbin/glslangValidator)
#15 4.788 Run-time dependency libva found: YES 1.22.0
#15 4.788 Header "va/va.h" has symbol "VASurfaceAttribDRMFormatModifiers" with dependency libva: YES
#15 4.788 meson.build:768: WARNING: add_languages is missing native:, assuming languages are wanted for both host and build.
#15 4.788 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 4.788 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 4.788 Program bindgen found: YES (/usr/sbin/bindgen)
#15 4.788 Run-time dependency libclc found: YES 0.2.0
#15 4.788 Program python3 found: YES 3.13.7 3.13.7 (/usr/sbin/python3)
#15 4.788 Fetching value of define "ETIME" : 62
#15 4.788 Compiler for C supports arguments -gsplit-dwarf: YES
#15 4.788 Compiler for C supports link arguments -Wl,--gdb-index: NO
#15 4.788 Checking for function "bswap32" : YES
#15 4.788 Checking for function "bswap64" : YES
#15 4.788 Checking for function "clz" : YES
#15 4.788 Checking for function "clzll" : YES
#15 4.788 Checking for function "ctz" : YES
#15 4.788 Checking for function "expect" : YES
#15 4.788 Checking for function "ffs" : YES
#15 4.788 Checking for function "ffsll" : YES
#15 4.788 Checking for function "popcount" : YES
#15 4.788 Checking for function "popcountll" : YES
#15 4.788 Checking for function "unreachable" : YES
#15 4.788 Checking for function "types_compatible_p" : YES
#15 4.788 Compiler for C supports function attribute const: YES
#15 4.788 Compiler for C supports function attribute flatten: YES
#15 4.788 Compiler for C supports function attribute malloc: YES
#15 4.788 Compiler for C supports function attribute pure: YES
#15 4.788 Compiler for C supports function attribute unused: YES
#15 4.788 Compiler for C supports function attribute warn_unused_result: YES
#15 4.788 Compiler for C supports function attribute weak: YES
#15 4.788 Compiler for C supports function attribute format: YES
#15 4.788 Compiler for C supports function attribute packed: YES
#15 4.788 Compiler for C supports function attribute returns_nonnull: YES
#15 4.788 Compiler for C supports function attribute alias: YES
#15 4.788 Compiler for C supports function attribute noreturn: YES
#15 4.788 Compiler for C supports function attribute optimize: YES
#15 4.788 Compiler for C supports function attribute visibility:hidden: YES
#15 4.788 Checking if "__uint128_t" compiles: YES
#15 4.788 Checking for function "reallocarray" : YES
#15 4.788 Checking for function "fmemopen" : YES
#15 4.788 Checking if "gc-sections" links: YES
#15 4.788 Compiler for C supports arguments -Werror=implicit-function-declaration: YES
#15 4.788 Compiler for C supports arguments -Werror=missing-prototypes: YES
#15 4.788 Compiler for C supports arguments -Werror=return-type: YES
#15 4.788 Compiler for C supports arguments -Werror=empty-body: YES
#15 4.788 Compiler for C supports arguments -Werror=incompatible-pointer-types: YES
#15 4.788 Compiler for C supports arguments -Werror=int-conversion: YES
#15 4.788 Compiler for C supports arguments -Wimplicit-fallthrough: YES
#15 4.788 Compiler for C supports arguments -Wmisleading-indentation: YES
#15 4.788 Compiler for C supports arguments -Wno-missing-field-initializers: YES
#15 4.788 Compiler for C supports arguments -Wno-format-truncation: YES
#15 4.788 Compiler for C supports arguments -Wno-nonnull-compare: YES
#15 4.788 Compiler for C supports arguments -fno-math-errno: YES
#15 4.788 Compiler for C supports arguments -fno-trapping-math: YES
#15 4.788 Compiler for C supports arguments -Qunused-arguments: NO
#15 4.788 Compiler for C supports arguments -fno-common: YES
#15 4.788 Compiler for C supports arguments -Wno-unknown-pragmas: YES
#15 4.788 Compiler for C supports arguments -Wno-microsoft-enum-value: NO
#15 4.788 Compiler for C supports arguments -Wno-unused-function: YES
#15 4.788 Compiler for C supports arguments -Werror=format: YES
#15 4.788 Compiler for C supports arguments -Wformat-security: YES
#15 4.788 Compiler for C supports arguments -Werror=thread-safety: NO
#15 4.788 Compiler for C supports arguments -ffunction-sections: YES
#15 4.788 Compiler for C supports arguments -fdata-sections: YES
#15 4.788 Compiler for C supports arguments -Wno-unused-variable: YES
#15 4.788 Compiler for C supports arguments -Wno-unused-but-set-variable: YES
#15 4.788 Compiler for C supports arguments /wd4189: NO
#15 4.788 Compiler for C++ supports arguments -Werror=return-type: YES
#15 4.788 Compiler for C++ supports arguments -Werror=empty-body: YES
#15 4.788 Compiler for C++ supports arguments -Wmisleading-indentation: YES
#15 4.788 Compiler for C++ supports arguments -Wno-non-virtual-dtor: YES
#15 4.788 Compiler for C++ supports arguments -Wno-missing-field-initializers: YES
#15 4.788 Compiler for C++ supports arguments -Wno-format-truncation: YES
#15 4.788 Compiler for C++ supports arguments -fno-math-errno: YES
#15 4.788 Compiler for C++ supports arguments -fno-trapping-math: YES
#15 4.788 Compiler for C++ supports arguments -Qunused-arguments: NO
#15 4.788 Compiler for C++ supports arguments -flifetime-dse=1: YES
#15 4.788 Compiler for C++ supports arguments -Wno-unknown-pragmas: YES
#15 4.788 Compiler for C++ supports arguments -Wno-microsoft-enum-value: NO
#15 4.788 Compiler for C++ supports arguments -Werror=format: YES
#15 4.788 Compiler for C++ supports arguments -Wformat-security: YES
#15 4.788 Compiler for C++ supports arguments -ffunction-sections: YES
#15 4.788 Compiler for C++ supports arguments -fdata-sections: YES
#15 4.788 Compiler for C++ supports arguments -Wno-unused-variable: YES
#15 4.788 Compiler for C++ supports arguments -Wno-unused-but-set-variable: YES
#15 4.788 Compiler for C++ supports arguments /wd4189: NO
#15 4.788 Compiler for C supports arguments -Wno-override-init: YES
#15 4.788 Compiler for C supports arguments -Wno-initializer-overrides: NO
#15 4.788 Compiler for C supports arguments -Werror=pointer-arith: YES
#15 4.788 Compiler for C supports arguments -Werror=vla: YES
#15 4.788 Compiler for C supports arguments -Werror=gnu-empty-initializer: NO
#15 4.788 Compiler for C++ supports arguments -Werror=pointer-arith: YES
#15 4.788 Compiler for C++ supports arguments -Werror=vla: YES
#15 4.788 Compiler for C++ supports arguments -Werror=gnu-empty-initializer: NO
#15 4.788 Checking for function "__builtin_ia32_clflushopt" : YES
#15 4.788 Checking if "GCC atomic builtins" compiles: YES
#15 4.788 Checking if "GCC atomic builtins required -latomic" links: YES
#15 4.788 Checking if "GCC 64bit atomics" with dependency links: YES
#15 4.788 Library ws2_32 found: NO
#15 4.788 Header "sys/sysmacros.h" has symbol "major" : YES
#15 4.788 Header "sys/sysmacros.h" has symbol "minor" : YES
#15 4.788 Header "sys/sysmacros.h" has symbol "makedev" : YES
#15 4.788 Header "sys/mkdev.h" has symbol "major" : NO
#15 4.788 Check usable header "sched.h" : YES
#15 4.788 Checking for function "sched_getaffinity" : YES
#15 4.788 Check usable header "xlocale.h" : NO
#15 4.788 Check usable header "linux/futex.h" : YES
#15 4.788 Check usable header "endian.h" : YES
#15 4.788 Check usable header "dlfcn.h" : YES
#15 4.788 Check usable header "sys/shm.h" : YES
#15 4.788 Check usable header "cet.h" : YES
#15 4.788 Check usable header "pthread_np.h" : NO
#15 4.788 Check usable header "sys/inotify.h" : YES
#15 4.788 Check usable header "linux/udmabuf.h" : YES
#15 4.788 Checking for function "strtof" : YES
#15 4.788 Checking for function "mkostemp" : YES
#15 4.788 Checking for function "memfd_create" : YES
#15 4.788 Checking for function "random_r" : YES
#15 4.788 Checking for function "flock" : YES
#15 4.788 Checking for function "strtok_r" : YES
#15 4.788 Checking for function "getrandom" : YES
#15 4.788 Checking for function "qsort_s" : NO
#15 4.788 Checking for function "posix_fallocate" : YES
#15 4.788 Checking for function "secure_getenv" : YES
#15 4.788 Checking if "GNU qsort_r" links: YES
#15 4.788 Header "time.h" has symbol "struct timespec" : YES
#15 4.788 Checking for function "thrd_create" : YES
#15 4.788 Header "errno.h" has symbol "program_invocation_name" : YES
#15 4.788 Header "math.h" has symbol "issignaling" : YES
#15 4.788 Checking for function "posix_memalign" : YES
#15 4.788 Checking whether type "struct dirent" has member "d_type" : YES
#15 4.788 Checking if "strtod has locale support" links: YES
#15 4.788 Checking if "Bsymbolic" links: YES
#15 4.788 Checking if "version-script" links: YES
#15 4.788 Checking if "dynamic-list" links: YES
#15 4.788 Compiler for C supports link arguments -Wl,--build-id=sha1: YES
#15 7.468 Checking for function "dlopen" : YES
#15 7.468 Checking for function "dladdr" with dependency : YES
#15 7.468 Checking for function "dl_iterate_phdr" : YES
#15 7.468 Checking for function "clock_gettime" : YES
#15 7.468 Run-time dependency zlib found: YES 1.3.1
#15 7.468 Run-time dependency libzstd found: YES 1.5.7
#15 7.468 Run-time dependency threads found: YES
#15 7.468 Checking for function "pthread_setaffinity_np" with dependency threads: YES
#15 7.468 Run-time dependency expat found: YES 2.7.3
#15 7.468 Library m found: YES
#15 7.468 Message: libdrm 2.4.121 needed because amdgpu has the highest requirement
#15 7.468 Run-time dependency libdrm_intel found: YES 2.4.126
#15 7.468 Run-time dependency libdrm_amdgpu found: YES 2.4.126
#15 7.468 Run-time dependency libdrm found: YES 2.4.126
#15 7.468 Run-time dependency libudev found: YES 258
#15 7.468 llvm-config found: YES (/usr/sbin/llvm-config) 20.1.8
#15 7.468 Run-time dependency LLVM (modules: amdgpu, asmparser, bitreader, bitwriter, core, coverage, engine, executionengine, instcombine, ipo, irreader, libdriver, linker, lto, mcdisassembler, mcjit, native, option, scalaropts, target, transformutils, all-targets, coroutines, frontenddriver, frontendhlsl, lto, windowsdriver) found: YES 20.1.8
#15 7.468 Run-time dependency llvmspirvlib found: YES 20.1.0.0
#15 7.468 Run-time dependency spirv-tools found: YES 2025.4.1
#15 7.468 Library clang-cpp found: YES
#15 7.468 Run-time dependency lua54 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua5.4 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua-5.4 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua53 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua5.3 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua-5.3 found: NO (tried pkgconfig and cmake)
#15 7.468 Run-time dependency lua found: NO (tried pkgconfig)
#15 7.468 Run-time dependency libelf found: YES 0.193
#15 7.468 Dependency valgrind skipped: feature valgrind disabled
#15 7.468 Program bison found: YES (/usr/sbin/bison)
#15 7.468 Program bison found: YES 3.8.2 3.8.2 (/usr/sbin/bison)
#15 7.468 Program flex found: YES (/usr/sbin/flex)
#15 7.468 Run-time dependency libunwind found: YES 1.8.2
#15 7.468 Build-time dependency wayland-scanner found: YES 1.24.0
#15 7.468 Program /usr/bin/wayland-scanner found: YES (/usr/bin/wayland-scanner)
#15 7.468 Run-time dependency wayland-protocols found: YES 1.45
#15 7.468 Run-time dependency wayland-client found: YES 1.24.0
#15 7.468 Run-time dependency wayland-server found: YES 1.24.0
#15 7.468 Run-time dependency wayland-egl-backend found: YES 3
#15 7.468 Checking for function "wl_display_dispatch_queue_timeout" with dependency wayland-client: YES
#15 7.468 Checking for function "wl_display_create_queue_with_name" with dependency wayland-client: YES
#15 7.468 Run-time dependency OpenMP found: YES 4.5
#15 7.468 Run-time dependency xcb found: YES 1.17.0
#15 7.468 Run-time dependency xcb-randr found: YES 1.17.0
#15 7.468 Run-time dependency x11 found: YES 1.8.12
#15 7.468 Run-time dependency xext found: YES 1.3.6
#15 7.468 Run-time dependency xcb-glx found: YES 1.17.0
#15 7.468 Run-time dependency xcb-shm found: YES 1.17.0
#15 7.468 Dependency xcb found: YES 1.17.0 (cached)
#15 7.468 Run-time dependency xcb-keysyms found: YES 0.4.1
#15 7.468 Run-time dependency x11-xcb found: YES 1.8.12
#15 7.468 Run-time dependency xcb-dri3 found: YES 1.17.0
#15 7.468 Run-time dependency xcb-present found: YES 1.17.0
#15 7.468 Dependency xcb-shm found: YES 1.17.0 (cached)
#15 7.468 Run-time dependency xcb-sync found: YES 1.17.0
#15 7.468 Run-time dependency xshmfence found: YES 1.3.3
#15 7.468 Run-time dependency glproto found: YES 1.4.17
#15 7.468 Run-time dependency xxf86vm found: YES 1.1.6
#15 7.468 Run-time dependency xcb-xfixes found: YES 1.17.0
#15 7.468 Dependency xcb-dri3 found: YES 1.17.0 (cached)
#15 7.468 Dependency xcb-present found: YES 1.17.0 (cached)
#15 7.468 Dependency xcb-shm found: YES 1.17.0 (cached)
#15 7.468 Dependency xshmfence found: YES 1.3.3 (cached)
#15 7.468 Dependency xcb-randr found: YES 1.17.0 (cached)
#15 7.468 Run-time dependency xrandr found: YES 1.5.4
#15 7.468 Library sensors skipped: feature lmsensors disabled
#15 7.468 Program nm found: YES (/usr/sbin/nm)
#15 7.468 Program symbols-check.py found: YES (/usr/bin/python /mesa/bin/symbols-check.py)
#15 7.468 Program install_megadrivers.py found: YES (/usr/bin/python /mesa/bin/install_megadrivers.py)
#15 7.468 Checking for size of "void *" : 8
#15 7.468 Compiler for C supports arguments -Wno-misleading-indentation: YES
#15 7.468 Checking for function "mmap" : YES
#15 7.468 Checking whether type "spvtools::LinkerOptions" has member "SetAllowPtrTypeMismatch(true)" with dependency SPIRV-Tools: YES
#15 7.468 Compiler for C supports link arguments -fPIC: YES
#15 7.468 Program decode.py found: YES (/mesa/src/compiler/isaspec/decode.py)
#15 7.468 Program encode.py found: YES (/mesa/src/compiler/isaspec/encode.py)
#15 7.468 Program bindgen found: YES (/usr/sbin/bindgen)
#15 7.468 Looking for a fallback subproject for the dependency syn because:
#15 7.468 Use of fallback dependencies is forced.
#15 7.468 Downloading syn source from https://crates.io/api/v1/crates/syn/2.0.87/download
#15 8.934
#15 8.934 Executing subproject syn
#15 8.934
#15 8.934 syn| Project name: syn
#15 8.934 syn| Project version: 2.0.87
#15 8.934 syn| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 8.934 syn| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 8.934 syn| Downloading unicode-ident source from https://crates.io/api/v1/crates/unicode-ident/1.0.12/download
#15 10.14
#15 10.14 Executing subproject syn:unicode-ident
#15 10.14
#15 10.14 unicode-ident| Project name: unicode-ident
#15 10.14 unicode-ident| Project version: 1.0.12
#15 10.14 unicode-ident| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 10.14 unicode-ident| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 10.14 unicode-ident| subprojects/unicode-ident-1.0.12/meson.build:8: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 10.14 unicode-ident| Build targets in project: 104
#15 10.14 unicode-ident| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 10.14 unicode-ident| * 1.3.0: {'rust_abi arg in static_library'}
#15 10.14 unicode-ident| Subproject unicode-ident finished.
#15 10.14
#15 10.14 syn| Downloading quote source from https://crates.io/api/v1/crates/quote/1.0.35/download
#15 11.23
#15 11.23 Executing subproject syn:quote
#15 11.23
#15 11.23 quote| Project name: quote
#15 11.23 quote| Project version: 1.0.35
#15 11.23 quote| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 11.23 quote| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 11.23 quote| Downloading proc-macro2 source from https://crates.io/api/v1/crates/proc-macro2/1.0.86/download
#15 13.28
#15 13.28 Executing subproject syn:quote:proc-macro2
#15 13.28
#15 13.28 proc-macro2| Project name: proc-macro2
#15 13.28 proc-macro2| Project version: 1.0.86
#15 13.28 proc-macro2| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 13.28 proc-macro2| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 13.28 proc-macro2| subprojects/proc-macro2-1.0.86/meson.build:56: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 13.28 proc-macro2| Build targets in project: 105
#15 13.28 proc-macro2| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 13.28 proc-macro2| * 1.3.0: {'rust_abi arg in static_library'}
#15 13.28 proc-macro2| Subproject proc-macro2 finished.
#15 13.28
#15 13.28 quote| subprojects/quote-1.0.35/meson.build:24: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 13.28 quote| Build targets in project: 106
#15 13.28 quote| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 13.28 quote| * 1.3.0: {'rust_abi arg in static_library'}
#15 13.28 quote| Subproject quote finished.
#15 13.28
#15 13.28 syn| subprojects/syn-2.0.87/meson.build:40: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 13.28 syn| Build targets in project: 107
#15 13.28 syn| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 13.28 syn| * 1.3.0: {'rust_abi arg in static_library'}
#15 13.28 syn| Subproject syn finished.
#15 13.28
#15 13.28 Dependency syn from subproject subprojects/syn-2.0.87 found: YES 2.0.87
#15 13.28 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES
#15 13.28 Compiler for C supports link arguments -Wl,-z,relro: YES
#15 13.28 Configuring VkLayer_MESA_overlay.json using configuration
#15 13.28 Configuring VkLayer_MESA_overlay.json.in_dev.json using configuration
#15 13.28 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES (cached)
#15 13.28 Compiler for C supports link arguments -Wl,-z,relro: YES (cached)
#15 13.28 Configuring VkLayer_MESA_device_select.json using configuration
#15 13.28 Configuring VkLayer_MESA_device_select.json.in_dev.json using configuration
#15 13.28 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES (cached)
#15 13.28 Compiler for C supports link arguments -Wl,-z,relro: YES (cached)
#15 13.28 Configuring VkLayer_INTEL_nullhw.json using configuration
#15 13.28 Configuring VkLayer_INTEL_nullhw.json.in_dev.json using configuration
#15 13.28 Compiler for C supports arguments -Werror=switch: YES
#15 13.28 Compiler for C++ supports arguments -Wno-unused-variable: YES (cached)
#15 13.28 Compiler for C++ supports arguments -Wno-unused-local-typedefs: YES
#15 13.28 Compiler for C++ supports arguments -Wno-unused-but-set-variable: YES (cached)
#15 13.28 Compiler for C++ supports arguments -Wno-maybe-uninitialized: YES
#15 13.28 Compiler for C++ supports arguments -Wno-self-assign: NO
#15 13.28 Compiler for C++ supports arguments /wd4189: NO (cached)
#15 13.28 Compiler for C++ supports arguments -Wno-uninitialized: YES
#15 13.28 Compiler for C++ supports arguments -fno-exceptions: YES
#15 13.28 Compiler for C++ supports arguments -fno-rtti: YES
#15 13.28 Compiler for C++ supports arguments -Wimplicit-fallthrough: YES
#15 13.28 Compiler for C++ supports arguments -Wshadow: YES
#15 13.28 Compiler for C supports arguments -Wimplicit-fallthrough: YES (cached)
#15 13.28 Compiler for C supports arguments -Wshadow: YES
#15 13.28 Compiler for C supports arguments -Wall: YES
#15 13.28 Compiler for C supports arguments -Wextra: YES
#15 13.28 Compiler for C supports arguments -Wno-unused: YES
#15 13.28 Compiler for C supports arguments -Wno-unused-parameter: YES
#15 13.28 Compiler for C supports arguments -Wno-unused-command-line-argument: NO
#15 13.28 Compiler for C supports arguments -Wno-ignored-qualifiers: YES
#15 13.28 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-self-assign: NO
#15 13.28 Compiler for C supports arguments -Wno-implicit-fallthrough: YES
#15 13.28 Compiler for C supports arguments -Werror=comment: YES
#15 13.28 Compiler for C supports arguments -Werror=missing-braces: YES
#15 13.28 Compiler for C supports arguments -Werror=override-init: YES
#15 13.28 Compiler for C supports arguments -Werror=enum-conversion: YES
#15 13.28 Compiler for C supports arguments -Werror=enum-compare: YES
#15 13.28 Compiler for C supports arguments -Werror=maybe-uninitialized: YES
#15 13.28 Compiler for C supports arguments -Werror=parentheses: YES
#15 13.28 Compiler for C supports arguments -Wall: YES (cached)
#15 13.28 Compiler for C supports arguments -Wextra: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused-command-line-argument: NO (cached)
#15 13.28 Compiler for C supports arguments -Wno-ignored-qualifiers: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-self-assign: NO (cached)
#15 13.28 Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=comment: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=missing-braces: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=override-init: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=enum-conversion: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=enum-compare: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=maybe-uninitialized: YES (cached)
#15 13.28 Compiler for C supports arguments -Wall: YES (cached)
#15 13.28 Compiler for C supports arguments -Wextra: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-unused-command-line-argument: NO (cached)
#15 13.28 Compiler for C supports arguments -Wno-ignored-qualifiers: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-self-assign: NO (cached)
#15 13.28 Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=comment: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=missing-braces: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=override-init: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=enum-conversion: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=enum-compare: YES (cached)
#15 13.28 Compiler for C supports arguments -Werror=maybe-uninitialized: YES (cached)
#15 13.28 Compiler for C supports arguments -Wno-gnu-variable-sized-type-not-at-end: NO
#15 13.28 Program cbindgen found: YES 0.29.0 0.29.0 (/usr/sbin/cbindgen)
#15 13.28 Looking for a fallback subproject for the dependency paste because:
#15 13.28 Use of fallback dependencies is forced.
#15 13.28 Downloading paste source from https://crates.io/api/v1/crates/paste/1.0.14/download
#15 14.36
#15 14.36 Executing subproject paste
#15 14.36
#15 14.36 paste| Project name: paste
#15 14.36 paste| Project version: 1.0.14
#15 14.36 paste| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 14.36 paste| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 14.36 paste| subprojects/paste-1.0.14/meson.build:10: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust.proc_macro.
#15 14.36 paste| Build targets in project: 455
#15 14.36 paste| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 14.36 paste| * 1.3.0: {'rust.proc_macro'}
#15 14.36 paste| Subproject paste finished.
#15 14.36
#15 14.36 Dependency paste from subproject subprojects/paste-1.0.14 found: YES 1.0.14
#15 14.36 Dependency paste found: YES 1.0.14 (cached)
#15 14.36 Looking for a fallback subproject for the dependency rustc-hash because:
#15 14.36 Use of fallback dependencies is forced.
#15 14.36 Downloading rustc-hash source from https://crates.io/api/v1/crates/rustc-hash/2.1.1/download
#15 15.06
#15 15.06 Executing subproject rustc-hash
#15 15.06
#15 15.06 rustc-hash| Project name: rustc_hash
#15 15.06 rustc-hash| Project version: 2.1.1
#15 15.06 rustc-hash| Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 15.06 rustc-hash| Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 15.06 rustc-hash| subprojects/rustc-hash-2.1.1/meson.build:12: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 15.06 rustc-hash| Build targets in project: 462
#15 15.06 rustc-hash| WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 15.06 rustc-hash| * 1.3.0: {'rust_abi arg in static_library'}
#15 15.06 rustc-hash| Subproject rustc-hash finished.
#15 15.06
#15 15.06 Dependency rustc-hash from subproject subprojects/rustc-hash-2.1.1 found: YES 2.1.1
#15 15.06 Checking for type "std::pmr::monotonic_buffer_resource" : YES
#15 15.06 Compiler for C supports arguments -Wno-gnu-variable-sized-type-not-at-end: NO (cached)
#15 15.06 Compiler for C supports arguments -Wno-missing-prototypes: YES
#15 15.06 Configuring rusticl.icd using configuration
#15 15.06 Compiler for C supports link arguments -Wl,--default-symver: YES
#15 15.06 Configuring dri.sym using configuration
#15 15.06 Checking for function "mincore" : YES
#15 15.06 Configuring 50_mesa.json using configuration
#15 15.06 Configuring devenv_glvnd_egl.json using configuration
#15 15.06 Configuring dri.sym using configuration
#15 15.06 Program ln found: YES (/usr/sbin/ln)
#15 15.06 Program sphinx-build skipped: feature html-docs disabled
#15 15.06 Build targets in project: 595
#15 15.06
#15 15.06 mesa 25.2.4
#15 15.06
#15 15.06 Directories
#15 15.06 prefix : /usr
#15 15.06 libdir : lib
#15 15.06 includedir : include
#15 15.06
#15 15.06 Common C and C++ arguments
#15 15.06 c_cpp_args : -mtls-dialect=gnu2
#15 15.06
#15 15.06 OpenGL
#15 15.06 OpenGL : YES
#15 15.06 ES1 : NO
#15 15.06 ES2 : YES
#15 15.06 GLVND : YES
#15 15.06
#15 15.06 DRI
#15 15.06 Platform : drm
#15 15.06 Driver dir : /usr/lib/dri
#15 15.06
#15 15.06 GLX
#15 15.06 Enabled : YES
#15 15.06 Provider : dri
#15 15.06
#15 15.06 EGL
#15 15.06 Enabled : YES
#15 15.06 Drivers : builtin:egl_dri2 builtin:egl_dri3
#15 15.06 Platforms : x11 wayland surfaceless drm xcb
#15 15.06
#15 15.06 GBM
#15 15.06 Enabled : YES
#15 15.06 External libgbm : NO
#15 15.06 Backends path : /usr/lib/gbm
#15 15.06
#15 15.06 Vulkan
#15 15.06 Drivers : amd intel intel_hasvk swrast virtio nouveau
#15 15.06 Platforms : x11 wayland surfaceless drm xcb
#15 15.06 ICD dir : share/vulkan/icd.d
#15 15.06 Layers : device-select intel-nullhw overlay
#15 15.06 Intel Ray tracing : YES
#15 15.06
#15 15.06 Video
#15 15.06 Codecs : vc1dec h264dec h264enc h265dec h265enc av1dec
#15 15.06 av1enc vp9dec
#15 15.06 APIs : va vulkan
#15 15.06
#15 15.06 LLVM
#15 15.06 Required : enabled
#15 15.06 Version : 20.1.8
#15 15.06
#15 15.06 Gallium
#15 15.06 Enabled : YES
#15 15.06 Drivers : r300 r600 radeonsi nouveau virgl svga
#15 15.06 softpipe llvmpipe i915 iris crocus zink
#15 15.06 Platforms : x11 wayland surfaceless drm xcb
#15 15.06 Frontends : mesa va rusticl
#15 15.06 HUD lm-sensors : NO
#15 15.06
#15 15.06 Perfetto
#15 15.06 Enabled : NO
#15 15.06
#15 15.06 Teflon (TensorFlow Lite delegate)
#15 15.06 Enabled : NO
#15 15.06
#15 15.06 Subprojects
#15 15.06 paste : YES 2 warnings
#15 15.06 proc-macro2 : YES 2 warnings (from syn => quote)
#15 15.06 quote : YES 2 warnings (from syn)
#15 15.06 rustc-hash : YES 2 warnings
#15 15.06 syn : YES 2 warnings
#15 15.06 unicode-ident : YES 2 warnings (from syn)
#15 15.06
#15 15.06 User defined options
#15 15.06 android-libbacktrace : disabled
#15 15.06 b_lto : false
#15 15.06 b_ndebug : true
#15 15.06 build-aco-tests : false
#15 15.06 build-radv-tests : false
#15 15.06 build-tests : false
#15 15.06 buildtype : plain
#15 15.06 egl : enabled
#15 15.06 enable-glcpp-tests : false
#15 15.06 force_fallback_for : syn,paste,rustc-hash
#15 15.06 gallium-drivers : r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink
#15 15.06 gallium-extra-hud : true
#15 15.06 gallium-mediafoundation-test: false
#15 15.06 gallium-rusticl : true
#15 15.06 gallium-va : enabled
#15 15.06 gbm : enabled
#15 15.06 gles1 : disabled
#15 15.06 gles2 : enabled
#15 15.06 glvnd : enabled
#15 15.06 glx : dri
#15 15.06 install-intel-gpu-tests : false
#15 15.06 libunwind : enabled
#15 15.06 llvm : enabled
#15 15.06 lmsensors : disabled
#15 15.06 microsoft-clc : disabled
#15 15.06 platforms : x11,wayland
#15 15.06 prefix : /usr
#15 15.06 split-debug : disabled
#15 15.06 sysconfdir : /etc
#15 15.06 tools :
#15 15.06 valgrind : disabled
#15 15.06 video-codecs : all
#15 15.06 vulkan-drivers : amd,intel,intel_hasvk,swrast,virtio,nouveau
#15 15.06 vulkan-layers : device-select,intel-nullhw,overlay
#15 15.06 wrap_mode : nofallback
#15 15.06 zstd : enabled
#15 15.06
#15 15.06 Found ninja-1.12.1 at /usr/sbin/ninja
#15 15.06
Generating targets: 0%| | 0/595 eta ?
Generating targets: 12%|█▏ | 72/595 eta 00:01
Generating targets: 24%|██▎ | 141/595 eta 00:00
Generating targets: 37%|███▋ | 223/595 eta 00:00
Generating targets: 49%|████▊ | 289/595 eta 00:00
Generating targets: 58%|█████▊ | 345/595 eta 00:00
Generating targets: 77%|███████▋ | 460/595 eta 00:00
Generating targets: 86%|████████▌ | 513/595 eta 00:00
Generating targets: 93%|█████████▎| 553/595 eta 00:00
Writing build.ninja: 0%| | 0/3645 eta ?
Writing build.ninja: 33%|███▎ | 1203/3645 eta 00:00
Writing build.ninja: 66%|██████▌ | 2406/3645 eta 00:00
Writing build.ninja: 97%|█████████▋| 3549/3645 eta 00:00
Build started at 2025-10-14T05:39:14.056503
#15 17.65 Main binary: /usr/bin/python
#15 17.65 Build Options: -Dbuild-tests=false -Denable-glcpp-tests=false -Dbuild-radv-tests=false -Dbuild-aco-tests=false -Dinstall-intel-gpu-tests=false -Dgallium-mediafoundation-test=false -Dandroid-libbacktrace=disabled -Dsplit-debug=disabled -Db_ndebug=true -Db_lto=false -Degl=enabled -Dgallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink -Dgallium-extra-hud=true -Dgallium-rusticl=true -Dgallium-va=enabled -Dgbm=enabled -Dgles1=disabled -Dgles2=enabled -Dglvnd=enabled -Dglx=dri -Dlibunwind=enabled -Dllvm=enabled -Dlmsensors=disabled -Dmicrosoft-clc=disabled -Dplatforms=x11,wayland -Dvalgrind=disabled -Dvideo-codecs=all -Dvulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau -Dvulkan-layers=device-select,intel-nullhw,overlay -Dtools= -Dzstd=enabled -Dbuildtype=plain -Dprefix=/usr -Dsysconfdir=/etc -Dwrap_mode=nofallback -Dforce_fallback_for=syn,paste,rustc-hash
#15 17.65 Python system: Linux
#15 17.65 The Meson build system
#15 17.65 Version: 1.9.1
#15 17.65 Source dir: /mesa
#15 17.65 Build dir: /mesa/_build
#15 17.65 Build type: native build
#15 17.65 Project name: mesa
#15 17.65 Project version: 25.2.4
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/gcc --version` -> 0
#15 17.65 stdout:
#15 17.65 gcc (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/gcc -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccqTj5Or.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 Sanity testing C compiler: /usr/sbin/gcc
#15 17.65 Is cross compiler: False.
#15 17.65 Sanity check compiler command line: /usr/sbin/gcc sanitycheckc.c -o sanitycheckc.exe -D_FILE_OFFSET_BITS=64
#15 17.65 Sanity check compile stdout:
#15 17.65
#15 17.65 -----
#15 17.65 Sanity check compile stderr:
#15 17.65
#15 17.65 -----
#15 17.65 Running test binary command: /mesa/_build/meson-private/sanitycheckc.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/sanitycheckc.exe` -> 0
#15 17.65 C compiler for the host machine: /usr/sbin/gcc (gcc 15.2.1 "gcc (GCC) 15.2.1 20250813")
#15 17.65 C linker for the host machine: /usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 -----------
#15 17.65 Detecting archiver via: `gcc-ar --version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ar (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) any later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/g++ --version` -> 0
#15 17.65 stdout:
#15 17.65 g++ (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c++ -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/g++ -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEmG2qT.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 Sanity testing C++ compiler: /usr/sbin/g++
#15 17.65 Is cross compiler: False.
#15 17.65 Sanity check compiler command line: /usr/sbin/g++ sanitycheckcpp.cc -o sanitycheckcpp.exe -D_FILE_OFFSET_BITS=64
#15 17.65 Sanity check compile stdout:
#15 17.65
#15 17.65 -----
#15 17.65 Sanity check compile stderr:
#15 17.65
#15 17.65 -----
#15 17.65 Running test binary command: /mesa/_build/meson-private/sanitycheckcpp.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/sanitycheckcpp.exe` -> 0
#15 17.65 C++ compiler for the host machine: /usr/sbin/g++ (gcc 15.2.1 "g++ (GCC) 15.2.1 20250813")
#15 17.65 C++ linker for the host machine: /usr/sbin/g++ ld.bfd 2.45.0
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/gcc --version` -> 0
#15 17.65 stdout:
#15 17.65 gcc (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/gcc -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccMSeaWb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 Sanity testing C compiler: /usr/sbin/gcc
#15 17.65 Is cross compiler: False.
#15 17.65 Sanity check compiler command line: /usr/sbin/gcc sanitycheckc.c -o sanitycheckc.exe -D_FILE_OFFSET_BITS=64
#15 17.65 Sanity check compile stdout:
#15 17.65
#15 17.65 -----
#15 17.65 Sanity check compile stderr:
#15 17.65
#15 17.65 -----
#15 17.65 Running test binary command: /mesa/_build/meson-private/sanitycheckc.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/sanitycheckc.exe` -> 0
#15 17.65 C compiler for the build machine: /usr/sbin/gcc (gcc 15.2.1 "gcc (GCC) 15.2.1 20250813")
#15 17.65 C linker for the build machine: /usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 -----------
#15 17.65 Detecting archiver via: `gcc-ar --version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ar (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) any later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/g++ --version` -> 0
#15 17.65 stdout:
#15 17.65 g++ (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c++ -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/g++ -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfGTTkN.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 Sanity testing C++ compiler: /usr/sbin/g++
#15 17.65 Is cross compiler: False.
#15 17.65 Sanity check compiler command line: /usr/sbin/g++ sanitycheckcpp.cc -o sanitycheckcpp.exe -D_FILE_OFFSET_BITS=64
#15 17.65 Sanity check compile stdout:
#15 17.65
#15 17.65 -----
#15 17.65 Sanity check compile stderr:
#15 17.65
#15 17.65 -----
#15 17.65 Running test binary command: /mesa/_build/meson-private/sanitycheckcpp.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/sanitycheckcpp.exe` -> 0
#15 17.65 C++ compiler for the build machine: /usr/sbin/g++ (gcc 15.2.1 "g++ (GCC) 15.2.1 20250813")
#15 17.65 C++ linker for the build machine: /usr/sbin/g++ ld.bfd 2.45.0
#15 17.65 Build machine cpu family: x86_64
#15 17.65 Build machine cpu: x86_64
#15 17.65 Host machine cpu family: x86_64
#15 17.65 Host machine cpu: x86_64
#15 17.65 Target machine cpu family: x86_64
#15 17.65 Target machine cpu: x86_64
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpe5q0oy1o
#15 17.65 Code:
#15 17.65
#15 17.65 #include<stddef.h>
#15 17.65 #include<stdio.h>
#15 17.65 int main(void) {
#15 17.65 printf("%ld\n", (long)(sizeof(void*)));
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpe5q0oy1o/testfile.c -o /mesa/_build/meson-private/tmpe5q0oy1o/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Program stdout:
#15 17.65
#15 17.65 8
#15 17.65
#15 17.65 Program stderr:
#15 17.65
#15 17.65
#15 17.65 Checking for size of "void*" : 8
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpzo1nujc8
#15 17.65 Code:
#15 17.65 int __thread x; int main() { return x; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpzo1nujc8/testfile.c -o /mesa/_build/meson-private/tmpzo1nujc8/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -mtls-dialect=gnu2 -fpic` -> 0
#15 17.65 Program stdout:
#15 17.65
#15 17.65
#15 17.65 Program stderr:
#15 17.65
#15 17.65
#15 17.65 Checking if "-mtls-dialect=gnu2" runs: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpy04lmpfs
#15 17.65 Code:
#15 17.65 int __thread x; int y; int main() { __asm__(
#15 17.65 "leaq x@TLSDESC(%rip), %rax\n"
#15 17.65 "movq y@GOTPCREL(%rip), %rdx\n"
#15 17.65 "call *x@TLSCALL(%rax)\n"); }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpy04lmpfs/testfile.c -o /mesa/_build/meson-private/tmpy04lmpfs/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking if "split TLSDESC" links: YES
#15 17.65 Pkg-config binary missing from cross or native file, or env var undefined.
#15 17.65 Trying a default Pkg-config fallback at pkg-config
#15 17.65 Found pkg-config: YES (/usr/sbin/pkg-config) 2.5.1
#15 17.65 Determining dependency 'libglvnd' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libglvnd` -> 0
#15 17.65 stdout:
#15 17.65 1.7.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libglvnd` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libglvnd` -> 0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libglvnd` -> 0
#15 17.65 Run-time dependency libglvnd found: YES 1.7.0
#15 17.65 Determining dependency 'vdpau' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion vdpau` -> 1
#15 17.65 stderr:
#15 17.65 Package vdpau was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `vdpau.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'vdpau' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is not cached
#15 17.65 CMake binary missing from cross or native file, or env var undefined.
#15 17.65 Trying a default CMake fallback at cmake
#15 17.65 Found CMake: /usr/sbin/cmake (4.1.2)
#15 17.65 Extracting basic cmake information
#15 17.65 CMake Toolchain: Calling CMake once to generate the compiler state
#15 17.65 Calling CMake (['/usr/sbin/cmake']) in /mesa/_build/meson-private/__CMake_compiler_info__ with:
#15 17.65 - "--trace-expand"
#15 17.65 - "--trace-format=json-v1"
#15 17.65 - "--no-warn-unused-cli"
#15 17.65 - "--trace-redirect=cmake_trace.txt"
#15 17.65 - "-G"
#15 17.65 - "Ninja"
#15 17.65 - "-DCMAKE_TOOLCHAIN_FILE=/mesa/_build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
#15 17.65 - "."
#15 17.65 CMake trace warning: add_executable() non imported executables are not supported
#15 17.65 CMake TRACE: /mesa/_build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-WnPNl7/CMakeLists.txt:22 add_executable(['cmTC_b6247'])
#15 17.65 CMake trace warning: target_link_libraries() TARGET cmTC_b6247 not found
#15 17.65 CMake TRACE: /mesa/_build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-WnPNl7/CMakeLists.txt:28 target_link_libraries(['cmTC_b6247', ''])
#15 17.65 CMake trace warning: add_executable() non imported executables are not supported
#15 17.65 CMake TRACE: /mesa/_build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-ac76lE/CMakeLists.txt:22 add_executable(['cmTC_ade68'])
#15 17.65 CMake trace warning: target_link_libraries() TARGET cmTC_ade68 not found
#15 17.65 CMake TRACE: /mesa/_build/meson-private/__CMake_compiler_info__/CMakeFiles/CMakeScratch/TryCompile-ac76lE/CMakeLists.txt:28 target_link_libraries(['cmTC_ade68', ''])
#15 17.65 Try CMake generator: auto
#15 17.65 Calling CMake (['/usr/sbin/cmake']) in /mesa/_build/meson-private/cmake_vdpau with:
#15 17.65 - "--trace-expand"
#15 17.65 - "--trace-format=json-v1"
#15 17.65 - "--no-warn-unused-cli"
#15 17.65 - "--trace-redirect=cmake_trace.txt"
#15 17.65 - "-DCMAKE_TOOLCHAIN_FILE=/mesa/_build/meson-private/cmake_vdpau/CMakeMesonToolchainFile.cmake"
#15 17.65 - "."
#15 17.65 -- Module search paths: ['/', '/opt', '/usr', '/usr/local']
#15 17.65 -- CMake root: /usr/share/cmake
#15 17.65 -- CMake architectures: []
#15 17.65 -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', '']
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency vdpau found: NO (tried pkgconfig and cmake)
#15 17.65 Program glslangValidator found: YES (/usr/sbin/glslangValidator)
#15 17.65 Running command: /usr/sbin/glslangValidator --version
#15 17.65 --- stdout ---
#15 17.65 Glslang Version: 11:16.0.0
#15 17.65 ESSL Version: OpenGL ES GLSL 3.20 glslang Khronos. 16.0.0
#15 17.65 GLSL Version: 4.60 glslang Khronos. 16.0.0
#15 17.65 SPIR-V Version 0x00010600, Revision 1
#15 17.65 GLSL.std.450 Version 100, Revision 1
#15 17.65 Khronos Tool ID 8
#15 17.65 SPIR-V Generator Version 11
#15 17.65 GL_KHR_vulkan_glsl version 100
#15 17.65 ARB_GL_gl_spirv version 100
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Running command: /usr/sbin/glslangValidator --quiet --version
#15 17.65 --- stdout ---
#15 17.65 Glslang Version: 11:16.0.0
#15 17.65 ESSL Version: OpenGL ES GLSL 3.20 glslang Khronos. 16.0.0
#15 17.65 GLSL Version: 4.60 glslang Khronos. 16.0.0
#15 17.65 SPIR-V Version 0x00010600, Revision 1
#15 17.65 GLSL.std.450 Version 100, Revision 1
#15 17.65 Khronos Tool ID 8
#15 17.65 SPIR-V Generator Version 11
#15 17.65 GL_KHR_vulkan_glsl version 100
#15 17.65 ARB_GL_gl_spirv version 100
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Determining dependency 'libva' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libva` -> 0
#15 17.65 stdout:
#15 17.65 1.22.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libva` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libva` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lva
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libva` -> 0
#15 17.65 stdout:
#15 17.65 -lva
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_muk_q6o
#15 17.65 Code:
#15 17.65
#15 17.65 #include<stddef.h>
#15 17.65 #include<stdio.h>
#15 17.65 int main(void) {
#15 17.65 printf("%ld\n", (long)(sizeof(void *)));
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp_muk_q6o/testfile.cpp -o /mesa/_build/meson-private/tmp_muk_q6o/output.exe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive` -> 0
#15 17.65 Program stdout:
#15 17.65
#15 17.65 8
#15 17.65
#15 17.65 Program stderr:
#15 17.65
#15 17.65
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpcvq120jg
#15 17.65 Code:
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpcvq120jg/testfile.cpp -o /mesa/_build/meson-private/tmpcvq120jg/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive --print-search-dirs` -> 0
#15 17.65 stdout:
#15 17.65 install: /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/
#15 17.65 programs: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/
#15 17.65 libraries: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/x86_64-pc-linux-gnu/15.2.1/:/lib/../lib/:/usr/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/
#15 17.65 -----------
#15 17.65 Run-time dependency libva found: YES 1.22.0
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpnneajyco
#15 17.65 Code:
#15 17.65
#15 17.65 #include <va/va.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef VASurfaceAttribDRMFormatModifiers
#15 17.65 VASurfaceAttribDRMFormatModifiers;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpnneajyco/testfile.c -o /mesa/_build/meson-private/tmpnneajyco/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Header "va/va.h" has symbol "VASurfaceAttribDRMFormatModifiers" with dependency libva: YES
#15 17.65 meson.build:768: WARNING: add_languages is missing native:, assuming languages are wanted for both host and build.
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/gcc --version` -> 0
#15 17.65 stdout:
#15 17.65 gcc (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/gcc -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccIEBwKk.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Detecting compiler via: `rustc --version` -> 0
#15 17.65 stdout:
#15 17.65 rustc 1.90.0 (1159e78c4 2025-09-14) (Arch Linux rust 1:1.90.0-3)
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc -o /mesa/_build/meson-private/rusttest.exe /mesa/_build/meson-private/sanity.rs` -> 0
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc --crate-type staticlib --print native-static-libs /mesa/_build/meson-private/sanity.rs` -> 0
#15 17.65 stderr:
#15 17.65 warning: function `main` is never used
#15 17.65 --> /mesa/_build/meson-private/sanity.rs:1:4
#15 17.65 |
#15 17.65 1 | fn main() {
#15 17.65 | ^^^^
#15 17.65 |
#15 17.65 = note: `#[warn(dead_code)]` on by default
#15 17.65
#15 17.65 note: Link against the following native artifacts when linking against this static library. The order and any duplication can be significant on some platforms.
#15 17.65
#15 17.65 note: native-static-libs: -lgcc_s -lutil -lrt -lpthread -lm -ldl -lc
#15 17.65
#15 17.65 warning: 1 warning emitted
#15 17.65 -----------
#15 17.65 Running test binary command: /mesa/_build/meson-private/rusttest.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/rusttest.exe` -> 0
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 -----------
#15 17.65 Detecting compiler via: `/usr/sbin/gcc --version` -> 0
#15 17.65 stdout:
#15 17.65 gcc (GCC) 15.2.1 20250813
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65 -----------
#15 17.65 Running command: -cpp -x c -E -dM -
#15 17.65 -----
#15 17.65 -----------
#15 17.65 Detecting linker via: `/usr/sbin/gcc -Wl,--version` -> 0
#15 17.65 stdout:
#15 17.65 GNU ld (GNU Binutils) 2.45.0
#15 17.65 Copyright (C) 2025 Free Software Foundation, Inc.
#15 17.65 This program is free software; you may redistribute it under the terms of
#15 17.65 the GNU General Public License version 3 or (at your option) a later version.
#15 17.65 This program has absolutely no warranty.
#15 17.65 -----------
#15 17.65 stderr:
#15 17.65 collect2 version 15.2.1 20250813
#15 17.65 /usr/sbin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxwOqxG.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib --version -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Detecting compiler via: `rustc --version` -> 0
#15 17.65 stdout:
#15 17.65 rustc 1.90.0 (1159e78c4 2025-09-14) (Arch Linux rust 1:1.90.0-3)
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc -o /mesa/_build/meson-private/rusttest.exe /mesa/_build/meson-private/sanity.rs` -> 0
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc --crate-type staticlib --print native-static-libs /mesa/_build/meson-private/sanity.rs` -> 0
#15 17.65 stderr:
#15 17.65 warning: function `main` is never used
#15 17.65 --> /mesa/_build/meson-private/sanity.rs:1:4
#15 17.65 |
#15 17.65 1 | fn main() {
#15 17.65 | ^^^^
#15 17.65 |
#15 17.65 = note: `#[warn(dead_code)]` on by default
#15 17.65
#15 17.65 note: Link against the following native artifacts when linking against this static library. The order and any duplication can be significant on some platforms.
#15 17.65
#15 17.65 note: native-static-libs: -lgcc_s -lutil -lrt -lpthread -lm -ldl -lc
#15 17.65
#15 17.65 warning: 1 warning emitted
#15 17.65 -----------
#15 17.65 Running test binary command: /mesa/_build/meson-private/rusttest.exe
#15 17.65 -----------
#15 17.65 Sanity check: `/mesa/_build/meson-private/rusttest.exe` -> 0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Program bindgen found: YES (/usr/sbin/bindgen)
#15 17.65 Running command: /usr/sbin/bindgen --version
#15 17.65 --- stdout ---
#15 17.65 bindgen 0.72.0
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Determining dependency 'libclc' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libclc` -> 0
#15 17.65 stdout:
#15 17.65 0.2.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libclc` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libclc` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/share/clc
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libclc` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/share/clc
#15 17.65 -----------
#15 17.65 Run-time dependency libclc found: YES 0.2.0
#15 17.65 Running command: /usr/sbin/python3 --version
#15 17.65 --- stdout ---
#15 17.65 Python 3.13.7
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Program python3 found: YES 3.13.7 3.13.7 (/usr/sbin/python3)
#15 17.65 Running command: /usr/sbin/python3 -c '
#15 17.65 try:
#15 17.65 from packaging.version import Version
#15 17.65 except:
#15 17.65 from distutils.version import StrictVersion as Version
#15 17.65 import mako
#15 17.65 assert Version(mako.__version__) >= Version("0.8.0")
#15 17.65 '
#15 17.65 --- stdout ---
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Running command: /usr/sbin/python3 -c '
#15 17.65 import yaml
#15 17.65 '
#15 17.65 --- stdout ---
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Running compile:
#15 17.65 Working directory: /tmp/tmpkfvi0elz
#15 17.65 Code:
#15 17.65
#15 17.65 #include <errno.h>
#15 17.65 #ifndef ETIME
#15 17.65 # define ETIME "MESON_GET_DEFINE_UNDEFINED_SENTINEL"
#15 17.65 #endif
#15 17.65 "MESON_GET_DEFINE_DELIMITER_START"
#15 17.65 ETIME
#15 17.65 "MESON_GET_DEFINE_DELIMITER_END"
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /tmp/tmpkfvi0elz/testfile.c -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -std=c11` -> 0
#15 17.65 stdout:
#15 17.65 extern int *__errno_location (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
#15 17.65
#15 17.65 "MESON_GET_DEFINE_DELIMITER_START"
#15 17.65 62
#15 17.65 "MESON_GET_DEFINE_DELIMITER_END"
#15 17.65 -----------
#15 17.65 Fetching value of define "ETIME" : 62
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpzxaqohx2
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpzxaqohx2/testfile.c -o /mesa/_build/meson-private/tmpzxaqohx2/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -gsplit-dwarf` -> 0
#15 17.65 Compiler for C supports arguments -gsplit-dwarf: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpvdq_xd_p
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpvdq_xd_p/testfile.c -o /mesa/_build/meson-private/tmpvdq_xd_p/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--gdb-index` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: unrecognized option '--gdb-index'
#15 17.65 /usr/sbin/ld: use the --help option for usage information
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Compiler for C supports link arguments -Wl,--gdb-index: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpp5nvmhkl
#15 17.65 Code:
#15 17.65
#15 17.65 #define bswap32 meson_disable_define_of_bswap32
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef bswap32
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char bswap32 (void);
#15 17.65
#15 17.65 #if defined __stub_bswap32 || defined __stub___bswap32
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return bswap32 ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpp5nvmhkl/testfile.c -o /mesa/_build/meson-private/tmpp5nvmhkl/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccfhQxSm.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `bswap32'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpfvvn1u2z
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(bswap32) && !0
#15 17.65 #error "No definition for __builtin_bswap32 found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_bswap32)
#15 17.65 #error "__builtin_bswap32 not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(bswap32)
#15 17.65 __builtin_bswap32;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpfvvn1u2z/testfile.c -o /mesa/_build/meson-private/tmpfvvn1u2z/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "bswap32" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp189b46_l
#15 17.65 Code:
#15 17.65
#15 17.65 #define bswap64 meson_disable_define_of_bswap64
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef bswap64
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char bswap64 (void);
#15 17.65
#15 17.65 #if defined __stub_bswap64 || defined __stub___bswap64
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return bswap64 ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp189b46_l/testfile.c -o /mesa/_build/meson-private/tmp189b46_l/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/cc7KQby4.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `bswap64'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpej56l5j3
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(bswap64) && !0
#15 17.65 #error "No definition for __builtin_bswap64 found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_bswap64)
#15 17.65 #error "__builtin_bswap64 not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(bswap64)
#15 17.65 __builtin_bswap64;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpej56l5j3/testfile.c -o /mesa/_build/meson-private/tmpej56l5j3/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "bswap64" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpztsm11ue
#15 17.65 Code:
#15 17.65
#15 17.65 #define clz meson_disable_define_of_clz
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef clz
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char clz (void);
#15 17.65
#15 17.65 #if defined __stub_clz || defined __stub___clz
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return clz ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpztsm11ue/testfile.c -o /mesa/_build/meson-private/tmpztsm11ue/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccqO61P4.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `clz'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpctfjnwg6
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(clz) && !0
#15 17.65 #error "No definition for __builtin_clz found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_clz)
#15 17.65 #error "__builtin_clz not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(clz)
#15 17.65 __builtin_clz;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpctfjnwg6/testfile.c -o /mesa/_build/meson-private/tmpctfjnwg6/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "clz" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp3axrkn1s
#15 17.65 Code:
#15 17.65
#15 17.65 #define clzll meson_disable_define_of_clzll
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef clzll
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char clzll (void);
#15 17.65
#15 17.65 #if defined __stub_clzll || defined __stub___clzll
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return clzll ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp3axrkn1s/testfile.c -o /mesa/_build/meson-private/tmp3axrkn1s/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccHUePud.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `clzll'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp6lo3cfwb
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(clzll) && !0
#15 17.65 #error "No definition for __builtin_clzll found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_clzll)
#15 17.65 #error "__builtin_clzll not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(clzll)
#15 17.65 __builtin_clzll;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp6lo3cfwb/testfile.c -o /mesa/_build/meson-private/tmp6lo3cfwb/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "clzll" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4l5f0gg9
#15 17.65 Code:
#15 17.65
#15 17.65 #define ctz meson_disable_define_of_ctz
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef ctz
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char ctz (void);
#15 17.65
#15 17.65 #if defined __stub_ctz || defined __stub___ctz
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return ctz ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4l5f0gg9/testfile.c -o /mesa/_build/meson-private/tmp4l5f0gg9/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccNKsn28.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `ctz'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp1j1btlu3
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(ctz) && !0
#15 17.65 #error "No definition for __builtin_ctz found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_ctz)
#15 17.65 #error "__builtin_ctz not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(ctz)
#15 17.65 __builtin_ctz;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp1j1btlu3/testfile.c -o /mesa/_build/meson-private/tmp1j1btlu3/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "ctz" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4ib81_lv
#15 17.65 Code:
#15 17.65
#15 17.65 #define expect meson_disable_define_of_expect
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef expect
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char expect (void);
#15 17.65
#15 17.65 #if defined __stub_expect || defined __stub___expect
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return expect ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4ib81_lv/testfile.c -o /mesa/_build/meson-private/tmp4ib81_lv/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccC7bObC.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `expect'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpbq7b7j6q
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(expect) && !0
#15 17.65 #error "No definition for __builtin_expect found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_expect)
#15 17.65 #error "__builtin_expect not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(expect)
#15 17.65 __builtin_expect;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpbq7b7j6q/testfile.c -o /mesa/_build/meson-private/tmpbq7b7j6q/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "expect" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpdog06nrv
#15 17.65 Code:
#15 17.65
#15 17.65 #define ffs meson_disable_define_of_ffs
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef ffs
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char ffs (void);
#15 17.65
#15 17.65 #if defined __stub_ffs || defined __stub___ffs
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return ffs ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpdog06nrv/testfile.c -o /mesa/_build/meson-private/tmpdog06nrv/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "ffs" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmppzxmkjlh
#15 17.65 Code:
#15 17.65
#15 17.65 #define ffsll meson_disable_define_of_ffsll
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef ffsll
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char ffsll (void);
#15 17.65
#15 17.65 #if defined __stub_ffsll || defined __stub___ffsll
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return ffsll ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmppzxmkjlh/testfile.c -o /mesa/_build/meson-private/tmppzxmkjlh/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "ffsll" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpa_zovx26
#15 17.65 Code:
#15 17.65
#15 17.65 #define popcount meson_disable_define_of_popcount
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef popcount
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char popcount (void);
#15 17.65
#15 17.65 #if defined __stub_popcount || defined __stub___popcount
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return popcount ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpa_zovx26/testfile.c -o /mesa/_build/meson-private/tmpa_zovx26/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccP5LVEF.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `popcount'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpptoi03cn
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(popcount) && !0
#15 17.65 #error "No definition for __builtin_popcount found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_popcount)
#15 17.65 #error "__builtin_popcount not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(popcount)
#15 17.65 __builtin_popcount;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpptoi03cn/testfile.c -o /mesa/_build/meson-private/tmpptoi03cn/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "popcount" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4ili2puz
#15 17.65 Code:
#15 17.65
#15 17.65 #define popcountll meson_disable_define_of_popcountll
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef popcountll
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char popcountll (void);
#15 17.65
#15 17.65 #if defined __stub_popcountll || defined __stub___popcountll
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return popcountll ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4ili2puz/testfile.c -o /mesa/_build/meson-private/tmp4ili2puz/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccZ12ZG5.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `popcountll'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4drf5fcv
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(popcountll) && !0
#15 17.65 #error "No definition for __builtin_popcountll found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_popcountll)
#15 17.65 #error "__builtin_popcountll not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(popcountll)
#15 17.65 __builtin_popcountll;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4drf5fcv/testfile.c -o /mesa/_build/meson-private/tmp4drf5fcv/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "popcountll" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp92z93qow
#15 17.65 Code:
#15 17.65
#15 17.65 #define unreachable meson_disable_define_of_unreachable
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef unreachable
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char unreachable (void);
#15 17.65
#15 17.65 #if defined __stub_unreachable || defined __stub___unreachable
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return unreachable ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp92z93qow/testfile.c -o /mesa/_build/meson-private/tmp92z93qow/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccuamuV8.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `unreachable'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_ugteecl
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(unreachable) && !0
#15 17.65 #error "No definition for __builtin_unreachable found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_unreachable)
#15 17.65 #error "__builtin_unreachable not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(unreachable)
#15 17.65 __builtin_unreachable;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp_ugteecl/testfile.c -o /mesa/_build/meson-private/tmp_ugteecl/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "unreachable" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmprvsp3np5
#15 17.65 Code:
#15 17.65
#15 17.65 #define types_compatible_p meson_disable_define_of_types_compatible_p
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef types_compatible_p
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char types_compatible_p (void);
#15 17.65
#15 17.65 #if defined __stub_types_compatible_p || defined __stub___types_compatible_p
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return types_compatible_p ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmprvsp3np5/testfile.c -o /mesa/_build/meson-private/tmprvsp3np5/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/cctfDdXz.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `types_compatible_p'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpl93ytgk2
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(types_compatible_p) && !0
#15 17.65 #error "No definition for __builtin_types_compatible_p found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_types_compatible_p)
#15 17.65 #error "__builtin_types_compatible_p not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(types_compatible_p)
#15 17.65 __builtin_types_compatible_p;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpl93ytgk2/testfile.c -o /mesa/_build/meson-private/tmpl93ytgk2/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "types_compatible_p" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5f0mth2g
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((const));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp5f0mth2g/testfile.c -o /mesa/_build/meson-private/tmp5f0mth2g/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute const: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpmib8x48o
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((flatten));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpmib8x48o/testfile.c -o /mesa/_build/meson-private/tmpmib8x48o/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute flatten: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpzhbems9n
#15 17.65 Code:
#15 17.65 int *foo(void) __attribute__((malloc));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpzhbems9n/testfile.c -o /mesa/_build/meson-private/tmpzhbems9n/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute malloc: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpath8wjdq
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((pure));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpath8wjdq/testfile.c -o /mesa/_build/meson-private/tmpath8wjdq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute pure: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmptxmb977w
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((unused));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmptxmb977w/testfile.c -o /mesa/_build/meson-private/tmptxmb977w/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute unused: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpr1wi91ls
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((warn_unused_result));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpr1wi91ls/testfile.c -o /mesa/_build/meson-private/tmpr1wi91ls/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute warn_unused_result: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp8jc2b3i3
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((weak));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp8jc2b3i3/testfile.c -o /mesa/_build/meson-private/tmp8jc2b3i3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute weak: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpc8fibtgz
#15 17.65 Code:
#15 17.65 int foo(const char * p, ...) __attribute__((format(printf, 1, 2)));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpc8fibtgz/testfile.c -o /mesa/_build/meson-private/tmpc8fibtgz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute format: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp0hbzftw0
#15 17.65 Code:
#15 17.65 struct __attribute__((packed)) foo { int bar; };
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp0hbzftw0/testfile.c -o /mesa/_build/meson-private/tmp0hbzftw0/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute packed: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpb9r7h8dt
#15 17.65 Code:
#15 17.65 int *foo(void) __attribute__((returns_nonnull));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpb9r7h8dt/testfile.c -o /mesa/_build/meson-private/tmpb9r7h8dt/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute returns_nonnull: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpe9y0b64j
#15 17.65 Code:
#15 17.65
#15 17.65 int foo(void) { return 0; }
#15 17.65 int bar(void) __attribute__((alias("foo")));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpe9y0b64j/testfile.c -o /mesa/_build/meson-private/tmpe9y0b64j/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute alias: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp7t8kgfyn
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((noreturn));
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp7t8kgfyn/testfile.c -o /mesa/_build/meson-private/tmp7t8kgfyn/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute noreturn: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpnrcutset
#15 17.65 Code:
#15 17.65 __attribute__((optimize(3))) int foo(void) { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpnrcutset/testfile.c -o /mesa/_build/meson-private/tmpnrcutset/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute optimize: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpv39r2_qk
#15 17.65 Code:
#15 17.65 int foo(void) __attribute__((visibility("hidden"))); int foo(void) { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpv39r2_qk/testfile.c -o /mesa/_build/meson-private/tmpv39r2_qk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=attributes` -> 0
#15 17.65 Compiler for C supports function attribute visibility:hidden: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5mer4n0w
#15 17.65 Code:
#15 17.65 __uint128_t foo(void) { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp5mer4n0w/testfile.c -o /mesa/_build/meson-private/tmp5mer4n0w/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking if "__uint128_t" compiles: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpvvwamcye
#15 17.65 Code:
#15 17.65
#15 17.65 #define reallocarray meson_disable_define_of_reallocarray
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef reallocarray
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char reallocarray (void);
#15 17.65
#15 17.65 #if defined __stub_reallocarray || defined __stub___reallocarray
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return reallocarray ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpvvwamcye/testfile.c -o /mesa/_build/meson-private/tmpvvwamcye/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "reallocarray" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpjyh6vwsc
#15 17.65 Code:
#15 17.65
#15 17.65 #define fmemopen meson_disable_define_of_fmemopen
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef fmemopen
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char fmemopen (void);
#15 17.65
#15 17.65 #if defined __stub_fmemopen || defined __stub___fmemopen
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return fmemopen ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpjyh6vwsc/testfile.c -o /mesa/_build/meson-private/tmpjyh6vwsc/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "fmemopen" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpxadgm82r
#15 17.65 Code:
#15 17.65 static char unused() { return 5; } int main() { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpxadgm82r/testfile.c -o /mesa/_build/meson-private/tmpxadgm82r/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,--gc-sections` -> 0
#15 17.65 Checking if "gc-sections" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpa3armbrs
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpa3armbrs/testfile.c -o /mesa/_build/meson-private/tmpa3armbrs/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration` -> 0
#15 17.65 Compiler for C supports arguments -Werror=implicit-function-declaration: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp2yh5z6k3
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp2yh5z6k3/testfile.c -o /mesa/_build/meson-private/tmp2yh5z6k3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-prototypes` -> 0
#15 17.65 Compiler for C supports arguments -Werror=missing-prototypes: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmphz4e7_2k
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmphz4e7_2k/testfile.c -o /mesa/_build/meson-private/tmphz4e7_2k/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=return-type` -> 0
#15 17.65 Compiler for C supports arguments -Werror=return-type: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp8o6v2eg2
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp8o6v2eg2/testfile.c -o /mesa/_build/meson-private/tmp8o6v2eg2/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=empty-body` -> 0
#15 17.65 Compiler for C supports arguments -Werror=empty-body: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpgzfpaq1x
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpgzfpaq1x/testfile.c -o /mesa/_build/meson-private/tmpgzfpaq1x/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=incompatible-pointer-types` -> 0
#15 17.65 Compiler for C supports arguments -Werror=incompatible-pointer-types: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp7xvvqbbz
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp7xvvqbbz/testfile.c -o /mesa/_build/meson-private/tmp7xvvqbbz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=int-conversion` -> 0
#15 17.65 Compiler for C supports arguments -Werror=int-conversion: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpowphi8b5
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpowphi8b5/testfile.c -o /mesa/_build/meson-private/tmpowphi8b5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough` -> 0
#15 17.65 Compiler for C supports arguments -Wimplicit-fallthrough: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpyf2oc404
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpyf2oc404/testfile.c -o /mesa/_build/meson-private/tmpyf2oc404/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmisleading-indentation` -> 0
#15 17.65 Compiler for C supports arguments -Wmisleading-indentation: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpirivbmph
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpirivbmph/testfile.c -o /mesa/_build/meson-private/tmpirivbmph/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-field-initializers -Wno-missing-field-initializers` -> 0
#15 17.65 Compiler for C supports arguments -Wno-missing-field-initializers: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpdf0iq9k9
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpdf0iq9k9/testfile.c -o /mesa/_build/meson-private/tmpdf0iq9k9/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-truncation -Wno-format-truncation` -> 0
#15 17.65 Compiler for C supports arguments -Wno-format-truncation: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmppw7zu1ld
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmppw7zu1ld/testfile.c -o /mesa/_build/meson-private/tmppw7zu1ld/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wnonnull-compare -Wno-nonnull-compare` -> 0
#15 17.65 Compiler for C supports arguments -Wno-nonnull-compare: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmphj9mbkym
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmphj9mbkym/testfile.c -o /mesa/_build/meson-private/tmphj9mbkym/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fno-math-errno` -> 0
#15 17.65 Compiler for C supports arguments -fno-math-errno: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_ji0_5v2
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp_ji0_5v2/testfile.c -o /mesa/_build/meson-private/tmp_ji0_5v2/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fno-trapping-math` -> 0
#15 17.65 Compiler for C supports arguments -fno-trapping-math: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpf5fp0ntj
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpf5fp0ntj/testfile.c -o /mesa/_build/meson-private/tmpf5fp0ntj/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Qunused-arguments` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Qunused-arguments'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Qunused-arguments: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmporkcl7de
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmporkcl7de/testfile.c -o /mesa/_build/meson-private/tmporkcl7de/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fno-common` -> 0
#15 17.65 Compiler for C supports arguments -fno-common: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpkxru6sbh
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpkxru6sbh/testfile.c -o /mesa/_build/meson-private/tmpkxru6sbh/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunknown-pragmas -Wno-unknown-pragmas` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unknown-pragmas: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpj8ygh1s8
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpj8ygh1s8/testfile.c -o /mesa/_build/meson-private/tmpj8ygh1s8/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmicrosoft-enum-value -Wno-microsoft-enum-value` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wmicrosoft-enum-value'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wno-microsoft-enum-value: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpekozgol3
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpekozgol3/testfile.c -o /mesa/_build/meson-private/tmpekozgol3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-function -Wno-unused-function` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unused-function: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp2nxnwdov
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp2nxnwdov/testfile.c -o /mesa/_build/meson-private/tmp2nxnwdov/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=format` -> 0
#15 17.65 Compiler for C supports arguments -Werror=format: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpl0dv8rrf
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpl0dv8rrf/testfile.c -o /mesa/_build/meson-private/tmpl0dv8rrf/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wformat-security` -> 0
#15 17.65 stderr:
#15 17.65 cc1: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wformat-security: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpbp5d3_ws
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpbp5d3_ws/testfile.c -o /mesa/_build/meson-private/tmpbp5d3_ws/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=thread-safety` -> 1
#15 17.65 stderr:
#15 17.65 cc1: error: '-Werror=thread-safety': no option '-Wthread-safety'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Werror=thread-safety: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpdy0m8gm8
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpdy0m8gm8/testfile.c -o /mesa/_build/meson-private/tmpdy0m8gm8/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -ffunction-sections` -> 0
#15 17.65 Compiler for C supports arguments -ffunction-sections: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpy81tjvrb
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpy81tjvrb/testfile.c -o /mesa/_build/meson-private/tmpy81tjvrb/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fdata-sections` -> 0
#15 17.65 Compiler for C supports arguments -fdata-sections: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpikdqj7js
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpikdqj7js/testfile.c -o /mesa/_build/meson-private/tmpikdqj7js/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-variable -Wno-unused-variable` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unused-variable: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpopxdidz6
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpopxdidz6/testfile.c -o /mesa/_build/meson-private/tmpopxdidz6/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-but-set-variable -Wno-unused-but-set-variable` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unused-but-set-variable: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpe6e9b3l7
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpe6e9b3l7/testfile.c -o /mesa/_build/meson-private/tmpe6e9b3l7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 /wd4189` -> 1
#15 17.65 stderr:
#15 17.65 gcc: warning: /wd4189: linker input file unused because linking not done
#15 17.65 gcc: error: /wd4189: linker input file not found: No such file or directory
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments /wd4189: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp99qu8014
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp99qu8014/testfile.cpp -o /mesa/_build/meson-private/tmp99qu8014/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=return-type` -> 0
#15 17.65 Compiler for C++ supports arguments -Werror=return-type: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_d96ydi8
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp_d96ydi8/testfile.cpp -o /mesa/_build/meson-private/tmp_d96ydi8/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=empty-body` -> 0
#15 17.65 Compiler for C++ supports arguments -Werror=empty-body: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmps9h1yoea
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmps9h1yoea/testfile.cpp -o /mesa/_build/meson-private/tmps9h1yoea/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmisleading-indentation` -> 0
#15 17.65 Compiler for C++ supports arguments -Wmisleading-indentation: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwkzxzgjt
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpwkzxzgjt/testfile.cpp -o /mesa/_build/meson-private/tmpwkzxzgjt/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wnon-virtual-dtor -Wno-non-virtual-dtor` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-non-virtual-dtor: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpvewzblcz
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpvewzblcz/testfile.cpp -o /mesa/_build/meson-private/tmpvewzblcz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmissing-field-initializers -Wno-missing-field-initializers` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-missing-field-initializers: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp3oas6s62
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp3oas6s62/testfile.cpp -o /mesa/_build/meson-private/tmp3oas6s62/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-truncation -Wno-format-truncation` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-format-truncation: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmps303nglk
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmps303nglk/testfile.cpp -o /mesa/_build/meson-private/tmps303nglk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-math-errno` -> 0
#15 17.65 Compiler for C++ supports arguments -fno-math-errno: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp71wodvuk
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp71wodvuk/testfile.cpp -o /mesa/_build/meson-private/tmp71wodvuk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-trapping-math` -> 0
#15 17.65 Compiler for C++ supports arguments -fno-trapping-math: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpw8yj9dfy
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpw8yj9dfy/testfile.cpp -o /mesa/_build/meson-private/tmpw8yj9dfy/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Qunused-arguments` -> 1
#15 17.65 stderr:
#15 17.65 g++: error: unrecognized command-line option '-Qunused-arguments'
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments -Qunused-arguments: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpew584fa0
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpew584fa0/testfile.cpp -o /mesa/_build/meson-private/tmpew584fa0/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -flifetime-dse=1` -> 0
#15 17.65 Compiler for C++ supports arguments -flifetime-dse=1: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp0inqek_e
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp0inqek_e/testfile.cpp -o /mesa/_build/meson-private/tmp0inqek_e/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunknown-pragmas -Wno-unknown-pragmas` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-unknown-pragmas: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmprvs35n5c
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmprvs35n5c/testfile.cpp -o /mesa/_build/meson-private/tmprvs35n5c/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmicrosoft-enum-value -Wno-microsoft-enum-value` -> 1
#15 17.65 stderr:
#15 17.65 g++: error: unrecognized command-line option '-Wmicrosoft-enum-value'
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments -Wno-microsoft-enum-value: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmphvyvwg1m
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmphvyvwg1m/testfile.cpp -o /mesa/_build/meson-private/tmphvyvwg1m/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=format` -> 0
#15 17.65 Compiler for C++ supports arguments -Werror=format: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpq4olj8qa
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpq4olj8qa/testfile.cpp -o /mesa/_build/meson-private/tmpq4olj8qa/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wformat-security` -> 0
#15 17.65 stderr:
#15 17.65 cc1plus: warning: '-Wformat-security' ignored without '-Wformat' [-Wformat-security]
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments -Wformat-security: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpjufje1iq
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpjufje1iq/testfile.cpp -o /mesa/_build/meson-private/tmpjufje1iq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -ffunction-sections` -> 0
#15 17.65 Compiler for C++ supports arguments -ffunction-sections: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpdyl2gz3z
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpdyl2gz3z/testfile.cpp -o /mesa/_build/meson-private/tmpdyl2gz3z/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fdata-sections` -> 0
#15 17.65 Compiler for C++ supports arguments -fdata-sections: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpohbneyyp
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpohbneyyp/testfile.cpp -o /mesa/_build/meson-private/tmpohbneyyp/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunused-variable -Wno-unused-variable` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-unused-variable: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_0_35900
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp_0_35900/testfile.cpp -o /mesa/_build/meson-private/tmp_0_35900/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunused-but-set-variable -Wno-unused-but-set-variable` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-unused-but-set-variable: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpp20h254y
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpp20h254y/testfile.cpp -o /mesa/_build/meson-private/tmpp20h254y/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive /wd4189` -> 1
#15 17.65 stderr:
#15 17.65 g++: warning: /wd4189: linker input file unused because linking not done
#15 17.65 g++: error: /wd4189: linker input file not found: No such file or directory
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments /wd4189: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpn2uws8ic
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpn2uws8ic/testfile.c -o /mesa/_build/meson-private/tmpn2uws8ic/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Woverride-init -Wno-override-init` -> 0
#15 17.65 Compiler for C supports arguments -Wno-override-init: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmprfkvp3_k
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmprfkvp3_k/testfile.c -o /mesa/_build/meson-private/tmprfkvp3_k/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Winitializer-overrides -Wno-initializer-overrides` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Winitializer-overrides'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wno-initializer-overrides: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpnb23ws4x
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpnb23ws4x/testfile.c -o /mesa/_build/meson-private/tmpnb23ws4x/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=pointer-arith` -> 0
#15 17.65 Compiler for C supports arguments -Werror=pointer-arith: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_iyhzyzp
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp_iyhzyzp/testfile.c -o /mesa/_build/meson-private/tmp_iyhzyzp/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=vla` -> 0
#15 17.65 Compiler for C supports arguments -Werror=vla: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpf7orfm8u
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpf7orfm8u/testfile.c -o /mesa/_build/meson-private/tmpf7orfm8u/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=gnu-empty-initializer` -> 1
#15 17.65 stderr:
#15 17.65 cc1: error: '-Werror=gnu-empty-initializer': no option '-Wgnu-empty-initializer'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Werror=gnu-empty-initializer: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpcdo2n74p
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpcdo2n74p/testfile.cpp -o /mesa/_build/meson-private/tmpcdo2n74p/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=pointer-arith` -> 0
#15 17.65 Compiler for C++ supports arguments -Werror=pointer-arith: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp08pe1sz7
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp08pe1sz7/testfile.cpp -o /mesa/_build/meson-private/tmp08pe1sz7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=vla` -> 0
#15 17.65 Compiler for C++ supports arguments -Werror=vla: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp1kf673fg
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp1kf673fg/testfile.cpp -o /mesa/_build/meson-private/tmp1kf673fg/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Werror=gnu-empty-initializer` -> 1
#15 17.65 stderr:
#15 17.65 cc1plus: error: '-Werror=gnu-empty-initializer': no option '-Wgnu-empty-initializer'
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments -Werror=gnu-empty-initializer: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp55cca91y
#15 17.65 Code:
#15 17.65
#15 17.65 #define __builtin_ia32_clflushopt meson_disable_define_of___builtin_ia32_clflushopt
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef __builtin_ia32_clflushopt
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char __builtin_ia32_clflushopt (void);
#15 17.65
#15 17.65 #if defined __stub___builtin_ia32_clflushopt || defined __stub_____builtin_ia32_clflushopt
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return __builtin_ia32_clflushopt ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp55cca91y/testfile.c -o /mesa/_build/meson-private/tmp55cca91y/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -mclflushopt` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccHByehJ.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `__builtin_ia32_clflushopt'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpon3cit2m
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(__builtin_ia32_clflushopt) && !1
#15 17.65 #error "No definition for __builtin_ia32_clflushopt found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_ia32_clflushopt)
#15 17.65 #error "__builtin_ia32_clflushopt not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(__builtin_ia32_clflushopt)
#15 17.65 __builtin_ia32_clflushopt;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpon3cit2m/testfile.c -o /mesa/_build/meson-private/tmpon3cit2m/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -mclflushopt` -> 0
#15 17.65 Checking for function "__builtin_ia32_clflushopt" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpg191czl1
#15 17.65 Code:
#15 17.65 #include <stdint.h>
#15 17.65 int main() {
#15 17.65 struct {
#15 17.65 uint64_t *v;
#15 17.65 } x;
#15 17.65 return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
#15 17.65 (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
#15 17.65
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpg191czl1/testfile.c -o /mesa/_build/meson-private/tmpg191czl1/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking if "GCC atomic builtins" compiles: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpr_dmibhb
#15 17.65 Code:
#15 17.65 #include <stdint.h>
#15 17.65 int main() {
#15 17.65 struct {
#15 17.65 uint64_t *v;
#15 17.65 } x;
#15 17.65 return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
#15 17.65 (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpr_dmibhb/testfile.c -o /mesa/_build/meson-private/tmpr_dmibhb/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking if "GCC atomic builtins required -latomic" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp46yqgq_i
#15 17.65 Code:
#15 17.65 #include <stdint.h>
#15 17.65 uint64_t v;
#15 17.65 int main() {
#15 17.65 return __sync_add_and_fetch(&v, (uint64_t)1);
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp46yqgq_i/testfile.c -o /mesa/_build/meson-private/tmp46yqgq_i/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking if "GCC 64bit atomics" with dependency links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpaihofy99
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpaihofy99/testfile.c -o /mesa/_build/meson-private/tmpaihofy99/output.exe -D_FILE_OFFSET_BITS=64 -O0 -lws2_32 -Wl,--allow-shlib-undefined` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: cannot find -lws2_32: No such file or directory
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpbv91itc2
#15 17.65 Code:
#15 17.65
#15 17.65 #include<stddef.h>
#15 17.65 #include<stdio.h>
#15 17.65 int main(void) {
#15 17.65 printf("%ld\n", (long)(sizeof(void *)));
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpbv91itc2/testfile.c -o /mesa/_build/meson-private/tmpbv91itc2/output.exe -D_FILE_OFFSET_BITS=64 -O0` -> 0
#15 17.65 Program stdout:
#15 17.65
#15 17.65 8
#15 17.65
#15 17.65 Program stderr:
#15 17.65
#15 17.65
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp3k0xjv3v
#15 17.65 Code:
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp3k0xjv3v/testfile.c -o /mesa/_build/meson-private/tmp3k0xjv3v/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 --print-search-dirs` -> 0
#15 17.65 stdout:
#15 17.65 install: /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/
#15 17.65 programs: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/bin/
#15 17.65 libraries: =/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/x86_64-pc-linux-gnu/15.2.1/:/lib/../lib/:/usr/lib/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/
#15 17.65 -----------
#15 17.65 Library ws2_32 found: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpzahoxs1p
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/sysmacros.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef major
#15 17.65 major;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpzahoxs1p/testfile.c -o /mesa/_build/meson-private/tmpzahoxs1p/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Header "sys/sysmacros.h" has symbol "major" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpfy7nhg9o
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/sysmacros.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef minor
#15 17.65 minor;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpfy7nhg9o/testfile.c -o /mesa/_build/meson-private/tmpfy7nhg9o/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Header "sys/sysmacros.h" has symbol "minor" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp7jkz4pyq
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/sysmacros.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef makedev
#15 17.65 makedev;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp7jkz4pyq/testfile.c -o /mesa/_build/meson-private/tmp7jkz4pyq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Header "sys/sysmacros.h" has symbol "makedev" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4000p5y5
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/mkdev.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef major
#15 17.65 major;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4000p5y5/testfile.c -o /mesa/_build/meson-private/tmp4000p5y5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmp4000p5y5/testfile.c:2:18: fatal error: sys/mkdev.h: No such file or directory
#15 17.65 2 | #include <sys/mkdev.h>
#15 17.65 | ^~~~~~~~~~~~~
#15 17.65 compilation terminated.
#15 17.65 -----------
#15 17.65 Header "sys/mkdev.h" has symbol "major" : NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpqgvmgbm4
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sched.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpqgvmgbm4/testfile.c -o /mesa/_build/meson-private/tmpqgvmgbm4/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "sched.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpg20cr67f
#15 17.65 Code:
#15 17.65
#15 17.65 #define sched_getaffinity meson_disable_define_of_sched_getaffinity
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef sched_getaffinity
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char sched_getaffinity (void);
#15 17.65
#15 17.65 #if defined __stub_sched_getaffinity || defined __stub___sched_getaffinity
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return sched_getaffinity ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpg20cr67f/testfile.c -o /mesa/_build/meson-private/tmpg20cr67f/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "sched_getaffinity" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp__yol86t
#15 17.65 Code:
#15 17.65
#15 17.65 #include <xlocale.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp__yol86t/testfile.c -o /mesa/_build/meson-private/tmp__yol86t/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmp__yol86t/testfile.c:2:18: fatal error: xlocale.h: No such file or directory
#15 17.65 2 | #include <xlocale.h>
#15 17.65 | ^~~~~~~~~~~
#15 17.65 compilation terminated.
#15 17.65 -----------
#15 17.65 Check usable header "xlocale.h" : NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmph8848zyw
#15 17.65 Code:
#15 17.65
#15 17.65 #include <linux/futex.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmph8848zyw/testfile.c -o /mesa/_build/meson-private/tmph8848zyw/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "linux/futex.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpo8pesb_a
#15 17.65 Code:
#15 17.65
#15 17.65 #include <endian.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpo8pesb_a/testfile.c -o /mesa/_build/meson-private/tmpo8pesb_a/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "endian.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpeya_zbhy
#15 17.65 Code:
#15 17.65
#15 17.65 #include <dlfcn.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpeya_zbhy/testfile.c -o /mesa/_build/meson-private/tmpeya_zbhy/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "dlfcn.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwrp4jfxv
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/shm.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpwrp4jfxv/testfile.c -o /mesa/_build/meson-private/tmpwrp4jfxv/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "sys/shm.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpv_ch4610
#15 17.65 Code:
#15 17.65
#15 17.65 #include <cet.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpv_ch4610/testfile.c -o /mesa/_build/meson-private/tmpv_ch4610/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "cet.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwthe3pe5
#15 17.65 Code:
#15 17.65
#15 17.65 #include <pthread_np.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpwthe3pe5/testfile.c -o /mesa/_build/meson-private/tmpwthe3pe5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmpwthe3pe5/testfile.c:2:18: fatal error: pthread_np.h: No such file or directory
#15 17.65 2 | #include <pthread_np.h>
#15 17.65 | ^~~~~~~~~~~~~~
#15 17.65 compilation terminated.
#15 17.65 -----------
#15 17.65 Check usable header "pthread_np.h" : NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpuf0auanp
#15 17.65 Code:
#15 17.65
#15 17.65 #include <sys/inotify.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpuf0auanp/testfile.c -o /mesa/_build/meson-private/tmpuf0auanp/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "sys/inotify.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpe5qx37od
#15 17.65 Code:
#15 17.65
#15 17.65 #include <linux/udmabuf.h>
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpe5qx37od/testfile.c -o /mesa/_build/meson-private/tmpe5qx37od/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Check usable header "linux/udmabuf.h" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp9qm5n4mp
#15 17.65 Code:
#15 17.65
#15 17.65 #define strtof meson_disable_define_of_strtof
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef strtof
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char strtof (void);
#15 17.65
#15 17.65 #if defined __stub_strtof || defined __stub___strtof
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return strtof ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp9qm5n4mp/testfile.c -o /mesa/_build/meson-private/tmp9qm5n4mp/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "strtof" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpfp2zw_e6
#15 17.65 Code:
#15 17.65
#15 17.65 #define mkostemp meson_disable_define_of_mkostemp
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef mkostemp
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char mkostemp (void);
#15 17.65
#15 17.65 #if defined __stub_mkostemp || defined __stub___mkostemp
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return mkostemp ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpfp2zw_e6/testfile.c -o /mesa/_build/meson-private/tmpfp2zw_e6/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "mkostemp" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpefuc6i0p
#15 17.65 Code:
#15 17.65
#15 17.65 #define memfd_create meson_disable_define_of_memfd_create
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef memfd_create
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char memfd_create (void);
#15 17.65
#15 17.65 #if defined __stub_memfd_create || defined __stub___memfd_create
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return memfd_create ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpefuc6i0p/testfile.c -o /mesa/_build/meson-private/tmpefuc6i0p/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "memfd_create" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpahnkfn85
#15 17.65 Code:
#15 17.65
#15 17.65 #define random_r meson_disable_define_of_random_r
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef random_r
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char random_r (void);
#15 17.65
#15 17.65 #if defined __stub_random_r || defined __stub___random_r
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return random_r ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpahnkfn85/testfile.c -o /mesa/_build/meson-private/tmpahnkfn85/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "random_r" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpc4sinnlo
#15 17.65 Code:
#15 17.65
#15 17.65 #define flock meson_disable_define_of_flock
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef flock
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char flock (void);
#15 17.65
#15 17.65 #if defined __stub_flock || defined __stub___flock
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return flock ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpc4sinnlo/testfile.c -o /mesa/_build/meson-private/tmpc4sinnlo/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "flock" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5pq5tw2u
#15 17.65 Code:
#15 17.65
#15 17.65 #define strtok_r meson_disable_define_of_strtok_r
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef strtok_r
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char strtok_r (void);
#15 17.65
#15 17.65 #if defined __stub_strtok_r || defined __stub___strtok_r
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return strtok_r ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp5pq5tw2u/testfile.c -o /mesa/_build/meson-private/tmp5pq5tw2u/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "strtok_r" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp__wafst4
#15 17.65 Code:
#15 17.65
#15 17.65 #define getrandom meson_disable_define_of_getrandom
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef getrandom
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char getrandom (void);
#15 17.65
#15 17.65 #if defined __stub_getrandom || defined __stub___getrandom
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return getrandom ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp__wafst4/testfile.c -o /mesa/_build/meson-private/tmp__wafst4/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "getrandom" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpzmfulivf
#15 17.65 Code:
#15 17.65
#15 17.65 #define qsort_s meson_disable_define_of_qsort_s
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef qsort_s
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char qsort_s (void);
#15 17.65
#15 17.65 #if defined __stub_qsort_s || defined __stub___qsort_s
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return qsort_s ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpzmfulivf/testfile.c -o /mesa/_build/meson-private/tmpzmfulivf/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /usr/sbin/ld: /tmp/ccpkW811.o: in function `main':
#15 17.65 testfile.c:(.text+0x5): undefined reference to `qsort_s'
#15 17.65 collect2: error: ld returned 1 exit status
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmphfr2ipc_
#15 17.65 Code:
#15 17.65
#15 17.65 int main(void) {
#15 17.65
#15 17.65 /* With some toolchains (MSYS2/mingw for example) the compiler
#15 17.65 * provides various builtins which are not really implemented and
#15 17.65 * fall back to the stdlib where they aren't provided and fail at
#15 17.65 * build/link time. In case the user provides a header, including
#15 17.65 * the header didn't lead to the function being defined, and the
#15 17.65 * function we are checking isn't a builtin itself we assume the
#15 17.65 * builtin is not functional and we just error out. */
#15 17.65 #if !1 && !defined(qsort_s) && !0
#15 17.65 #error "No definition for __builtin_qsort_s found in the prefix"
#15 17.65 #endif
#15 17.65
#15 17.65 #ifdef __has_builtin
#15 17.65 #if !__has_builtin(__builtin_qsort_s)
#15 17.65 #error "__builtin_qsort_s not found"
#15 17.65 #endif
#15 17.65 #elif ! defined(qsort_s)
#15 17.65 __builtin_qsort_s;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmphfr2ipc_/testfile.c -o /mesa/_build/meson-private/tmphfr2ipc_/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmphfr2ipc_/testfile.c: In function 'main':
#15 17.65 /mesa/_build/meson-private/tmphfr2ipc_/testfile.c:17:18: error: #error "__builtin_qsort_s not found"
#15 17.65 17 | #error "__builtin_qsort_s not found"
#15 17.65 | ^~~~~
#15 17.65 -----------
#15 17.65 Checking for function "qsort_s" : NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp28jeyl8o
#15 17.65 Code:
#15 17.65
#15 17.65 #define posix_fallocate meson_disable_define_of_posix_fallocate
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef posix_fallocate
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char posix_fallocate (void);
#15 17.65
#15 17.65 #if defined __stub_posix_fallocate || defined __stub___posix_fallocate
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return posix_fallocate ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp28jeyl8o/testfile.c -o /mesa/_build/meson-private/tmp28jeyl8o/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "posix_fallocate" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpvhfmdnzl
#15 17.65 Code:
#15 17.65
#15 17.65 #define secure_getenv meson_disable_define_of_secure_getenv
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef secure_getenv
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char secure_getenv (void);
#15 17.65
#15 17.65 #if defined __stub_secure_getenv || defined __stub___secure_getenv
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return secure_getenv ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpvhfmdnzl/testfile.c -o /mesa/_build/meson-private/tmpvhfmdnzl/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "secure_getenv" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /tmp/tmppqzz5_fl
#15 17.65 Code:
#15 17.65 int i = static_cast<int>(0);
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /tmp/tmppqzz5_fl/testfile.cpp -o /tmp/tmppqzz5_fl/output.obj -D_FILE_OFFSET_BITS=64 -c -std=c++17` -> 0
#15 17.65 Compiler accepts -std=c++17: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp8xshf4zs
#15 17.65 Code:
#15 17.65
#15 17.65 #define _GNU_SOURCE
#15 17.65 #include <stdlib.h>
#15 17.65
#15 17.65 static int dcomp(const void *l, const void *r, void *t) { return 0; }
#15 17.65
#15 17.65 int main(int ac, char **av) {
#15 17.65 int arr[] = { 1 };
#15 17.65 void *t = NULL;
#15 17.65 qsort_r((void*)&arr[0], 1, 1, dcomp, t);
#15 17.65 return (0);
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp8xshf4zs/testfile.cpp -o /mesa/_build/meson-private/tmp8xshf4zs/output.exe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -std=c++17 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS '-DPACKAGE_VERSION="25.2.4"' '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"' -DHAVE_OPENGL=1 -DHAVE_OPENGL_ES_1=0 -DHAVE_OPENGL_ES_2=1 -DHAVE_R300 -DHAVE_R600 -DHAVE_RADEONSI -DHAVE_NOUVEAU -DHAVE_VIRGL -DHAVE_SVGA -DHAVE_SOFTPIPE -DHAVE_LLVMPIPE -DHAVE_I915 -DHAVE_IRIS -DHAVE_CROCUS -DHAVE_ZINK -DHAVE_SWRAST -DHAVE_NVK -DVIDEO_CODEC_VC1DEC=1 -DVIDEO_CODEC_H264DEC=1 -DVIDEO_CODEC_H264ENC=1 -DVIDEO_CODEC_H265DEC=1 -DVIDEO_CODEC_H265ENC=1 -DVIDEO_CODEC_AV1DEC=1 -DVIDEO_CODEC_AV1ENC=1 -DVIDEO_CODEC_VP9DEC=1 -DHAVE_X11_PLATFORM -DHAVE_WAYLAND_PLATFORM -DHAVE_SURFACELESS_PLATFORM -DHAVE_DRM_PLATFORM -DHAVE_XCB_PLATFORM -DUSE_LIBGLVND=1 -DHAVE_VA_SURFACE_ATTRIB_DRM_FORMAT_MODIFIERS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DGLX_USE_DRM -DGLAPI_EXPORT_PROTO_ENTRY_POINTS=0 -DALLOW_KCMP -DMESA_DEBUG=0 -DENABLE_SHADER_CACHE -DHAVE___BUILTIN_BSWAP32 -DHAVE___BUILTIN_BSWAP64 -DHAVE___BUILTIN_CLZ -DHAVE___BUILTIN_CLZLL -DHAVE___BUILTIN_CTZ -DHAVE___BUILTIN_EXPECT -DHAVE___BUILTIN_FFS -DHAVE___BUILTIN_FFSLL -DHAVE___BUILTIN_POPCOUNT -DHAVE___BUILTIN_POPCOUNTLL -DHAVE___BUILTIN_UNREACHABLE -DHAVE___BUILTIN_TYPES_COMPATIBLE_P -DHAVE_FUNC_ATTRIBUTE_CONST -DHAVE_FUNC_ATTRIBUTE_FLATTEN -DHAVE_FUNC_ATTRIBUTE_MALLOC -DHAVE_FUNC_ATTRIBUTE_PURE -DHAVE_FUNC_ATTRIBUTE_UNUSED -DHAVE_FUNC_ATTRIBUTE_WARN_UNUSED_RESULT -DHAVE_FUNC_ATTRIBUTE_WEAK -DHAVE_FUNC_ATTRIBUTE_FORMAT -DHAVE_FUNC_ATTRIBUTE_PACKED -DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL -DHAVE_FUNC_ATTRIBUTE_ALIAS -DHAVE_FUNC_ATTRIBUTE_NORETURN -DHAVE_FUNC_ATTRIBUTE_OPTIMIZE -DHAVE_FUNC_ATTRIBUTE_VISIBILITY -DHAVE_UINT128 -DHAVE_REALLOCARRAY -DHAVE_FMEMOPEN -D_GNU_SOURCE -DUSE_SSE41 -DHAVE___BUILTIN_IA32_CLFLUSHOPT -DUSE_GCC_ATOMIC_BUILTINS -DUSE_X86_64_ASM -DMAJOR_IN_SYSMACROS -DHAS_SCHED_H -DHAS_SCHED_GETAFFINITY -DHAVE_LINUX_FUTEX_H -DHAVE_ENDIAN_H -DHAVE_DLFCN_H -DHAVE_SYS_SHM_H -DHAVE_CET_H -DHAVE_SYS_INOTIFY_H -DHAVE_LINUX_UDMABUF_H -DHAVE_STRTOF -DHAVE_MKOSTEMP -DHAVE_MEMFD_CREATE -DHAVE_RANDOM_R -DHAVE_FLOCK -DHAVE_STRTOK_R -DHAVE_GETRANDOM -DHAVE_POSIX_FALLOCATE -DHAVE_SECURE_GETENV` -> 0
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmp8xshf4zs/testfile.cpp:2:13: warning: '_GNU_SOURCE' redefined
#15 17.65 2 | #define _GNU_SOURCE
#15 17.65 | ^~~~~~~~~~~
#15 17.65 <command-line>: note: this is the location of the previous definition
#15 17.65 -----------
#15 17.65 Checking if "GNU qsort_r" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpxni3079e
#15 17.65 Code:
#15 17.65
#15 17.65 #include <time.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef struct timespec
#15 17.65 struct timespec;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpxni3079e/testfile.c -o /mesa/_build/meson-private/tmpxni3079e/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmpxni3079e/testfile.c: In function 'main':
#15 17.65 /mesa/_build/meson-private/tmpxni3079e/testfile.c:5:28: warning: extra tokens at end of '#ifndef' directive
#15 17.65 5 | #ifndef struct timespec
#15 17.65 | ^~~~~~~~
#15 17.65 -----------
#15 17.65 Header "time.h" has symbol "struct timespec" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpgz040i92
#15 17.65 Code:
#15 17.65 #include <threads.h>
#15 17.65 #include <limits.h>
#15 17.65
#15 17.65 #if defined __stub_thrd_create || defined __stub___thrd_create
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 void *a = (void*) &thrd_create;
#15 17.65 long long b = (long long) a;
#15 17.65 return (int) b;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpgz040i92/testfile.c -o /mesa/_build/meson-private/tmpgz040i92/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "thrd_create" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpoq23lhzs
#15 17.65 Code:
#15 17.65
#15 17.65 #include <errno.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef program_invocation_name
#15 17.65 program_invocation_name;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpoq23lhzs/testfile.c -o /mesa/_build/meson-private/tmpoq23lhzs/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -D_GNU_SOURCE` -> 0
#15 17.65 Header "errno.h" has symbol "program_invocation_name" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpapgrz3ys
#15 17.65 Code:
#15 17.65
#15 17.65 #include <math.h>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef issignaling
#15 17.65 issignaling;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpapgrz3ys/testfile.c -o /mesa/_build/meson-private/tmpapgrz3ys/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -D_GNU_SOURCE` -> 0
#15 17.65 Header "math.h" has symbol "issignaling" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpfpbzc97t
#15 17.65 Code:
#15 17.65
#15 17.65 #define posix_memalign meson_disable_define_of_posix_memalign
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef posix_memalign
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char posix_memalign (void);
#15 17.65
#15 17.65 #if defined __stub_posix_memalign || defined __stub___posix_memalign
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return posix_memalign ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpfpbzc97t/testfile.c -o /mesa/_build/meson-private/tmpfpbzc97t/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "posix_memalign" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpupvqhcdn
#15 17.65 Code:
#15 17.65 #include <sys/types.h>
#15 17.65 #include <dirent.h>
#15 17.65 void bar(void) {
#15 17.65 struct dirent foo;
#15 17.65 (void) ( foo.d_type );
#15 17.65
#15 17.65 (void) foo;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpupvqhcdn/testfile.c -o /mesa/_build/meson-private/tmpupvqhcdn/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking whether type "struct dirent" has member "d_type" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpyiksawpv
#15 17.65 Code:
#15 17.65
#15 17.65 #define _GNU_SOURCE
#15 17.65 #include <stdlib.h>
#15 17.65 #include <locale.h>
#15 17.65 #ifdef HAVE_XLOCALE_H
#15 17.65 #include <xlocale.h>
#15 17.65 #endif
#15 17.65 int main() {
#15 17.65 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
#15 17.65 const char *s = "1.0";
#15 17.65 char *end;
#15 17.65 double d = strtod_l(s, &end, loc);
#15 17.65 float f = strtof_l(s, &end, loc);
#15 17.65 freelocale(loc);
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpyiksawpv/testfile.c -o /mesa/_build/meson-private/tmpyiksawpv/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS '-DPACKAGE_VERSION="25.2.4"' '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"' -DHAVE_OPENGL=1 -DHAVE_OPENGL_ES_1=0 -DHAVE_OPENGL_ES_2=1 -DHAVE_R300 -DHAVE_R600 -DHAVE_RADEONSI -DHAVE_NOUVEAU -DHAVE_VIRGL -DHAVE_SVGA -DHAVE_SOFTPIPE -DHAVE_LLVMPIPE -DHAVE_I915 -DHAVE_IRIS -DHAVE_CROCUS -DHAVE_ZINK -DHAVE_SWRAST -DHAVE_NVK -DVIDEO_CODEC_VC1DEC=1 -DVIDEO_CODEC_H264DEC=1 -DVIDEO_CODEC_H264ENC=1 -DVIDEO_CODEC_H265DEC=1 -DVIDEO_CODEC_H265ENC=1 -DVIDEO_CODEC_AV1DEC=1 -DVIDEO_CODEC_AV1ENC=1 -DVIDEO_CODEC_VP9DEC=1 -DHAVE_X11_PLATFORM -DHAVE_WAYLAND_PLATFORM -DHAVE_SURFACELESS_PLATFORM -DHAVE_DRM_PLATFORM -DHAVE_XCB_PLATFORM -DUSE_LIBGLVND=1 -DHAVE_VA_SURFACE_ATTRIB_DRM_FORMAT_MODIFIERS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DGLX_USE_DRM -DGLAPI_EXPORT_PROTO_ENTRY_POINTS=0 -DALLOW_KCMP -DMESA_DEBUG=0 -DENABLE_SHADER_CACHE -DHAVE___BUILTIN_BSWAP32 -DHAVE___BUILTIN_BSWAP64 -DHAVE___BUILTIN_CLZ -DHAVE___BUILTIN_CLZLL -DHAVE___BUILTIN_CTZ -DHAVE___BUILTIN_EXPECT -DHAVE___BUILTIN_FFS -DHAVE___BUILTIN_FFSLL -DHAVE___BUILTIN_POPCOUNT -DHAVE___BUILTIN_POPCOUNTLL -DHAVE___BUILTIN_UNREACHABLE -DHAVE___BUILTIN_TYPES_COMPATIBLE_P -DHAVE_FUNC_ATTRIBUTE_CONST -DHAVE_FUNC_ATTRIBUTE_FLATTEN -DHAVE_FUNC_ATTRIBUTE_MALLOC -DHAVE_FUNC_ATTRIBUTE_PURE -DHAVE_FUNC_ATTRIBUTE_UNUSED -DHAVE_FUNC_ATTRIBUTE_WARN_UNUSED_RESULT -DHAVE_FUNC_ATTRIBUTE_WEAK -DHAVE_FUNC_ATTRIBUTE_FORMAT -DHAVE_FUNC_ATTRIBUTE_PACKED -DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL -DHAVE_FUNC_ATTRIBUTE_ALIAS -DHAVE_FUNC_ATTRIBUTE_NORETURN -DHAVE_FUNC_ATTRIBUTE_OPTIMIZE -DHAVE_FUNC_ATTRIBUTE_VISIBILITY -DHAVE_UINT128 -DHAVE_REALLOCARRAY -DHAVE_FMEMOPEN -D_GNU_SOURCE -DUSE_SSE41 -DHAVE___BUILTIN_IA32_CLFLUSHOPT -DUSE_GCC_ATOMIC_BUILTINS -DUSE_X86_64_ASM -DMAJOR_IN_SYSMACROS -DHAS_SCHED_H -DHAS_SCHED_GETAFFINITY -DHAVE_LINUX_FUTEX_H -DHAVE_ENDIAN_H -DHAVE_DLFCN_H -DHAVE_SYS_SHM_H -DHAVE_CET_H -DHAVE_SYS_INOTIFY_H -DHAVE_LINUX_UDMABUF_H -DHAVE_STRTOF -DHAVE_MKOSTEMP -DHAVE_MEMFD_CREATE -DHAVE_RANDOM_R -DHAVE_FLOCK -DHAVE_STRTOK_R -DHAVE_GETRANDOM -DHAVE_POSIX_FALLOCATE -DHAVE_SECURE_GETENV -DHAVE_GNU_QSORT_R -DHAVE_STRUCT_TIMESPEC -DHAVE_PROGRAM_INVOCATION_NAME -DHAVE_ISSIGNALING -DHAVE_POSIX_MEMALIGN -DHAVE_DIRENT_D_TYPE` -> 0
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmpyiksawpv/testfile.c:2:13: warning: '_GNU_SOURCE' redefined
#15 17.65 2 | #define _GNU_SOURCE
#15 17.65 | ^~~~~~~~~~~
#15 17.65 <command-line>: note: this is the location of the previous definition
#15 17.65 -----------
#15 17.65 Checking if "strtod has locale support" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp7zk_o9ox
#15 17.65 Code:
#15 17.65 int main() { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp7zk_o9ox/testfile.c -o /mesa/_build/meson-private/tmp7zk_o9ox/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,-Bsymbolic` -> 0
#15 17.65 Checking if "Bsymbolic" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp2x90f0f4
#15 17.65 Code:
#15 17.65 int main() { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp2x90f0f4/testfile.c -o /mesa/_build/meson-private/tmp2x90f0f4/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,--version-script=/mesa/build-support/conftest.map` -> 0
#15 17.65 Checking if "version-script" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmplwic_2x8
#15 17.65 Code:
#15 17.65 int main() { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmplwic_2x8/testfile.c -o /mesa/_build/meson-private/tmplwic_2x8/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,--dynamic-list=/mesa/build-support/conftest.dyn` -> 0
#15 17.65 Checking if "dynamic-list" links: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpufcoyhgx
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpufcoyhgx/testfile.c -o /mesa/_build/meson-private/tmpufcoyhgx/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--build-id=sha1` -> 0
#15 17.65 Compiler for C supports link arguments -Wl,--build-id=sha1: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmppsm9nt0x
#15 17.65 Code:
#15 17.65
#15 17.65 #define dlopen meson_disable_define_of_dlopen
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef dlopen
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char dlopen (void);
#15 17.65
#15 17.65 #if defined __stub_dlopen || defined __stub___dlopen
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return dlopen ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmppsm9nt0x/testfile.c -o /mesa/_build/meson-private/tmppsm9nt0x/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "dlopen" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpbbzyyram
#15 17.65 Code:
#15 17.65
#15 17.65 #define dladdr meson_disable_define_of_dladdr
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef dladdr
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char dladdr (void);
#15 17.65
#15 17.65 #if defined __stub_dladdr || defined __stub___dladdr
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return dladdr ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpbbzyyram/testfile.c -o /mesa/_build/meson-private/tmpbbzyyram/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "dladdr" with dependency : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpsa2j0bp0
#15 17.65 Code:
#15 17.65
#15 17.65 #define dl_iterate_phdr meson_disable_define_of_dl_iterate_phdr
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef dl_iterate_phdr
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char dl_iterate_phdr (void);
#15 17.65
#15 17.65 #if defined __stub_dl_iterate_phdr || defined __stub___dl_iterate_phdr
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return dl_iterate_phdr ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpsa2j0bp0/testfile.c -o /mesa/_build/meson-private/tmpsa2j0bp0/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "dl_iterate_phdr" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpm2wkmmjz
#15 17.65 Code:
#15 17.65
#15 17.65 #define clock_gettime meson_disable_define_of_clock_gettime
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef clock_gettime
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char clock_gettime (void);
#15 17.65
#15 17.65 #if defined __stub_clock_gettime || defined __stub___clock_gettime
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return clock_gettime ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpm2wkmmjz/testfile.c -o /mesa/_build/meson-private/tmpm2wkmmjz/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "clock_gettime" : YES
#15 17.65 Determining dependency 'zlib' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion zlib` -> 0
#15 17.65 stdout:
#15 17.65 1.3.1
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags zlib` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs zlib` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lz
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs zlib` -> 0
#15 17.65 stdout:
#15 17.65 -lz
#15 17.65 -----------
#15 17.65 Run-time dependency zlib found: YES 1.3.1
#15 17.65 Determining dependency 'libzstd' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libzstd` -> 0
#15 17.65 stdout:
#15 17.65 1.5.7
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libzstd` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libzstd` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lzstd
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libzstd` -> 0
#15 17.65 stdout:
#15 17.65 -lzstd
#15 17.65 -----------
#15 17.65 Run-time dependency libzstd found: YES 1.5.7
#15 17.65 Run-time dependency threads found: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmporrzrarf
#15 17.65 Code:
#15 17.65 #include <pthread.h>
#15 17.65 #include <limits.h>
#15 17.65
#15 17.65 #if defined __stub_pthread_setaffinity_np || defined __stub___pthread_setaffinity_np
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 void *a = (void*) &pthread_setaffinity_np;
#15 17.65 long long b = (long long) a;
#15 17.65 return (int) b;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmporrzrarf/testfile.c -o /mesa/_build/meson-private/tmporrzrarf/output.exe -pthread -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -D_GNU_SOURCE` -> 0
#15 17.65 Checking for function "pthread_setaffinity_np" with dependency threads: YES
#15 17.65 Determining dependency 'expat' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion expat` -> 0
#15 17.65 stdout:
#15 17.65 2.7.3
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags expat` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs expat` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lexpat
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs expat` -> 0
#15 17.65 stdout:
#15 17.65 -lexpat
#15 17.65 -----------
#15 17.65 Run-time dependency expat found: YES 2.7.3
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpjhya_827
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpjhya_827/testfile.c -o /mesa/_build/meson-private/tmpjhya_827/output.exe -D_FILE_OFFSET_BITS=64 -O0 -lm -Wl,--allow-shlib-undefined` -> 0
#15 17.65 Library m found: YES
#15 17.65 Message: libdrm 2.4.121 needed because amdgpu has the highest requirement
#15 17.65 Determining dependency 'libdrm_intel' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libdrm_intel` -> 0
#15 17.65 stdout:
#15 17.65 2.4.126
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libdrm_intel` -> 0
#15 17.65 stdout:
#15 17.65 -I/usr/include/libdrm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm_intel` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -ldrm_intel -ldrm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm_intel` -> 0
#15 17.65 stdout:
#15 17.65 -ldrm_intel -ldrm
#15 17.65 -----------
#15 17.65 Run-time dependency libdrm_intel found: YES 2.4.126
#15 17.65 Determining dependency 'libdrm_amdgpu' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libdrm_amdgpu` -> 0
#15 17.65 stdout:
#15 17.65 2.4.126
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libdrm_amdgpu` -> 0
#15 17.65 stdout:
#15 17.65 -I/usr/include/libdrm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm_amdgpu` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -ldrm_amdgpu
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm_amdgpu` -> 0
#15 17.65 stdout:
#15 17.65 -ldrm_amdgpu
#15 17.65 -----------
#15 17.65 Run-time dependency libdrm_amdgpu found: YES 2.4.126
#15 17.65 Determining dependency 'libdrm' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libdrm` -> 0
#15 17.65 stdout:
#15 17.65 2.4.126
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libdrm` -> 0
#15 17.65 stdout:
#15 17.65 -I/usr/include/libdrm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -ldrm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libdrm` -> 0
#15 17.65 stdout:
#15 17.65 -ldrm
#15 17.65 -----------
#15 17.65 Run-time dependency libdrm found: YES 2.4.126
#15 17.65 Determining dependency 'libudev' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libudev` -> 0
#15 17.65 stdout:
#15 17.65 258
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libudev` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libudev` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -ludev
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libudev` -> 0
#15 17.65 stdout:
#15 17.65 -ludev
#15 17.65 -----------
#15 17.65 Run-time dependency libudev found: YES 258
#15 17.65 llvm-config binary missing from cross or native file, or env var undefined.
#15 17.65 Trying a default llvm-config fallback at llvm-config
#15 17.65 Trying a default llvm-config fallback at llvm-config-21.1
#15 17.65 Trying a default llvm-config fallback at llvm-config21.1
#15 17.65 Trying a default llvm-config fallback at llvm-config-21
#15 17.65 Trying a default llvm-config fallback at llvm-config21
#15 17.65 Trying a default llvm-config fallback at llvm-config-20.1
#15 17.65 Trying a default llvm-config fallback at llvm-config20.1
#15 17.65 Trying a default llvm-config fallback at llvm-config-20
#15 17.65 Trying a default llvm-config fallback at llvm-config20
#15 17.65 Trying a default llvm-config fallback at llvm-config-19.1
#15 17.65 Trying a default llvm-config fallback at llvm-config19.1
#15 17.65 Trying a default llvm-config fallback at llvm-config-19
#15 17.65 Trying a default llvm-config fallback at llvm-config19
#15 17.65 Trying a default llvm-config fallback at llvm-config-18.1
#15 17.65 Trying a default llvm-config fallback at llvm-config18.1
#15 17.65 Trying a default llvm-config fallback at llvm-config-18
#15 17.65 Trying a default llvm-config fallback at llvm-config18
#15 17.65 Trying a default llvm-config fallback at llvm-config-17
#15 17.65 Trying a default llvm-config fallback at llvm-config17
#15 17.65 Trying a default llvm-config fallback at llvm-config-16
#15 17.65 Trying a default llvm-config fallback at llvm-config16
#15 17.65 Trying a default llvm-config fallback at llvm-config-15
#15 17.65 Trying a default llvm-config fallback at llvm-config15
#15 17.65 Trying a default llvm-config fallback at llvm-config-14
#15 17.65 Trying a default llvm-config fallback at llvm-config14
#15 17.65 Trying a default llvm-config fallback at llvm-config-13
#15 17.65 Trying a default llvm-config fallback at llvm-config13
#15 17.65 Trying a default llvm-config fallback at llvm-config-12
#15 17.65 Trying a default llvm-config fallback at llvm-config12
#15 17.65 Trying a default llvm-config fallback at llvm-config-11
#15 17.65 Trying a default llvm-config fallback at llvm-config11
#15 17.65 Trying a default llvm-config fallback at llvm-config-10
#15 17.65 Trying a default llvm-config fallback at llvm-config10
#15 17.65 Trying a default llvm-config fallback at llvm-config-9
#15 17.65 Trying a default llvm-config fallback at llvm-config90
#15 17.65 Trying a default llvm-config fallback at llvm-config-8
#15 17.65 Trying a default llvm-config fallback at llvm-config80
#15 17.65 Trying a default llvm-config fallback at llvm-config-7
#15 17.65 Trying a default llvm-config fallback at llvm-config70
#15 17.65 Trying a default llvm-config fallback at llvm-config-6.0
#15 17.65 Trying a default llvm-config fallback at llvm-config60
#15 17.65 Trying a default llvm-config fallback at llvm-config-5.0
#15 17.65 Trying a default llvm-config fallback at llvm-config50
#15 17.65 Trying a default llvm-config fallback at llvm-config-4.0
#15 17.65 Trying a default llvm-config fallback at llvm-config40
#15 17.65 Trying a default llvm-config fallback at llvm-config-3.9
#15 17.65 Trying a default llvm-config fallback at llvm-config39
#15 17.65 Trying a default llvm-config fallback at llvm-config-3.8
#15 17.65 Trying a default llvm-config fallback at llvm-config38
#15 17.65 Trying a default llvm-config fallback at llvm-config-3.7
#15 17.65 Trying a default llvm-config fallback at llvm-config37
#15 17.65 Trying a default llvm-config fallback at llvm-config-3.6
#15 17.65 Trying a default llvm-config fallback at llvm-config36
#15 17.65 Trying a default llvm-config fallback at llvm-config-3.5
#15 17.65 Trying a default llvm-config fallback at llvm-config35
#15 17.65 Trying a default llvm-config fallback at llvm-config-20
#15 17.65 Trying a default llvm-config fallback at llvm-config-devel
#15 17.65 Trying a default llvm-config fallback at llvm-config-64
#15 17.65 llvm-config found: YES (/usr/sbin/llvm-config) 20.1.8
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/llvm-config --components` -> 0
#15 17.65 stdout:
#15 17.65 aarch64 aarch64asmparser aarch64codegen aarch64desc aarch64disassembler aarch64info aarch64utils aggressiveinstcombine all all-targets amdgpu amdgpuasmparser amdgpucodegen amdgpudesc amdgpudisassembler amdgpuinfo amdgputargetmca amdgpuutils analysis arm armasmparser armcodegen armdesc armdisassembler arminfo armutils asmparser asmprinter avr avrasmparser avrcodegen avrdesc avrdisassembler avrinfo binaryformat bitreader bitstreamreader bitwriter bpf bpfasmparser bpfcodegen bpfdesc bpfdisassembler bpfinfo cfguard cgdata codegen codegentypes core coroutines coverage debuginfobtf debuginfocodeview debuginfodwarf debuginfogsym debuginfologicalview debuginfomsf debuginfopdb demangle dlltooldriver dwarflinker dwarflinkerclassic dwarflinkerparallel dwp engine executionengine extensions filecheck frontendatomic frontenddriver frontendhlsl frontendoffloading frontendopenacc frontendopenmp fuzzercli fuzzmutate globalisel hexagon hexagonasmparser hexagoncodegen hexagondesc hexagondisassembler hexagoninfo hipstdpar instcombine instrumentation interfacestub interpreter ipo irprinter irreader jitlink lanai lanaiasmparser lanaicodegen lanaidesc lanaidisassembler lanaiinfo libdriver lineeditor linker loongarch loongarchasmparser loongarchcodegen loongarchdesc loongarchdisassembler loongarchinfo lto mc mca mcdisassembler mcjit mcparser mips mipsasmparser mipscodegen mipsdesc mipsdisassembler mipsinfo mirparser msp430 msp430asmparser msp430codegen msp430desc msp430disassembler msp430info native nativecodegen nvptx nvptxcodegen nvptxdesc nvptxinfo objcarcopts objcopy object objectyaml option orcdebugging orcjit orcshared orctargetprocess passes perfjitevents powerpc powerpcasmparser powerpccodegen powerpcdesc powerpcdisassembler powerpcinfo profiledata remarks riscv riscvasmparser riscvcodegen riscvdesc riscvdisassembler riscvinfo riscvtargetmca runtimedyld sandboxir scalaropts selectiondag sparc sparcasmparser sparccodegen sparcdesc sparcdisassembler sparcinfo spirv spirvanalysis spirvcodegen spirvdesc spirvinfo support symbolize systemz systemzasmparser systemzcodegen systemzdesc systemzdisassembler systemzinfo tablegen target targetparser telemetry textapi textapibinaryreader transformutils ve veasmparser vecodegen vectorize vedesc vedisassembler veinfo webassembly webassemblyasmparser webassemblycodegen webassemblydesc webassemblydisassembler webassemblyinfo webassemblyutils windowsdriver windowsmanifest x86 x86asmparser x86codegen x86desc x86disassembler x86info x86targetmca xcore xcorecodegen xcoredesc xcoredisassembler xcoreinfo xray
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/llvm-config --cppflags` -> 0
#15 17.65 stdout:
#15 17.65 -I/usr/include -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/llvm-config --shared-mode` -> 0
#15 17.65 stdout:
#15 17.65 shared
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/llvm-config --libs --ldflags --link-shared amdgpu asmparser bitreader bitwriter core coverage engine executionengine instcombine ipo irreader libdriver linker lto mcdisassembler mcjit native option scalaropts target transformutils all-targets coroutines frontenddriver frontendhlsl windowsdriver` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib
#15 17.65 -lLLVM-20
#15 17.65 -----------
#15 17.65 Run-time dependency LLVM (modules: amdgpu, asmparser, bitreader, bitwriter, core, coverage, engine, executionengine, instcombine, ipo, irreader, libdriver, linker, lto, mcdisassembler, mcjit, native, option, scalaropts, target, transformutils, all-targets, coroutines, frontenddriver, frontendhlsl, lto, windowsdriver) found: YES 20.1.8
#15 17.65 Got config-tool variable has-rtti : YES
#15 17.65 Determining dependency 'LLVMSPIRVLib' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion LLVMSPIRVLib` -> 0
#15 17.65 stdout:
#15 17.65 20.1.0.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags LLVMSPIRVLib` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs LLVMSPIRVLib` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lLLVMSPIRVLib
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs LLVMSPIRVLib` -> 0
#15 17.65 stdout:
#15 17.65 -lLLVMSPIRVLib
#15 17.65 -----------
#15 17.65 Run-time dependency llvmspirvlib found: YES 20.1.0.0
#15 17.65 Determining dependency 'SPIRV-Tools' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion SPIRV-Tools` -> 0
#15 17.65 stdout:
#15 17.65 2025.4.1
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags SPIRV-Tools` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs SPIRV-Tools` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lSPIRV-Tools-opt -lSPIRV-Tools -lSPIRV-Tools-link
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs SPIRV-Tools` -> 0
#15 17.65 stdout:
#15 17.65 -lSPIRV-Tools-opt -lSPIRV-Tools -lSPIRV-Tools-link
#15 17.65 -----------
#15 17.65 Run-time dependency spirv-tools found: YES 2025.4.1
#15 17.65 Got config-tool variable libdir : /usr/lib
#15 17.65 Library clang-cpp found: YES
#15 17.65 Determining dependency 'lua54' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua54` -> 1
#15 17.65 stderr:
#15 17.65 Package lua54 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua54.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua54' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua54 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua5.4' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua5.4` -> 1
#15 17.65 stderr:
#15 17.65 Package lua5.4 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua5.4.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua5.4' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua5.4 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua-5.4' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua-5.4` -> 1
#15 17.65 stderr:
#15 17.65 Package lua-5.4 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua-5.4.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua-5.4' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua-5.4 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua53' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua53` -> 1
#15 17.65 stderr:
#15 17.65 Package lua53 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua53.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua53' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua53 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua5.3' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua5.3` -> 1
#15 17.65 stderr:
#15 17.65 Package lua5.3 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua5.3.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua5.3' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua5.3 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua-5.3' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua-5.3` -> 1
#15 17.65 stderr:
#15 17.65 Package lua-5.3 was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua-5.3.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua-5.3' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65 Preliminary CMake check failed. Aborting.
#15 17.65 Run-time dependency lua-5.3 found: NO (tried pkgconfig and cmake)
#15 17.65 Determining dependency 'lua' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion lua` -> 1
#15 17.65 stderr:
#15 17.65 Package lua was not found in the pkg-config search path.
#15 17.65 Perhaps you should add the directory containing `lua.pc'
#15 17.65 to the PKG_CONFIG_PATH environment variable
#15 17.65 Package 'lua' not found
#15 17.65 -----------
#15 17.65 CMake binary for host machine is cached.
#15 17.65
#15 17.65 Determining dependency 'lua' with CMake executable '/usr/sbin/cmake'
#15 17.65 CMake Toolchain: Calling CMake once to generate the compiler state
#15 17.65 Calling CMake (['/usr/sbin/cmake']) in /mesa/_build/meson-private/__CMake_compiler_info__ with:
#15 17.65 - "--trace-expand"
#15 17.65 - "--trace-format=json-v1"
#15 17.65 - "--no-warn-unused-cli"
#15 17.65 - "--trace-redirect=cmake_trace.txt"
#15 17.65 - "-G"
#15 17.65 - "Ninja"
#15 17.65 - "-DCMAKE_TOOLCHAIN_FILE=/mesa/_build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
#15 17.65 - "."
#15 17.65 Try CMake generator: auto
#15 17.65 Calling CMake (['/usr/sbin/cmake']) in /mesa/_build/meson-private/cmake_lua with:
#15 17.65 - "-DNAME=lua"
#15 17.65 - "-DARCHS="
#15 17.65 - "-DVERSION="
#15 17.65 - "-DCOMPS="
#15 17.65 - "-DSTATIC=OFF"
#15 17.65 - "--trace-expand"
#15 17.65 - "--trace-format=json-v1"
#15 17.65 - "--no-warn-unused-cli"
#15 17.65 - "--trace-redirect=cmake_trace.txt"
#15 17.65 - "-DCMAKE_TOOLCHAIN_FILE=/mesa/_build/meson-private/cmake_lua/CMakeMesonToolchainFile.cmake"
#15 17.65 - "."
#15 17.65 CMake reported that the package lua was not found, even though Meson's preliminary check succeeded.
#15 17.65 Dependency lookup for lua with method 'cmake' failed: Dependency lua not found: PACKAGE_FOUND is false
#15 17.65 Run-time dependency lua found: NO (tried pkgconfig)
#15 17.65 Determining dependency 'libelf' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libelf` -> 0
#15 17.65 stdout:
#15 17.65 0.193
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libelf` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libelf` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lelf
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libelf` -> 0
#15 17.65 stdout:
#15 17.65 -lelf
#15 17.65 -----------
#15 17.65 Run-time dependency libelf found: YES 0.193
#15 17.65 Dependency valgrind skipped: feature valgrind disabled
#15 17.65 Program bison found: YES (/usr/sbin/bison)
#15 17.65 Running command: /usr/sbin/bison --version
#15 17.65 --- stdout ---
#15 17.65 bison (GNU Bison) 3.8.2
#15 17.65 Written by Robert Corbett and Richard Stallman.
#15 17.65
#15 17.65 Copyright (C) 2021 Free Software Foundation, Inc.
#15 17.65 This is free software; see the source for copying conditions. There is NO
#15 17.65 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Program bison found: YES 3.8.2 3.8.2 (/usr/sbin/bison)
#15 17.65 Program flex found: YES (/usr/sbin/flex)
#15 17.65 Determining dependency 'libunwind' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion libunwind` -> 0
#15 17.65 stdout:
#15 17.65 1.8.2
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags libunwind` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libunwind` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lunwind
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs libunwind` -> 0
#15 17.65 stdout:
#15 17.65 -lunwind
#15 17.65 -----------
#15 17.65 Run-time dependency libunwind found: YES 1.8.2
#15 17.65 Determining dependency 'wayland-scanner' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion wayland-scanner` -> 0
#15 17.65 stdout:
#15 17.65 1.24.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags wayland-scanner` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-scanner` -> 0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-scanner` -> 0
#15 17.65 Build-time dependency wayland-scanner found: YES 1.24.0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --variable=wayland_scanner wayland-scanner` -> 0
#15 17.65 stdout:
#15 17.65 /usr/bin/wayland-scanner
#15 17.65 -----------
#15 17.65 Got pkg-config variable wayland_scanner : /usr/bin/wayland-scanner
#15 17.65 Program /usr/bin/wayland-scanner found: YES (/usr/bin/wayland-scanner)
#15 17.65 Determining dependency 'wayland-protocols' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion wayland-protocols` -> 0
#15 17.65 stdout:
#15 17.65 1.45
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags wayland-protocols` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-protocols` -> 0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-protocols` -> 0
#15 17.65 Run-time dependency wayland-protocols found: YES 1.45
#15 17.65 Determining dependency 'wayland-client' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion wayland-client` -> 0
#15 17.65 stdout:
#15 17.65 1.24.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags wayland-client` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-client` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lwayland-client -lm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-client` -> 0
#15 17.65 stdout:
#15 17.65 -lwayland-client -lm
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpsjix5a8i
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpsjix5a8i/testfile.cpp -o /mesa/_build/meson-private/tmpsjix5a8i/output.exe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -lm -Wl,--allow-shlib-undefined` -> 0
#15 17.65 Run-time dependency wayland-client found: YES 1.24.0
#15 17.65 Determining dependency 'wayland-server' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion wayland-server` -> 0
#15 17.65 stdout:
#15 17.65 1.24.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags wayland-server` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-server` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lwayland-server -lm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-server` -> 0
#15 17.65 stdout:
#15 17.65 -lwayland-server -lm
#15 17.65 -----------
#15 17.65 Run-time dependency wayland-server found: YES 1.24.0
#15 17.65 Determining dependency 'wayland-egl-backend' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion wayland-egl-backend` -> 0
#15 17.65 stdout:
#15 17.65 3
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags wayland-egl-backend` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-egl-backend` -> 0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs wayland-egl-backend` -> 0
#15 17.65 Run-time dependency wayland-egl-backend found: YES 3
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5r9ga9r9
#15 17.65 Code:
#15 17.65 #include <wayland-client.h>
#15 17.65 #include <limits.h>
#15 17.65
#15 17.65 #if defined __stub_wl_display_dispatch_queue_timeout || defined __stub___wl_display_dispatch_queue_timeout
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 void *a = (void*) &wl_display_dispatch_queue_timeout;
#15 17.65 long long b = (long long) a;
#15 17.65 return (int) b;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp5r9ga9r9/testfile.c -o /mesa/_build/meson-private/tmp5r9ga9r9/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,--start-group /usr/lib/libwayland-client.so -lm -Wl,--end-group` -> 0
#15 17.65 Checking for function "wl_display_dispatch_queue_timeout" with dependency wayland-client: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_91d9o32
#15 17.65 Code:
#15 17.65 #include <wayland-client.h>
#15 17.65 #include <limits.h>
#15 17.65
#15 17.65 #if defined __stub_wl_display_create_queue_with_name || defined __stub___wl_display_create_queue_with_name
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 void *a = (void*) &wl_display_create_queue_with_name;
#15 17.65 long long b = (long long) a;
#15 17.65 return (int) b;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp_91d9o32/testfile.c -o /mesa/_build/meson-private/tmp_91d9o32/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11 -Wl,--start-group /usr/lib/libwayland-client.so -lm -Wl,--end-group` -> 0
#15 17.65 Checking for function "wl_display_create_queue_with_name" with dependency wayland-client: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /tmp/tmpx75ssshd
#15 17.65 Code:
#15 17.65
#15 17.65
#15 17.65 #ifndef _OPENMP
#15 17.65 # define _OPENMP "MESON_GET_DEFINE_UNDEFINED_SENTINEL"
#15 17.65 #endif
#15 17.65 "MESON_GET_DEFINE_DELIMITER_START"
#15 17.65 _OPENMP
#15 17.65 "MESON_GET_DEFINE_DELIMITER_END"
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /tmp/tmpx75ssshd/testfile.cpp -E -P -fopenmp -D_FILE_OFFSET_BITS=64 -P -O0 -fpermissive` -> 0
#15 17.65 stdout:
#15 17.65 "MESON_GET_DEFINE_DELIMITER_START"
#15 17.65 201511
#15 17.65 "MESON_GET_DEFINE_DELIMITER_END"
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwiicsp5i
#15 17.65 Code:
#15 17.65
#15 17.65 #ifdef __has_include
#15 17.65 #if !__has_include("omp.h")
#15 17.65 #error "Header 'omp.h' could not be found"
#15 17.65 #endif
#15 17.65 #else
#15 17.65 #include <omp.h>
#15 17.65 #endif
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpwiicsp5i/testfile.cpp -E -P -fopenmp -D_FILE_OFFSET_BITS=64 -P -O0 -fpermissive` -> 0
#15 17.65 Run-time dependency OpenMP found: YES 4.5
#15 17.65 Determining dependency 'xcb' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb
#15 17.65 -----------
#15 17.65 Run-time dependency xcb found: YES 1.17.0
#15 17.65 Determining dependency 'xcb-randr' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-randr` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-randr` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-randr` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-randr
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-randr` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-randr
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-randr found: YES 1.17.0
#15 17.65 Determining dependency 'x11' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion x11` -> 0
#15 17.65 stdout:
#15 17.65 1.8.12
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags x11` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs x11` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lX11
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs x11` -> 0
#15 17.65 stdout:
#15 17.65 -lX11
#15 17.65 -----------
#15 17.65 Run-time dependency x11 found: YES 1.8.12
#15 17.65 Determining dependency 'xext' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xext` -> 0
#15 17.65 stdout:
#15 17.65 1.3.6
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xext` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xext` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lXext
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xext` -> 0
#15 17.65 stdout:
#15 17.65 -lXext
#15 17.65 -----------
#15 17.65 Run-time dependency xext found: YES 1.3.6
#15 17.65 Determining dependency 'xcb-glx' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-glx` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-glx` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-glx` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-glx
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-glx` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-glx
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-glx found: YES 1.17.0
#15 17.65 Determining dependency 'xcb-shm' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-shm` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-shm` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-shm` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-shm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-shm` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-shm
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-shm found: YES 1.17.0
#15 17.65 Dependency xcb found: YES 1.17.0 (cached)
#15 17.65 Determining dependency 'xcb-keysyms' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-keysyms` -> 0
#15 17.65 stdout:
#15 17.65 0.4.1
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-keysyms` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-keysyms` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-keysyms -lxcb
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-keysyms` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-keysyms -lxcb
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-keysyms found: YES 0.4.1
#15 17.65 Determining dependency 'x11-xcb' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion x11-xcb` -> 0
#15 17.65 stdout:
#15 17.65 1.8.12
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags x11-xcb` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs x11-xcb` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lX11-xcb -lX11 -lxcb
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs x11-xcb` -> 0
#15 17.65 stdout:
#15 17.65 -lX11-xcb -lX11 -lxcb
#15 17.65 -----------
#15 17.65 Run-time dependency x11-xcb found: YES 1.8.12
#15 17.65 Determining dependency 'xcb-dri3' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-dri3` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-dri3` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-dri3` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-dri3
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-dri3` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-dri3
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-dri3 found: YES 1.17.0
#15 17.65 Determining dependency 'xcb-present' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-present` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-present` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-present` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-present
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-present` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-present
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-present found: YES 1.17.0
#15 17.65 Dependency xcb-shm found: YES 1.17.0 (cached)
#15 17.65 Determining dependency 'xcb-sync' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-sync` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-sync` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-sync` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-sync
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-sync` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-sync
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-sync found: YES 1.17.0
#15 17.65 Determining dependency 'xshmfence' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xshmfence` -> 0
#15 17.65 stdout:
#15 17.65 1.3.3
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xshmfence` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xshmfence` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxshmfence
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xshmfence` -> 0
#15 17.65 stdout:
#15 17.65 -lxshmfence
#15 17.65 -----------
#15 17.65 Run-time dependency xshmfence found: YES 1.3.3
#15 17.65 Determining dependency 'glproto' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion glproto` -> 0
#15 17.65 stdout:
#15 17.65 1.4.17
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags glproto` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs glproto` -> 0
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs glproto` -> 0
#15 17.65 Run-time dependency glproto found: YES 1.4.17
#15 17.65 Determining dependency 'xxf86vm' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xxf86vm` -> 0
#15 17.65 stdout:
#15 17.65 1.1.6
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xxf86vm` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xxf86vm` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lXxf86vm
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xxf86vm` -> 0
#15 17.65 stdout:
#15 17.65 -lXxf86vm
#15 17.65 -----------
#15 17.65 Run-time dependency xxf86vm found: YES 1.1.6
#15 17.65 Determining dependency 'xcb-xfixes' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xcb-xfixes` -> 0
#15 17.65 stdout:
#15 17.65 1.17.0
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xcb-xfixes` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-xfixes` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lxcb-xfixes
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xcb-xfixes` -> 0
#15 17.65 stdout:
#15 17.65 -lxcb-xfixes
#15 17.65 -----------
#15 17.65 Run-time dependency xcb-xfixes found: YES 1.17.0
#15 17.65 Dependency xcb-dri3 found: YES 1.17.0 (cached)
#15 17.65 Dependency xcb-present found: YES 1.17.0 (cached)
#15 17.65 Dependency xcb-shm found: YES 1.17.0 (cached)
#15 17.65 Dependency xshmfence found: YES 1.3.3 (cached)
#15 17.65 Dependency xcb-randr found: YES 1.17.0 (cached)
#15 17.65 Determining dependency 'xrandr' with pkg-config executable '/usr/sbin/pkg-config'
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --modversion xrandr` -> 0
#15 17.65 stdout:
#15 17.65 1.5.4
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --cflags xrandr` -> 0
#15 17.65 env[PKG_CONFIG_ALLOW_SYSTEM_LIBS]: 1
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xrandr` -> 0
#15 17.65 stdout:
#15 17.65 -L/usr/lib -lXrandr
#15 17.65 -----------
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --libs xrandr` -> 0
#15 17.65 stdout:
#15 17.65 -lXrandr
#15 17.65 -----------
#15 17.65 Run-time dependency xrandr found: YES 1.5.4
#15 17.65 Library sensors skipped: feature lmsensors disabled
#15 17.65 Program nm found: YES (/usr/sbin/nm)
#15 17.65 Program symbols-check.py found: YES (/usr/bin/python /mesa/bin/symbols-check.py)
#15 17.65 Program install_megadrivers.py found: YES (/usr/bin/python /mesa/bin/install_megadrivers.py)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwmclx3yt
#15 17.65 Code:
#15 17.65
#15 17.65 #include<stddef.h>
#15 17.65 #include<stdio.h>
#15 17.65 int main(void) {
#15 17.65 printf("%ld\n", (long)(sizeof(void *)));
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpwmclx3yt/testfile.c -o /mesa/_build/meson-private/tmpwmclx3yt/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Program stdout:
#15 17.65
#15 17.65 8
#15 17.65
#15 17.65 Program stderr:
#15 17.65
#15 17.65
#15 17.65 Checking for size of "void *" : 8
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --variable=pkgdatadir wayland-protocols` -> 0
#15 17.65 stdout:
#15 17.65 //usr/share/wayland-protocols
#15 17.65 -----------
#15 17.65 Got pkg-config variable pkgdatadir : //usr/share/wayland-protocols
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4eahocya
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4eahocya/testfile.c -o /mesa/_build/meson-private/tmp4eahocya/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmisleading-indentation -Wno-misleading-indentation` -> 0
#15 17.65 Compiler for C supports arguments -Wno-misleading-indentation: YES
#15 17.65 env[PKG_CONFIG_PATH]:
#15 17.65 env[PKG_CONFIG]: /usr/sbin/pkg-config
#15 17.65 -----------
#15 17.65 Called: `/usr/sbin/pkg-config --variable=libexecdir libclc` -> 0
#15 17.65 stdout:
#15 17.65 /usr/share/clc
#15 17.65 -----------
#15 17.65 Got pkg-config variable libexecdir : /usr/share/clc
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpkz1zgwv0
#15 17.65 Code:
#15 17.65
#15 17.65 #define mmap meson_disable_define_of_mmap
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef mmap
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char mmap (void);
#15 17.65
#15 17.65 #if defined __stub_mmap || defined __stub___mmap
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return mmap ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpkz1zgwv0/testfile.c -o /mesa/_build/meson-private/tmpkz1zgwv0/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "mmap" : YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpn5hu4967
#15 17.65 Code:
#15 17.65 #include <spirv-tools/linker.hpp>
#15 17.65 void bar(void) {
#15 17.65 spvtools::LinkerOptions foo;
#15 17.65 (void) ( foo.SetAllowPtrTypeMismatch(true) );
#15 17.65
#15 17.65 (void) foo;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpn5hu4967/testfile.cpp -o /mesa/_build/meson-private/tmpn5hu4967/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -std=c++17` -> 0
#15 17.65 Checking whether type "spvtools::LinkerOptions" has member "SetAllowPtrTypeMismatch(true)" with dependency SPIRV-Tools: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4aaldrmr
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4aaldrmr/testfile.c -o /mesa/_build/meson-private/tmp4aaldrmr/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -fPIC` -> 0
#15 17.65 Compiler for C supports link arguments -fPIC: YES
#15 17.65 Program decode.py found: YES (/mesa/src/compiler/isaspec/decode.py)
#15 17.65 Program encode.py found: YES (/mesa/src/compiler/isaspec/encode.py)
#15 17.65 Program bindgen found: YES (/usr/sbin/bindgen)
#15 17.65 Looking for a fallback subproject for the dependency syn because:
#15 17.65 Use of fallback dependencies is forced.
#15 17.65 Downloading syn source from https://crates.io/api/v1/crates/syn/2.0.87/download
#15 17.65
#15 17.65 Executing subproject syn
#15 17.65
#15 17.65 Project name: syn
#15 17.65 Project version: 2.0.87
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Downloading unicode-ident source from https://crates.io/api/v1/crates/unicode-ident/1.0.12/download
#15 17.65
#15 17.65 Executing subproject syn:unicode-ident
#15 17.65
#15 17.65 Project name: unicode-ident
#15 17.65 Project version: 1.0.12
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 subprojects/unicode-ident-1.0.12/meson.build:8: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 17.65 Build targets in project: 104
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust_abi arg in static_library'}
#15 17.65 Subproject unicode-ident finished.
#15 17.65
#15 17.65 Downloading quote source from https://crates.io/api/v1/crates/quote/1.0.35/download
#15 17.65
#15 17.65 Executing subproject syn:quote
#15 17.65
#15 17.65 Project name: quote
#15 17.65 Project version: 1.0.35
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Downloading proc-macro2 source from https://crates.io/api/v1/crates/proc-macro2/1.0.86/download
#15 17.65
#15 17.65 Executing subproject syn:quote:proc-macro2
#15 17.65
#15 17.65 Project name: proc-macro2
#15 17.65 Project version: 1.0.86
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 subprojects/proc-macro2-1.0.86/meson.build:56: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 17.65 Build targets in project: 105
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust_abi arg in static_library'}
#15 17.65 Subproject proc-macro2 finished.
#15 17.65
#15 17.65 subprojects/quote-1.0.35/meson.build:24: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 17.65 Build targets in project: 106
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust_abi arg in static_library'}
#15 17.65 Subproject quote finished.
#15 17.65
#15 17.65 subprojects/syn-2.0.87/meson.build:40: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 17.65 Build targets in project: 107
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust_abi arg in static_library'}
#15 17.65 Subproject syn finished.
#15 17.65
#15 17.65 Dependency syn from subproject subprojects/syn-2.0.87 found: YES 2.0.87
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpnbqw4a_8
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpnbqw4a_8/testfile.c -o /mesa/_build/meson-private/tmpnbqw4a_8/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions` -> 0
#15 17.65 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp9o0ki0o7
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp9o0ki0o7/testfile.c -o /mesa/_build/meson-private/tmp9o0ki0o7/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-z,relro` -> 0
#15 17.65 Compiler for C supports link arguments -Wl,-z,relro: YES
#15 17.65 Configuring VkLayer_MESA_overlay.json using configuration
#15 17.65 Configuring VkLayer_MESA_overlay.json.in_dev.json using configuration
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpnbqw4a_8/testfile.c -o /mesa/_build/meson-private/tmpnbqw4a_8/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions
#15 17.65
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp9o0ki0o7/testfile.c -o /mesa/_build/meson-private/tmp9o0ki0o7/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-z,relro
#15 17.65
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports link arguments -Wl,-z,relro: YES (cached)
#15 17.65 Configuring VkLayer_MESA_device_select.json using configuration
#15 17.65 Configuring VkLayer_MESA_device_select.json.in_dev.json using configuration
#15 17.65 Adding test "genxml sort gen40.xml"
#15 17.65 Adding test "genxml sort gen45.xml"
#15 17.65 Adding test "genxml sort gen50.xml"
#15 17.65 Adding test "genxml sort gen60.xml"
#15 17.65 Adding test "genxml sort gen70.xml"
#15 17.65 Adding test "genxml sort gen75.xml"
#15 17.65 Adding test "genxml sort gen80.xml"
#15 17.65 Adding test "genxml sort gen90.xml"
#15 17.65 Adding test "genxml sort gen110.xml"
#15 17.65 Adding test "genxml sort gen120.xml"
#15 17.65 Adding test "genxml sort gen125.xml"
#15 17.65 Adding test "genxml sort gen200.xml"
#15 17.65 Adding test "genxml sort gen300.xml"
#15 17.65 Adding test "genxml sort gen125_rt.xml"
#15 17.65 Adding test "genxml sort gen200_rt.xml"
#15 17.65 Adding test "genxml sort gen300_rt.xml"
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpnbqw4a_8/testfile.c -o /mesa/_build/meson-private/tmpnbqw4a_8/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-Bsymbolic-functions
#15 17.65
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports link arguments -Wl,-Bsymbolic-functions: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp9o0ki0o7/testfile.c -o /mesa/_build/meson-private/tmp9o0ki0o7/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,-z,relro
#15 17.65
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports link arguments -Wl,-z,relro: YES (cached)
#15 17.65 Configuring VkLayer_INTEL_nullhw.json using configuration
#15 17.65 Configuring VkLayer_INTEL_nullhw.json.in_dev.json using configuration
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpm2hcrk5i
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpm2hcrk5i/testfile.c -o /mesa/_build/meson-private/tmpm2hcrk5i/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=switch` -> 0
#15 17.65 Compiler for C supports arguments -Werror=switch: YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/g++ /mesa/_build/meson-private/tmpohbneyyp/testfile.cpp -o /mesa/_build/meson-private/tmpohbneyyp/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunused-variable -Wno-unused-variable
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C++ supports arguments -Wno-unused-variable: YES (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmprjkmue2h
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmprjkmue2h/testfile.cpp -o /mesa/_build/meson-private/tmprjkmue2h/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunused-local-typedefs -Wno-unused-local-typedefs` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-unused-local-typedefs: YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/g++ /mesa/_build/meson-private/tmp_0_35900/testfile.cpp -o /mesa/_build/meson-private/tmp_0_35900/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wunused-but-set-variable -Wno-unused-but-set-variable
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C++ supports arguments -Wno-unused-but-set-variable: YES (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpatsvi3pm
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpatsvi3pm/testfile.cpp -o /mesa/_build/meson-private/tmpatsvi3pm/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wmaybe-uninitialized -Wno-maybe-uninitialized` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-maybe-uninitialized: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp68lgcs3c
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp68lgcs3c/testfile.cpp -o /mesa/_build/meson-private/tmp68lgcs3c/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wself-assign -Wno-self-assign` -> 1
#15 17.65 stderr:
#15 17.65 g++: error: unrecognized command-line option '-Wself-assign'
#15 17.65 -----------
#15 17.65 Compiler for C++ supports arguments -Wno-self-assign: NO
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/g++ /mesa/_build/meson-private/tmpp20h254y/testfile.cpp -o /mesa/_build/meson-private/tmpp20h254y/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive /wd4189
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 g++: warning: /wd4189: linker input file unused because linking not done
#15 17.65 g++: error: /wd4189: linker input file not found: No such file or directory
#15 17.65
#15 17.65 Compiler for C++ supports arguments /wd4189: NO (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpr36c26ka
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpr36c26ka/testfile.cpp -o /mesa/_build/meson-private/tmpr36c26ka/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wuninitialized -Wno-uninitialized` -> 0
#15 17.65 Compiler for C++ supports arguments -Wno-uninitialized: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpxbr9a3kp
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpxbr9a3kp/testfile.cpp -o /mesa/_build/meson-private/tmpxbr9a3kp/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-exceptions` -> 0
#15 17.65 Compiler for C++ supports arguments -fno-exceptions: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpdnl54255
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpdnl54255/testfile.cpp -o /mesa/_build/meson-private/tmpdnl54255/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -fno-rtti` -> 0
#15 17.65 Compiler for C++ supports arguments -fno-rtti: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpx80_g1ob
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpx80_g1ob/testfile.cpp -o /mesa/_build/meson-private/tmpx80_g1ob/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wimplicit-fallthrough` -> 0
#15 17.65 Compiler for C++ supports arguments -Wimplicit-fallthrough: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpeg3b1joa
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpeg3b1joa/testfile.cpp -o /mesa/_build/meson-private/tmpeg3b1joa/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -Wshadow` -> 0
#15 17.65 Compiler for C++ supports arguments -Wshadow: YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpowphi8b5/testfile.c -o /mesa/_build/meson-private/tmpowphi8b5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wimplicit-fallthrough: YES (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpme83zx9q
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpme83zx9q/testfile.c -o /mesa/_build/meson-private/tmpme83zx9q/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wshadow` -> 0
#15 17.65 Compiler for C supports arguments -Wshadow: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpw5_9uy3f
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpw5_9uy3f/testfile.c -o /mesa/_build/meson-private/tmpw5_9uy3f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wall` -> 0
#15 17.65 Compiler for C supports arguments -Wall: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpr0nwrnxu
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpr0nwrnxu/testfile.c -o /mesa/_build/meson-private/tmpr0nwrnxu/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wextra` -> 0
#15 17.65 Compiler for C supports arguments -Wextra: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5i67rqfz
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp5i67rqfz/testfile.c -o /mesa/_build/meson-private/tmp5i67rqfz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused -Wno-unused` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unused: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpwbslro3l
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpwbslro3l/testfile.c -o /mesa/_build/meson-private/tmpwbslro3l/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-parameter -Wno-unused-parameter` -> 0
#15 17.65 Compiler for C supports arguments -Wno-unused-parameter: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmphtxg_732
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmphtxg_732/testfile.c -o /mesa/_build/meson-private/tmphtxg_732/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-command-line-argument -Wno-unused-command-line-argument` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wunused-command-line-argument'; did you mean '-Wunused-dummy-argument'?
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wno-unused-command-line-argument: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpp2knodi7
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpp2knodi7/testfile.c -o /mesa/_build/meson-private/tmpp2knodi7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wignored-qualifiers -Wno-ignored-qualifiers` -> 0
#15 17.65 Compiler for C supports arguments -Wno-ignored-qualifiers: YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpirivbmph/testfile.c -o /mesa/_build/meson-private/tmpirivbmph/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-field-initializers -Wno-missing-field-initializers
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpemsu6k_z
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpemsu6k_z/testfile.c -o /mesa/_build/meson-private/tmpemsu6k_z/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wself-assign -Wno-self-assign` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wself-assign'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wno-self-assign: NO
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp4pxbpmiq
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp4pxbpmiq/testfile.c -o /mesa/_build/meson-private/tmp4pxbpmiq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough -Wno-implicit-fallthrough` -> 0
#15 17.65 Compiler for C supports arguments -Wno-implicit-fallthrough: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp70f4cic3
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp70f4cic3/testfile.c -o /mesa/_build/meson-private/tmp70f4cic3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=comment` -> 0
#15 17.65 Compiler for C supports arguments -Werror=comment: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpqqwpwl6f
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpqqwpwl6f/testfile.c -o /mesa/_build/meson-private/tmpqqwpwl6f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-braces` -> 0
#15 17.65 Compiler for C supports arguments -Werror=missing-braces: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpj2n09fb5
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpj2n09fb5/testfile.c -o /mesa/_build/meson-private/tmpj2n09fb5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=override-init` -> 0
#15 17.65 Compiler for C supports arguments -Werror=override-init: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp2pe32ahk
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp2pe32ahk/testfile.c -o /mesa/_build/meson-private/tmp2pe32ahk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-conversion` -> 0
#15 17.65 Compiler for C supports arguments -Werror=enum-conversion: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmprkmzd270
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmprkmzd270/testfile.c -o /mesa/_build/meson-private/tmprkmzd270/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-compare` -> 0
#15 17.65 Compiler for C supports arguments -Werror=enum-compare: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp6tlq92pd
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp6tlq92pd/testfile.c -o /mesa/_build/meson-private/tmp6tlq92pd/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=maybe-uninitialized` -> 0
#15 17.65 Compiler for C supports arguments -Werror=maybe-uninitialized: YES
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp805l9_au
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp805l9_au/testfile.c -o /mesa/_build/meson-private/tmp805l9_au/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=parentheses` -> 0
#15 17.65 Compiler for C supports arguments -Werror=parentheses: YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpw5_9uy3f/testfile.c -o /mesa/_build/meson-private/tmpw5_9uy3f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wall
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wall: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpr0nwrnxu/testfile.c -o /mesa/_build/meson-private/tmpr0nwrnxu/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wextra
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wextra: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp5i67rqfz/testfile.c -o /mesa/_build/meson-private/tmp5i67rqfz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused -Wno-unused
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpwbslro3l/testfile.c -o /mesa/_build/meson-private/tmpwbslro3l/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-parameter -Wno-unused-parameter
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmphtxg_732/testfile.c -o /mesa/_build/meson-private/tmphtxg_732/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-command-line-argument -Wno-unused-command-line-argument
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wunused-command-line-argument'; did you mean '-Wunused-dummy-argument'?
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused-command-line-argument: NO (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpp2knodi7/testfile.c -o /mesa/_build/meson-private/tmpp2knodi7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wignored-qualifiers -Wno-ignored-qualifiers
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-ignored-qualifiers: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpirivbmph/testfile.c -o /mesa/_build/meson-private/tmpirivbmph/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-field-initializers -Wno-missing-field-initializers
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpemsu6k_z/testfile.c -o /mesa/_build/meson-private/tmpemsu6k_z/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wself-assign -Wno-self-assign
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wself-assign'
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-self-assign: NO (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp4pxbpmiq/testfile.c -o /mesa/_build/meson-private/tmp4pxbpmiq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough -Wno-implicit-fallthrough
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp70f4cic3/testfile.c -o /mesa/_build/meson-private/tmp70f4cic3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=comment
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=comment: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpqqwpwl6f/testfile.c -o /mesa/_build/meson-private/tmpqqwpwl6f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-braces
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=missing-braces: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpj2n09fb5/testfile.c -o /mesa/_build/meson-private/tmpj2n09fb5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=override-init
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=override-init: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp2pe32ahk/testfile.c -o /mesa/_build/meson-private/tmp2pe32ahk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-conversion
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=enum-conversion: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmprkmzd270/testfile.c -o /mesa/_build/meson-private/tmprkmzd270/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-compare
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=enum-compare: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp6tlq92pd/testfile.c -o /mesa/_build/meson-private/tmp6tlq92pd/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=maybe-uninitialized
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=maybe-uninitialized: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpw5_9uy3f/testfile.c -o /mesa/_build/meson-private/tmpw5_9uy3f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wall
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wall: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpr0nwrnxu/testfile.c -o /mesa/_build/meson-private/tmpr0nwrnxu/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wextra
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wextra: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp5i67rqfz/testfile.c -o /mesa/_build/meson-private/tmp5i67rqfz/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused -Wno-unused
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpwbslro3l/testfile.c -o /mesa/_build/meson-private/tmpwbslro3l/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-parameter -Wno-unused-parameter
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmphtxg_732/testfile.c -o /mesa/_build/meson-private/tmphtxg_732/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wunused-command-line-argument -Wno-unused-command-line-argument
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wunused-command-line-argument'; did you mean '-Wunused-dummy-argument'?
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-unused-command-line-argument: NO (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpp2knodi7/testfile.c -o /mesa/_build/meson-private/tmpp2knodi7/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wignored-qualifiers -Wno-ignored-qualifiers
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-ignored-qualifiers: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpirivbmph/testfile.c -o /mesa/_build/meson-private/tmpirivbmph/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-field-initializers -Wno-missing-field-initializers
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-missing-field-initializers: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpemsu6k_z/testfile.c -o /mesa/_build/meson-private/tmpemsu6k_z/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wself-assign -Wno-self-assign
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wself-assign'
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-self-assign: NO (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp4pxbpmiq/testfile.c -o /mesa/_build/meson-private/tmp4pxbpmiq/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wimplicit-fallthrough -Wno-implicit-fallthrough
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp70f4cic3/testfile.c -o /mesa/_build/meson-private/tmp70f4cic3/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=comment
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=comment: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpqqwpwl6f/testfile.c -o /mesa/_build/meson-private/tmpqqwpwl6f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=missing-braces
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=missing-braces: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpj2n09fb5/testfile.c -o /mesa/_build/meson-private/tmpj2n09fb5/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=override-init
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=override-init: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp2pe32ahk/testfile.c -o /mesa/_build/meson-private/tmp2pe32ahk/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-conversion
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=enum-conversion: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmprkmzd270/testfile.c -o /mesa/_build/meson-private/tmprkmzd270/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=enum-compare
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=enum-compare: YES (cached)
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmp6tlq92pd/testfile.c -o /mesa/_build/meson-private/tmp6tlq92pd/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Werror=maybe-uninitialized
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65
#15 17.65 Compiler for C supports arguments -Werror=maybe-uninitialized: YES (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpz0b7lple
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpz0b7lple/testfile.c -o /mesa/_build/meson-private/tmpz0b7lple/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wgnu-variable-sized-type-not-at-end -Wno-gnu-variable-sized-type-not-at-end` -> 1
#15 17.65 stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wgnu-variable-sized-type-not-at-end'
#15 17.65 -----------
#15 17.65 Compiler for C supports arguments -Wno-gnu-variable-sized-type-not-at-end: NO
#15 17.65 Running command: /usr/sbin/cbindgen --version
#15 17.65 --- stdout ---
#15 17.65 cbindgen 0.29.0
#15 17.65
#15 17.65 --- stderr ---
#15 17.65
#15 17.65
#15 17.65 Program cbindgen found: YES 0.29.0 0.29.0 (/usr/sbin/cbindgen)
#15 17.65 Looking for a fallback subproject for the dependency paste because:
#15 17.65 Use of fallback dependencies is forced.
#15 17.65 Downloading paste source from https://crates.io/api/v1/crates/paste/1.0.14/download
#15 17.65
#15 17.65 Executing subproject paste
#15 17.65
#15 17.65 Project name: paste
#15 17.65 Project version: 1.0.14
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 subprojects/paste-1.0.14/meson.build:10: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust.proc_macro.
#15 17.65 Build targets in project: 455
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust.proc_macro'}
#15 17.65 Subproject paste finished.
#15 17.65
#15 17.65 Dependency paste from subproject subprojects/paste-1.0.14 found: YES 1.0.14
#15 17.65 Dependency paste found: YES 1.0.14 (cached)
#15 17.65 Looking for a fallback subproject for the dependency rustc-hash because:
#15 17.65 Use of fallback dependencies is forced.
#15 17.65 Downloading rustc-hash source from https://crates.io/api/v1/crates/rustc-hash/2.1.1/download
#15 17.65
#15 17.65 Executing subproject rustc-hash
#15 17.65
#15 17.65 Project name: rustc_hash
#15 17.65 Project version: 2.1.1
#15 17.65 Rust compiler for the host machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the host machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 Rust compiler for the build machine: rustc -C linker=/usr/sbin/gcc (rustc 1.90.0 "1.90.0")
#15 17.65 Rust linker for the build machine: rustc -C linker=/usr/sbin/gcc ld.bfd 2.45.0
#15 17.65 subprojects/rustc-hash-2.1.1/meson.build:12: WARNING: Project does not target a minimum version but uses feature introduced in '1.3.0': rust_abi arg in static_library.
#15 17.65 Build targets in project: 462
#15 17.65 WARNING: Project specifies no minimum version but uses features which were added in versions:
#15 17.65 * 1.3.0: {'rust_abi arg in static_library'}
#15 17.65 Subproject rustc-hash finished.
#15 17.65
#15 17.65 Dependency rustc-hash from subproject subprojects/rustc-hash-2.1.1 found: YES 2.1.1
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp1db9anpu
#15 17.65 Code:
#15 17.65 #include <memory_resource>
#15 17.65 void bar(void) {
#15 17.65 (void) sizeof(std::pmr::monotonic_buffer_resource);
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp1db9anpu/testfile.cpp -o /mesa/_build/meson-private/tmp1db9anpu/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -std=c++17` -> 0
#15 17.65 Checking for type "std::pmr::monotonic_buffer_resource" : YES
#15 17.65 Using cached compile:
#15 17.65 Cached command line: /usr/sbin/gcc /mesa/_build/meson-private/tmpz0b7lple/testfile.c -o /mesa/_build/meson-private/tmpz0b7lple/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wgnu-variable-sized-type-not-at-end -Wno-gnu-variable-sized-type-not-at-end
#15 17.65
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 Cached compiler stdout:
#15 17.65
#15 17.65 Cached compiler stderr:
#15 17.65 gcc: error: unrecognized command-line option '-Wgnu-variable-sized-type-not-at-end'
#15 17.65
#15 17.65 Compiler for C supports arguments -Wno-gnu-variable-sized-type-not-at-end: NO (cached)
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp11j6gg7f
#15 17.65 Code:
#15 17.65 extern int i;
#15 17.65 int i;
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmp11j6gg7f/testfile.c -o /mesa/_build/meson-private/tmp11j6gg7f/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -Wmissing-prototypes -Wno-missing-prototypes` -> 0
#15 17.65 Compiler for C supports arguments -Wno-missing-prototypes: YES
#15 17.65 Configuring rusticl.icd using configuration
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmptmtfgl3e
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmptmtfgl3e/testfile.c -o /mesa/_build/meson-private/tmptmtfgl3e/output.exe -D_FILE_OFFSET_BITS=64 -O0 -Wl,--fatal-warnings -Wl,--default-symver` -> 0
#15 17.65 Compiler for C supports link arguments -Wl,--default-symver: YES
#15 17.65 Configuring dri.sym using configuration
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpz56pam9y
#15 17.65 Code:
#15 17.65
#15 17.65 #define mincore meson_disable_define_of_mincore
#15 17.65
#15 17.65 #include <limits.h>
#15 17.65 #undef mincore
#15 17.65
#15 17.65 #ifdef __cplusplus
#15 17.65 extern "C"
#15 17.65 #endif
#15 17.65 char mincore (void);
#15 17.65
#15 17.65 #if defined __stub_mincore || defined __stub___mincore
#15 17.65 fail fail fail this function is not going to work
#15 17.65 #endif
#15 17.65
#15 17.65 int main(void) {
#15 17.65 return mincore ();
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/gcc /mesa/_build/meson-private/tmpz56pam9y/testfile.c -o /mesa/_build/meson-private/tmpz56pam9y/output.exe -D_FILE_OFFSET_BITS=64 -O0 -std=c11` -> 0
#15 17.65 Checking for function "mincore" : YES
#15 17.65 Configuring 50_mesa.json using configuration
#15 17.65 Configuring devenv_glvnd_egl.json using configuration
#15 17.65 Configuring dri.sym using configuration
#15 17.65 Program ln found: YES (/usr/sbin/ln)
#15 17.65 Program sphinx-build skipped: feature html-docs disabled
#15 17.65 Build targets in project: 595
#15 17.65
#15 17.65 mesa 25.2.4
#15 17.65
#15 17.65 Directories
#15 17.65 prefix : /usr
#15 17.65 libdir : lib
#15 17.65 includedir : include
#15 17.65
#15 17.65 Common C and C++ arguments
#15 17.65 c_cpp_args : -mtls-dialect=gnu2
#15 17.65
#15 17.65 OpenGL
#15 17.65 OpenGL : YES
#15 17.65 ES1 : NO
#15 17.65 ES2 : YES
#15 17.65 GLVND : YES
#15 17.65
#15 17.65 DRI
#15 17.65 Platform : drm
#15 17.65 Driver dir : /usr/lib/dri
#15 17.65
#15 17.65 GLX
#15 17.65 Enabled : YES
#15 17.65 Provider : dri
#15 17.65
#15 17.65 EGL
#15 17.65 Enabled : YES
#15 17.65 Drivers : builtin:egl_dri2 builtin:egl_dri3
#15 17.65 Platforms : x11 wayland surfaceless drm xcb
#15 17.65
#15 17.65 GBM
#15 17.65 Enabled : YES
#15 17.65 External libgbm : NO
#15 17.65 Backends path : /usr/lib/gbm
#15 17.65
#15 17.65 Vulkan
#15 17.65 Drivers : amd intel intel_hasvk swrast virtio nouveau
#15 17.65 Platforms : x11 wayland surfaceless drm xcb
#15 17.65 ICD dir : share/vulkan/icd.d
#15 17.65 Layers : device-select intel-nullhw overlay
#15 17.65 Intel Ray tracing : YES
#15 17.65
#15 17.65 Video
#15 17.65 Codecs : vc1dec h264dec h264enc h265dec h265enc av1dec
#15 17.65 av1enc vp9dec
#15 17.65 APIs : va vulkan
#15 17.65
#15 17.65 LLVM
#15 17.65 Required : enabled
#15 17.65 Version : 20.1.8
#15 17.65
#15 17.65 Gallium
#15 17.65 Enabled : YES
#15 17.65 Drivers : r300 r600 radeonsi nouveau virgl svga
#15 17.65 softpipe llvmpipe i915 iris crocus zink
#15 17.65 Platforms : x11 wayland surfaceless drm xcb
#15 17.65 Frontends : mesa va rusticl
#15 17.65 HUD lm-sensors : NO
#15 17.65
#15 17.65 Perfetto
#15 17.65 Enabled : NO
#15 17.65
#15 17.65 Teflon (TensorFlow Lite delegate)
#15 17.65 Enabled : NO
#15 17.65
#15 17.65 Subprojects
#15 17.65 paste : YES 2 warnings
#15 17.65 proc-macro2 : YES 2 warnings (from syn => quote)
#15 17.65 quote : YES 2 warnings (from syn)
#15 17.65 rustc-hash : YES 2 warnings
#15 17.65 syn : YES 2 warnings
#15 17.65 unicode-ident : YES 2 warnings (from syn)
#15 17.65
#15 17.65 User defined options
#15 17.65 android-libbacktrace : disabled
#15 17.65 b_lto : false
#15 17.65 b_ndebug : true
#15 17.65 build-aco-tests : false
#15 17.65 build-radv-tests : false
#15 17.65 build-tests : false
#15 17.65 buildtype : plain
#15 17.65 egl : enabled
#15 17.65 enable-glcpp-tests : false
#15 17.65 force_fallback_for : syn,paste,rustc-hash
#15 17.65 gallium-drivers : r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink
#15 17.65 gallium-extra-hud : true
#15 17.65 gallium-mediafoundation-test: false
#15 17.65 gallium-rusticl : true
#15 17.65 gallium-va : enabled
#15 17.65 gbm : enabled
#15 17.65 gles1 : disabled
#15 17.65 gles2 : enabled
#15 17.65 glvnd : enabled
#15 17.65 glx : dri
#15 17.65 install-intel-gpu-tests : false
#15 17.65 libunwind : enabled
#15 17.65 llvm : enabled
#15 17.65 lmsensors : disabled
#15 17.65 microsoft-clc : disabled
#15 17.65 platforms : x11,wayland
#15 17.65 prefix : /usr
#15 17.65 split-debug : disabled
#15 17.65 sysconfdir : /etc
#15 17.65 tools :
#15 17.65 valgrind : disabled
#15 17.65 video-codecs : all
#15 17.65 vulkan-drivers : amd,intel,intel_hasvk,swrast,virtio,nouveau
#15 17.65 vulkan-layers : device-select,intel-nullhw,overlay
#15 17.65 wrap_mode : nofallback
#15 17.65 zstd : enabled
#15 17.65
#15 17.65 Found ninja-1.12.1 at /usr/sbin/ninja
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc --print target-libdir` -> 0
#15 17.65 stdout:
#15 17.65 /usr/lib/rustlib/x86_64-unknown-linux-gnu/lib
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp_w6xit4k
#15 17.65 Code:
#15 17.65
#15 17.65 #ifdef __has_include
#15 17.65 #if !__has_include("version")
#15 17.65 #error "Header 'version' could not be found"
#15 17.65 #endif
#15 17.65 #else
#15 17.65 #include <version>
#15 17.65 #endif
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp_w6xit4k/testfile.cpp -E -P -D_FILE_OFFSET_BITS=64 -P -O0 -fpermissive` -> 0
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmpy2fqazm8
#15 17.65 Code:
#15 17.65
#15 17.65 #include <version>
#15 17.65 int main(void) {
#15 17.65 /* If it's not defined as a macro, try to use as a symbol */
#15 17.65 #ifndef _LIBCPP_VERSION
#15 17.65 _LIBCPP_VERSION;
#15 17.65 #endif
#15 17.65 return 0;
#15 17.65 }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmpy2fqazm8/testfile.cpp -o /mesa/_build/meson-private/tmpy2fqazm8/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmpy2fqazm8/testfile.cpp: In function 'int main()':
#15 17.65 /mesa/_build/meson-private/tmpy2fqazm8/testfile.cpp:6:17: error: '_LIBCPP_VERSION' was not declared in this scope
#15 17.65 6 | _LIBCPP_VERSION;
#15 17.65 | ^~~~~~~~~~~~~~~
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp8qvcz9di
#15 17.65 Code:
#15 17.65
#15 17.65 #include <version>
#15 17.65 using _LIBCPP_VERSION;
#15 17.65 int main(void) { return 0; }
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp8qvcz9di/testfile.cpp -o /mesa/_build/meson-private/tmp8qvcz9di/output.obj -c -D_FILE_OFFSET_BITS=64 -O0 -fpermissive` -> 1
#15 17.65 stderr:
#15 17.65 /mesa/_build/meson-private/tmp8qvcz9di/testfile.cpp:3:15: error: expected nested-name-specifier before '_LIBCPP_VERSION'
#15 17.65 3 | using _LIBCPP_VERSION;
#15 17.65 | ^~~~~~~~~~~~~~~
#15 17.65 -----------
#15 17.65 Running compile:
#15 17.65 Working directory: /mesa/_build/meson-private/tmp5aqw4b3p
#15 17.65 Code:
#15 17.65 int main(void) { return 0; }
#15 17.65
#15 17.65 -----------
#15 17.65 Command line: `/usr/sbin/g++ /mesa/_build/meson-private/tmp5aqw4b3p/testfile.cpp -o /mesa/_build/meson-private/tmp5aqw4b3p/output.exe -D_FILE_OFFSET_BITS=64 -O0 -fpermissive -lstdc++ -Wl,--allow-shlib-undefined` -> 0
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc --print target-libdir` -> 0
#15 17.65 stdout:
#15 17.65 /usr/lib/rustlib/x86_64-unknown-linux-gnu/lib
#15 17.65 -----------
#15 17.65 -----------
#15 17.65 Called: `rustc -C linker=/usr/sbin/gcc --print sysroot` -> 0
#15 17.65 stdout:
#15 17.65 /usr
#15 17.65 -----------
#15 17.65 /bin/sh: line 1: exit: too many arguments
#15 ERROR: process "/bin/sh -c cd mesa/ && rm -rf /mesa/_build/meson-logs/meson-log.txt && mkdir _build && export CXX=$(which g++) && export CC=$(which gcc) && meson setup ./ _build -D build-tests=false -D enable-glcpp-tests=false -D build-radv-tests=false -D build-aco-tests=false -D install-intel-gpu-tests=false -D gallium-mediafoundation-test=false -D android-libbacktrace=disabled -D split-debug=disabled -D b_ndebug=true -D b_lto=false -D egl=enabled -D gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink -D gallium-extra-hud=true -D gallium-rusticl=true -D gallium-va=enabled -D gbm=enabled -D gles1=disabled -D gles2=enabled -D glvnd=enabled -D glx=dri -D libunwind=enabled -D llvm=enabled -D lmsensors=disabled -D microsoft-clc=disabled -D platforms=x11,wayland -D valgrind=disabled -D video-codecs=all -D vulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau -D vulkan-layers=device-select,intel-nullhw,overlay -D tools='' -D zstd=enabled -D buildtype=plain -D prefix=/usr -D sysconfdir=/etc --wrap-mode=nofallback --force-fallback-for=syn,paste,rustc-hash ; cat /mesa/_build/meson-logs/meson-log.txt && exit 1 RUN cd mesa/ && ninja -C _build" did not complete successfully: exit code: 1
------
> [12/12] RUN cd mesa/ && rm -rf /mesa/_build/meson-logs/meson-log.txt && mkdir _build && export CXX=$(which g++) && export CC=$(which gcc) && meson setup ./ _build -D build-tests=false -D enable-glcpp-tests=false -D build-radv-tests=false -D build-aco-tests=false -D install-intel-gpu-tests=false -D gallium-mediafoundation-test=false -D android-libbacktrace=disabled -D split-debug=disabled -D b_ndebug=true -D b_lto=false -D egl=enabled -D gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink -D gallium-extra-hud=true -D gallium-rusticl=true -D gallium-va=enabled -D gbm=enabled -D gles1=disabled -D gles2=enabled -D glvnd=enabled -D glx=dri -D libunwind=enabled -D llvm=enabled -D lmsensors=disabled -D microsoft-clc=disabled -D platforms=x11,wayland -D valgrind=disabled -D video-codecs=all -D vulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau -D vulkan-layers=device-select,intel-nullhw,overlay -D tools='' -D zstd=enabled -D buildtype=plain -D prefix=/usr -D sysconfdir=/etc --wrap-mode=nofallback --force-fallback-for=syn,paste,rustc-hash ; cat /mesa/_build/meson-logs/meson-log.txt && exit 1 RUN cd mesa/ && ninja -C _build:
17.65 Called: `rustc -C linker=/usr/sbin/gcc --print target-libdir` -> 0
17.65 stdout:
17.65 /usr/lib/rustlib/x86_64-unknown-linux-gnu/lib
17.65 -----------
17.65 -----------
17.65 Called: `rustc -C linker=/usr/sbin/gcc --print sysroot` -> 0
17.65 stdout:
17.65 /usr
17.65 -----------
17.65 /bin/sh: line 1: exit: too many arguments
------
1 warning found (use docker --debug to expand):
 - NoEmptyContinuation: Empty continuation line (line 285)
Dockerfile:240
--------------------
239 |
240 | >>> RUN \
241 | >>> cd mesa/ \
242 | >>> && rm -rf /mesa/_build/meson-logs/meson-log.txt \
243 | >>> && mkdir _build \
244 | >>> && export CXX=$(which g++) \
245 | >>> && export CC=$(which gcc) \
246 | >>> && meson setup ./ _build \
247 | >>> -D build-tests=false \
248 | >>> -D enable-glcpp-tests=false \
249 | >>> -D build-radv-tests=false \
250 | >>> -D build-aco-tests=false \
251 | >>> -D install-intel-gpu-tests=false \
252 | >>> -D gallium-mediafoundation-test=false \
253 | >>> -D android-libbacktrace=disabled \
254 | >>> -D split-debug=disabled \
255 | >>> -D b_ndebug=true \
256 | >>> -D b_lto=false \
257 | >>> -D egl=enabled \
258 | >>> -D gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink \
259 | >>> -D gallium-extra-hud=true \
260 | >>> -D gallium-rusticl=true \
261 | >>> -D gallium-va=enabled \
262 | >>> -D gbm=enabled \
263 | >>> -D gles1=disabled \
264 | >>> -D gles2=enabled \
265 | >>> -D glvnd=enabled \
266 | >>> -D glx=dri \
267 | >>> -D libunwind=enabled \
268 | >>> -D llvm=enabled \
269 | >>> -D lmsensors=disabled \
270 | >>> -D microsoft-clc=disabled \
271 | >>> -D platforms=x11,wayland \
272 | >>> -D valgrind=disabled \
273 | >>> -D video-codecs=all \
274 | >>> -D vulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau \
275 | >>> -D vulkan-layers=device-select,intel-nullhw,overlay \
276 | >>> -D tools='' \
277 | >>> -D zstd=enabled \
278 | >>> -D buildtype=plain \
279 | >>> -D prefix=/usr \
280 | >>> -D sysconfdir=/etc \
281 | >>> --wrap-mode=nofallback \
282 | >>> --force-fallback-for=syn,paste,rustc-hash ; cat /mesa/_build/meson-logs/meson-log.txt && exit 1 \
283 | >>>
284 | >>>
285 | >>> RUN cd mesa/ && ninja -C _build
286 |
--------------------
ERROR: failed to build: failed to solve: process "/bin/sh -c cd mesa/ && rm -rf /mesa/_build/meson-logs/meson-log.txt && mkdir _build && export CXX=$(which g++) && export CC=$(which gcc) && meson setup ./ _build -D build-tests=false -D enable-glcpp-tests=false -D build-radv-tests=false -D build-aco-tests=false -D install-intel-gpu-tests=false -D gallium-mediafoundation-test=false -D android-libbacktrace=disabled -D split-debug=disabled -D b_ndebug=true -D b_lto=false -D egl=enabled -D gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,softpipe,llvmpipe,i915,iris,crocus,zink -D gallium-extra-hud=true -D gallium-rusticl=true -D gallium-va=enabled -D gbm=enabled -D gles1=disabled -D gles2=enabled -D glvnd=enabled -D glx=dri -D libunwind=enabled -D llvm=enabled -D lmsensors=disabled -D microsoft-clc=disabled -D platforms=x11,wayland -D valgrind=disabled -D video-codecs=all -D vulkan-drivers=amd,intel,intel_hasvk,swrast,virtio,nouveau -D vulkan-layers=device-select,intel-nullhw,overlay -D tools='' -D zstd=enabled -D buildtype=plain -D prefix=/usr -D sysconfdir=/etc --wrap-mode=nofallback --force-fallback-for=syn,paste,rustc-hash ; cat /mesa/_build/meson-logs/meson-log.txt && exit 1 RUN cd mesa/ && ninja -C _build" did not complete successfully: exit code: 1