0s autopkgtest: DBG: testbed init 0s autopkgtest [07:31:28]: starting date and time: 2025-02-10 07:31:28+0000 0s autopkgtest [07:31:28]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [07:31:28]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ntu7tfso/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:rust-defaults,src:libgit2,src:rustc-1.84 --apt-upgrade rust-wayland-server --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-14.secgroup --name adt-plucky-s390x-rust-wayland-server-20250210-073128-juju-7f2275-prod-proposed-migration-environment-15-8ebb7958-16bf-4898-b911-4b3fbdd2944f --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 78s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.XqDUey 78s autopkgtest: DBG: sending command to testbed: print-execute-command 78s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.eluz38cu/runcmd 78s autopkgtest: DBG: sending command to testbed: capabilities 78s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system suggested-normal-user=ubuntu revert root-on-testbed 78s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 78s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqDUey'], kind short, sout raw, serr pipe, env [] 78s autopkgtest: DBG: testbed command exited with code 0 78s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.XqDUey/wrapper.sh 78s autopkgtest: DBG: got reply from testbed: ok 78s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqDUey/wrapper.sh'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest [07:32:47]: testbed dpkg architecture: s390x 79s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest [07:32:47]: testbed apt version: 2.9.28 79s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest: DBG: testbed has eatmydata 79s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest [07:32:47]: @@@@@@@@@@@@@@@@@@@@ test bed setup 79s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 79s autopkgtest: DBG: testbed command exited with code 0 79s autopkgtest [07:32:47]: testbed release detected to be: None 79s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: adding APT source: Types: deb deb-src 80s URIs: http://ftpmaster.internal/ubuntu/ 80s Suites: plucky-proposed 80s Components: main restricted universe multiverse 80s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 80s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 80s Package: * 80s Pin: release plucky-proposed 80s Pin-Priority: 500 80s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 80s autopkgtest: DBG: testbed command exited with code 0 80s autopkgtest [07:32:48]: updating testbed package index (apt update) 80s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 80s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 81s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 81s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 81s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 81s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [814 kB] 81s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [47.4 kB] 81s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [15.6 kB] 81s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [58.7 kB] 81s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [712 kB] 81s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [15.2 kB] 81s Fetched 1773 kB in 1s (1853 kB/s) 82s Reading package lists... 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 82s Package: * 82s Pin: release plucky-proposed 82s Pin-Priority: 100 82s 82s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 82s Pin: release plucky-proposed 82s Pin-Priority: 995 82s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.XqDUey/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 82s + lsb_release --codename --short 82s + RELEASE=plucky 82s + cat 82s + [ plucky != trusty ] 82s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 82s Reading package lists... 82s Building dependency tree... 82s Reading state information... 83s Calculating upgrade... 83s The following packages were automatically installed and are no longer required: 83s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 83s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 83s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 83s linux-tools-6.11.0-8-generic 83s Use 'sudo apt autoremove' to remove them. 83s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 83s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 83s + /usr/lib/apt/apt-helper analyze-pattern ?true 83s + uname -r 83s + sed s/\./\\./g 83s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 83s + apt list ?obsolete 83s + + cut -d/ -f1 83s tail -n+2 83s + grep -v ^linux-.*6\.12\.0-15-generic.* 83s + true 83s + obsolete_pkgs= 83s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 83s Reading package lists... 83s Building dependency tree... 83s Reading state information... 83s The following packages will be REMOVED: 83s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 83s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 83s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 83s linux-tools-6.11.0-8-generic* 83s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 83s After this operation, 167 MB disk space will be freed. 83s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 83s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 83s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 83s Removing libpython3.12t64:s390x (3.12.9-1) ... 83s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 83s Removing libnsl2:s390x (1.3.0-3build3) ... 83s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 83s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 84s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 84s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 84s Processing triggers for libc-bin (2.40-4ubuntu1) ... 84s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 84s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 84s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 85s + grep -q trusty /etc/lsb-release 85s + [ ! -d /usr/share/doc/unattended-upgrades ] 85s + [ ! -d /usr/share/doc/lxd ] 85s + [ ! -d /usr/share/doc/lxd-client ] 85s + [ ! -d /usr/share/doc/snapd ] 85s + type iptables 85s + cat 85s + chmod 755 /etc/rc.local 85s + . /etc/rc.local 85s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 85s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 85s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 85s + uname -m 85s + [ s390x = ppc64le ] 85s + [ -d /run/systemd/system ] 85s + systemd-detect-virt --quiet --vm 85s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 85s + cat 85s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 85s + echo COMPRESS=lz4 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest [07:32:53]: upgrading testbed (apt dist-upgrade and autopurge) 85s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 85s Reading package lists... 85s Building dependency tree... 85s Reading state information... 85s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 85s Starting 2 pkgProblemResolver with broken count: 0 85s Done 85s Entering ResolveByKeep 85s 85s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 86s Reading package lists... 86s Building dependency tree... 86s Reading state information... 86s Starting pkgProblemResolver with broken count: 0 86s Starting 2 pkgProblemResolver with broken count: 0 86s Done 86s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.XqDUey/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 86s autopkgtest: DBG: testbed command exited with code 1 86s autopkgtest [07:32:54]: rebooting testbed after setup commands that affected boot 86s autopkgtest: DBG: sending command to testbed: reboot 102s autopkgtest: DBG: got reply from testbed: ok 102s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 102s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqDUey'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.XqDUey/autopkgtest-reboot 102s autopkgtest: DBG: got reply from testbed: ok 102s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqDUey'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [07:33:11]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 103s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqDUey/testbed-packages"], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/testbed-packages /tmp/autopkgtest-work.ntu7tfso/out/testbed-packages 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqDUey'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.XqDUey/autopkgtest-reboot 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqDUey'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqDUey/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: Binaries: initialising 106s autopkgtest [07:33:14]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-wayland-server 106s autopkgtest: DBG: blame += rust-wayland-server 106s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 106s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-wayland-server'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-wayland-server-dev$'], kind short, sout pipe, serr raw, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-wayland-server-dev=0.31.1-2'], kind short, sout pipe, serr raw, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: install_deps: deps_new=[] 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.XqDUey/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-wayland-server=0.31.1-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x rust-wayland-server_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1'] 107s + cd / 107s + mktemp -d /tmp/autopkgtest.XqDUey/build.XXX 107s + builddir=/tmp/autopkgtest.XqDUey/build.VEI 107s + cd /tmp/autopkgtest.XqDUey/build.VEI 107s + apt-get source -d -q --only-source rust-wayland-server=0.31.1-2 107s + OUT=Reading package lists... 107s NOTICE: 'rust-wayland-server' packaging is maintained in the 'Git' version control system at: 107s https://salsa.debian.org/rust-team/debcargo-conf.git [src/wayland-server] 107s Please use: 107s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/wayland-server] 107s to retrieve the latest (possibly unreleased) updates to the package. 107s Need to get 58.1 kB of source archives. 107s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (dsc) [2705 B] 107s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (tar) [52.0 kB] 107s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (diff) [3364 B] 107s Fetched 58.1 kB in 0s (171 kB/s) 107s Download complete and in download only mode 107s + [ -n ] 107s + echo Reading package lists... 107s NOTICE: 'rust-wayland-server' packaging is maintained in the 'Git' version control system at: 107s https://salsa.debian.org/rust-team/debcargo-conf.git [src/wayland-server] 107s Please use: 107s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/wayland-server] 107s to retrieve the latest (possibly unreleased) updates to the package. 107s Need to get 58.1 kB of source archives. 107s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (dsc) [2705 B] 107s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (tar) [52.0 kB] 107s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (diff) [3364 B] 107s Fetched 58.1 kB in 0s (171 kB/s) 107s Download complete and in download only mode 107s + grep ^Get: 107s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (dsc) [2705 B] 107s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (tar) [52.0 kB] 107s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wayland-server 0.31.1-2 (diff) [3364 B] 107s + dpkg-source -x rust-wayland-server_0.31.1-2.dsc src 107s gpgv: Signature made Tue Jun 11 19:34:00 2024 UTC 107s gpgv: using RSA key 91BFBF4D6956BD5DF7B72D23DFE691AE331BA3DB 107s gpgv: Can't check signature: No public key 107s dpkg-source: warning: cannot verify inline signature for ./rust-wayland-server_0.31.1-2.dsc: no acceptable signature found 107s + chmod -R a+rX . 107s + cd src/. 107s + pwd 107s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [07:33:15]: testing package rust-wayland-server version 0.31.1-2 107s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/build.VEI/src/debian/ /tmp/autopkgtest-work.ntu7tfso/out/pkg/debian/ 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 107s autopkgtest: DBG: processing dependency @ 107s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 107s autopkgtest: DBG: Test defined: name rust-wayland-server:@ path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-wayland-server:@'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:default'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev:log path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features --features log" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:log'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev: path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest [07:33:16]: build not needed 108s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/build.VEI/src/ /tmp/autopkgtest-work.ntu7tfso/out/tests-tree/ 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name rust-wayland-server:@ path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-wayland-server:@'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:default'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev:log path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features --features log" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:log'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency librust-wayland-server-dev 108s autopkgtest: DBG: Test defined: name librust-wayland-server-dev: path None command "/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wayland-server-dev:'] depends ['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest [07:33:16]: test rust-wayland-server:@: preparing testbed 108s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 108s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 108s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-wayland-server-dev 108s autopkgtest: DBG: can use apt-get on testbed: True 108s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-wayland-server-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 109s Starting pkgProblemResolver with broken count: 0 109s Starting 2 pkgProblemResolver with broken count: 0 109s Done 109s The following NEW packages will be installed: 109s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 109s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 109s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 109s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 109s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl libffi-dev 109s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 109s libitm1 libmpc3 libpkgconf3 librust-addr2line-dev librust-adler-dev 109s librust-ahash-dev librust-allocator-api2-dev librust-arbitrary-dev 109s librust-async-attributes-dev librust-async-channel-dev 109s librust-async-executor-dev librust-async-global-executor-dev 109s librust-async-io-dev librust-async-lock-dev librust-async-process-dev 109s librust-async-signal-dev librust-async-std-dev librust-async-task-dev 109s librust-atomic-waker-dev librust-autocfg-dev librust-backtrace-dev 109s librust-bitflags-dev librust-blobby-dev librust-block-buffer-dev 109s librust-blocking-dev librust-bytemuck-derive-dev librust-bytemuck-dev 109s librust-byteorder-dev librust-bytes-dev librust-cc-dev librust-cfg-if-dev 109s librust-compiler-builtins+core-dev 109s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 109s librust-concurrent-queue-dev librust-const-oid-dev librust-const-random-dev 109s librust-const-random-macro-dev librust-cpp-demangle-dev 109s librust-crc32fast-dev librust-critical-section-dev 109s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 109s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 109s librust-crypto-common-dev librust-derive-arbitrary-dev librust-digest-dev 109s librust-dlib-dev librust-downcast-rs-dev librust-either-dev 109s librust-encoding-rs-dev librust-equivalent-dev librust-erased-serde-dev 109s librust-errno-dev librust-event-listener-dev 109s librust-event-listener-strategy-dev librust-fallible-iterator-dev 109s librust-fastrand-dev librust-flate2-dev librust-futures-core-dev 109s librust-futures-io-dev librust-futures-lite-dev librust-generic-array-dev 109s librust-getrandom-dev librust-gimli-dev librust-hashbrown-dev 109s librust-indexmap-dev librust-io-lifetimes-dev librust-itoa-dev 109s librust-jobserver-dev librust-kv-log-macro-dev librust-libc-dev 109s librust-libloading-dev librust-libz-sys-dev librust-linux-raw-sys-dev 109s librust-lock-api-dev librust-log-dev librust-memchr-dev librust-memmap2-dev 109s librust-memoffset-dev librust-miniz-oxide-dev librust-mio-dev 109s librust-no-panic-dev librust-object-dev librust-once-cell-dev 109s librust-os-pipe-dev librust-owning-ref-dev librust-parking-dev 109s librust-parking-lot-core-dev librust-parking-lot-dev 109s librust-pin-project-lite-dev librust-pin-utils-dev librust-pkg-config-dev 109s librust-polling-dev librust-portable-atomic-dev librust-ppv-lite86-dev 109s librust-proc-macro2-dev librust-quick-xml-dev librust-quote-dev 109s librust-rand-chacha-dev librust-rand-core+getrandom-dev 109s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 109s librust-rand-dev librust-raw-window-handle-dev librust-rayon-core-dev 109s librust-rayon-dev librust-rustc-demangle-dev 109s librust-rustc-std-workspace-core-dev librust-rustix-dev librust-ruzstd-dev 109s librust-ryu-dev librust-scoped-tls-dev librust-scopeguard-dev 109s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 109s librust-serde-json-dev librust-serde-test-dev librust-shlex-dev 109s librust-signal-hook-registry-dev librust-slab-dev librust-smallvec-dev 109s librust-socket2-dev librust-stable-deref-trait-dev 109s librust-static-assertions-dev librust-subtle-dev librust-sval-buffer-dev 109s librust-sval-derive-dev librust-sval-dev librust-sval-dynamic-dev 109s librust-sval-fmt-dev librust-sval-ref-dev librust-sval-serde-dev 109s librust-syn-1-dev librust-syn-dev librust-tiny-keccak-dev librust-tokio-dev 109s librust-tokio-macros-dev librust-tracing-attributes-dev 109s librust-tracing-core-dev librust-tracing-dev librust-twox-hash-dev 109s librust-typed-arena-dev librust-typenum-dev librust-unicode-ident-dev 109s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 109s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 109s librust-version-check-dev librust-wayland-backend-dev 109s librust-wayland-scanner-dev librust-wayland-server-dev 109s librust-wayland-sys-dev librust-zerocopy-derive-dev librust-zerocopy-dev 109s librust-zeroize-derive-dev librust-zeroize-dev libstd-rust-1.84 109s libstd-rust-1.84-dev libtool libubsan1 libwayland-bin libwayland-client0 109s libwayland-cursor0 libwayland-dev libwayland-egl1 libwayland-server0 m4 109s pkgconf pkgconf-bin po-debconf rustc rustc-1.84 zlib1g-dev 109s 0 upgraded, 213 newly installed, 0 to remove and 0 not upgraded. 109s Need to get 141 MB of archives. 109s After this operation, 567 MB of additional disk space will be used. 109s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 109s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 109s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 109s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 109s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 110s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 111s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 112s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 112s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 112s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 113s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 113s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 113s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 113s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 113s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 113s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 113s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 113s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 113s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 113s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 113s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 113s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 113s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 113s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 114s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 114s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 114s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 114s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 114s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 114s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 114s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 114s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 114s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 114s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 114s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 114s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 114s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 114s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 114s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 114s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 114s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 114s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 114s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 114s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 114s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 114s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 114s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 114s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 114s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 114s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 114s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 114s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 114s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 114s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 114s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 114s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 114s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 114s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 114s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 114s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 114s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 114s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 114s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 114s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 114s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 114s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 114s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 114s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 114s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 114s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 114s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 114s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 114s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 114s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 114s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 114s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 114s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 114s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 114s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 114s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 114s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 114s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 114s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 114s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 114s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 114s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 114s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 114s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 114s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 114s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 114s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 115s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 115s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 115s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 115s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 115s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 115s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 115s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 115s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 115s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 115s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 115s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 115s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 115s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 115s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 115s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 115s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 115s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 115s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 115s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 115s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 115s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 115s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 115s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 115s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 115s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 115s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 115s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 115s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 115s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 115s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 115s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 115s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 115s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 115s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 115s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 115s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 115s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 115s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 115s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 115s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 115s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 115s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 115s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 115s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 115s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 115s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 115s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 115s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-attributes-dev all 1.1.2-7 [7024 B] 115s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-concurrent-queue-dev s390x 2.5.0-4 [23.9 kB] 115s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-dev s390x 2.2.0-1 [11.6 kB] 115s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 115s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-dev all 5.4.0-3 [31.3 kB] 115s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-strategy-dev s390x 0.5.3-1 [13.1 kB] 115s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 115s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-channel-dev all 2.3.1-9 [13.3 kB] 115s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-task-dev all 4.7.1-4 [29.5 kB] 115s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fastrand-dev s390x 2.1.1-1 [17.8 kB] 115s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 115s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-lite-dev s390x 2.3.0-2 [38.6 kB] 116s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 116s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 116s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-executor-dev all 1.13.1-2 [18.8 kB] 116s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-lock-dev all 3.4.0-5 [29.4 kB] 116s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 116s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 116s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.8.0-1 [43.5 kB] 116s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 116s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 116s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 116s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 116s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 116s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 116s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 116s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 116s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 116s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 116s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-polling-dev s390x 3.4.0-1 [47.8 kB] 116s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-io-dev s390x 2.3.3-4 [41.0 kB] 116s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-waker-dev s390x 1.1.2-1 [14.3 kB] 116s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blocking-dev all 1.6.1-6 [17.7 kB] 116s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 116s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 116s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 116s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 116s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 116s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 116s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 116s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 116s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 116s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 116s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 116s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-global-executor-dev s390x 2.4.1-5 [14.6 kB] 116s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-signal-dev s390x 0.2.10-1 [16.0 kB] 116s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-process-dev all 2.3.0-2 [21.3 kB] 116s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kv-log-macro-dev all 1.0.8-5 [7572 B] 116s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 116s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-std-dev all 1.13.0-4 [171 kB] 116s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 116s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 116s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 116s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libloading-dev s390x 0.8.5-1 [29.2 kB] 116s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dlib-dev s390x 0.5.2-2 [7974 B] 116s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-downcast-rs-dev s390x 1.2.0-1 [13.2 kB] 116s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 116s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-os-pipe-dev s390x 1.2.1-1 [12.7 kB] 116s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-io-lifetimes-dev s390x 2.0.3-1 [24.2 kB] 116s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memoffset-dev s390x 0.8.0-1 [10.9 kB] 116s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 116s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-raw-window-handle-dev s390x 0.5.2-1 [18.5 kB] 116s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scoped-tls-dev s390x 1.0.1-1 [10.0 kB] 116s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 116s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 116s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 117s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 117s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-bin s390x 1.23.1-1 [21.3 kB] 117s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.6-1build1 [58.8 kB] 117s Get:209 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-dev s390x 1.23.1-1 [74.4 kB] 117s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-sys-dev s390x 0.31.6-1 [11.4 kB] 117s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-backend-dev s390x 0.3.8-1 [60.5 kB] 117s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-scanner-dev s390x 0.31.6-1 [29.7 kB] 117s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-server-dev s390x 0.31.1-2 [49.1 kB] 117s Fetched 141 MB in 8s (17.9 MB/s) 117s Selecting previously unselected package m4. 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 117s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 117s Unpacking m4 (1.4.19-5) ... 117s Selecting previously unselected package autoconf. 117s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 117s Unpacking autoconf (2.72-3) ... 117s Selecting previously unselected package autotools-dev. 117s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 117s Unpacking autotools-dev (20220109.1) ... 117s Selecting previously unselected package automake. 117s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 117s Unpacking automake (1:1.17-3) ... 117s Selecting previously unselected package autopoint. 117s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 117s Unpacking autopoint (0.23.1-1) ... 117s Selecting previously unselected package libgit2-1.9:s390x. 117s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 117s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 117s Selecting previously unselected package libstd-rust-1.84:s390x. 117s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 117s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 118s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 118s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 118s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 119s Selecting previously unselected package libisl23:s390x. 119s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 119s Unpacking libisl23:s390x (0.27-1) ... 119s Selecting previously unselected package libmpc3:s390x. 119s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 119s Unpacking libmpc3:s390x (1.3.1-1build2) ... 119s Selecting previously unselected package cpp-14-s390x-linux-gnu. 119s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package cpp-14. 119s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package cpp-s390x-linux-gnu. 119s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 119s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 119s Selecting previously unselected package cpp. 119s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 119s Unpacking cpp (4:14.1.0-2ubuntu1) ... 119s Selecting previously unselected package libcc1-0:s390x. 119s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package libgomp1:s390x. 119s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package libitm1:s390x. 119s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package libasan8:s390x. 119s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package libubsan1:s390x. 119s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package libgcc-14-dev:s390x. 119s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package gcc-14-s390x-linux-gnu. 119s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package gcc-14. 119s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 119s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 119s Selecting previously unselected package gcc-s390x-linux-gnu. 119s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 119s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 119s Selecting previously unselected package gcc. 119s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 119s Unpacking gcc (4:14.1.0-2ubuntu1) ... 119s Selecting previously unselected package rustc-1.84. 119s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 119s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 119s Selecting previously unselected package cargo-1.84. 119s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 119s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 120s Selecting previously unselected package libdebhelper-perl. 120s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 120s Unpacking libdebhelper-perl (13.23ubuntu1) ... 120s Selecting previously unselected package libtool. 120s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 120s Unpacking libtool (2.5.4-3build1) ... 120s Selecting previously unselected package dh-autoreconf. 120s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 120s Unpacking dh-autoreconf (20) ... 120s Selecting previously unselected package libarchive-zip-perl. 120s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 120s Unpacking libarchive-zip-perl (1.68-1) ... 120s Selecting previously unselected package libfile-stripnondeterminism-perl. 120s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 120s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 120s Selecting previously unselected package dh-strip-nondeterminism. 120s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 120s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 120s Selecting previously unselected package debugedit. 120s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 120s Unpacking debugedit (1:5.1-2) ... 120s Selecting previously unselected package dwz. 120s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 120s Unpacking dwz (0.15-1build6) ... 120s Selecting previously unselected package gettext. 120s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 120s Unpacking gettext (0.23.1-1) ... 120s Selecting previously unselected package intltool-debian. 120s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 120s Unpacking intltool-debian (0.35.0+20060710.6) ... 120s Selecting previously unselected package po-debconf. 120s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 120s Unpacking po-debconf (1.0.21+nmu1) ... 120s Selecting previously unselected package debhelper. 120s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 120s Unpacking debhelper (13.23ubuntu1) ... 120s Selecting previously unselected package rustc. 120s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 120s Unpacking rustc (1.84.0ubuntu1) ... 120s Selecting previously unselected package cargo. 120s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 120s Unpacking cargo (1.84.0ubuntu1) ... 120s Selecting previously unselected package dh-cargo-tools. 120s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 120s Unpacking dh-cargo-tools (31ubuntu4) ... 120s Selecting previously unselected package dh-cargo. 120s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 120s Unpacking dh-cargo (31ubuntu4) ... 120s Selecting previously unselected package libpkgconf3:s390x. 120s Preparing to unpack .../042-libpkgconf3_1.8.1-4_s390x.deb ... 120s Unpacking libpkgconf3:s390x (1.8.1-4) ... 120s Selecting previously unselected package librust-cfg-if-dev:s390x. 120s Preparing to unpack .../043-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 120s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 120s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 120s Preparing to unpack .../044-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 120s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 120s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 120s Preparing to unpack .../045-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 120s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 120s Selecting previously unselected package librust-unicode-ident-dev:s390x. 120s Preparing to unpack .../046-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 120s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 120s Selecting previously unselected package librust-proc-macro2-dev:s390x. 120s Preparing to unpack .../047-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 120s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 120s Selecting previously unselected package librust-quote-dev:s390x. 120s Preparing to unpack .../048-librust-quote-dev_1.0.37-1_s390x.deb ... 120s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 120s Selecting previously unselected package librust-syn-dev:s390x. 120s Preparing to unpack .../049-librust-syn-dev_2.0.96-2_s390x.deb ... 120s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 120s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 120s Preparing to unpack .../050-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 120s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 120s Selecting previously unselected package librust-arbitrary-dev:s390x. 120s Preparing to unpack .../051-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 120s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 120s Selecting previously unselected package librust-equivalent-dev:s390x. 120s Preparing to unpack .../052-librust-equivalent-dev_1.0.1-1_s390x.deb ... 120s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 120s Selecting previously unselected package librust-critical-section-dev:s390x. 120s Preparing to unpack .../053-librust-critical-section-dev_1.2.0-1_s390x.deb ... 120s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 120s Selecting previously unselected package librust-serde-derive-dev:s390x. 120s Preparing to unpack .../054-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 120s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 120s Selecting previously unselected package librust-serde-dev:s390x. 120s Preparing to unpack .../055-librust-serde-dev_1.0.217-1_s390x.deb ... 120s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 120s Selecting previously unselected package librust-portable-atomic-dev:s390x. 120s Preparing to unpack .../056-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 120s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 120s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 120s Preparing to unpack .../057-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 120s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 120s Selecting previously unselected package librust-libc-dev:s390x. 120s Preparing to unpack .../058-librust-libc-dev_0.2.169-1_s390x.deb ... 120s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 120s Selecting previously unselected package librust-getrandom-dev:s390x. 120s Preparing to unpack .../059-librust-getrandom-dev_0.2.15-1_s390x.deb ... 120s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 120s Selecting previously unselected package librust-smallvec-dev:s390x. 120s Preparing to unpack .../060-librust-smallvec-dev_1.13.2-1_s390x.deb ... 120s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 120s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 120s Preparing to unpack .../061-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 120s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 120s Selecting previously unselected package librust-once-cell-dev:s390x. 120s Preparing to unpack .../062-librust-once-cell-dev_1.20.2-1_s390x.deb ... 120s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 120s Selecting previously unselected package librust-crunchy-dev:s390x. 120s Preparing to unpack .../063-librust-crunchy-dev_0.2.2-1_s390x.deb ... 120s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 120s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 120s Preparing to unpack .../064-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 120s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 120s Selecting previously unselected package librust-const-random-macro-dev:s390x. 120s Preparing to unpack .../065-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 120s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 120s Selecting previously unselected package librust-const-random-dev:s390x. 120s Preparing to unpack .../066-librust-const-random-dev_0.1.17-2_s390x.deb ... 120s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 120s Selecting previously unselected package librust-version-check-dev:s390x. 120s Preparing to unpack .../067-librust-version-check-dev_0.9.5-1_s390x.deb ... 120s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 120s Selecting previously unselected package librust-byteorder-dev:s390x. 120s Preparing to unpack .../068-librust-byteorder-dev_1.5.0-1_s390x.deb ... 120s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 120s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 120s Preparing to unpack .../069-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 120s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 120s Selecting previously unselected package librust-zerocopy-dev:s390x. 120s Preparing to unpack .../070-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 120s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 120s Selecting previously unselected package librust-ahash-dev. 120s Preparing to unpack .../071-librust-ahash-dev_0.8.11-9_all.deb ... 120s Unpacking librust-ahash-dev (0.8.11-9) ... 120s Selecting previously unselected package librust-allocator-api2-dev:s390x. 120s Preparing to unpack .../072-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 120s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 120s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 120s Preparing to unpack .../073-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 120s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 120s Selecting previously unselected package librust-either-dev:s390x. 120s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 120s Unpacking librust-either-dev:s390x (1.13.0-1) ... 120s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 120s Preparing to unpack .../075-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 120s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 120s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 120s Preparing to unpack .../076-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 120s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 120s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 120s Preparing to unpack .../077-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 120s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 120s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 120s Preparing to unpack .../078-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 120s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 120s Selecting previously unselected package librust-rayon-core-dev:s390x. 120s Preparing to unpack .../079-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 120s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 120s Selecting previously unselected package librust-rayon-dev:s390x. 120s Preparing to unpack .../080-librust-rayon-dev_1.10.0-1_s390x.deb ... 120s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 120s Selecting previously unselected package librust-hashbrown-dev:s390x. 120s Preparing to unpack .../081-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 120s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 120s Selecting previously unselected package librust-indexmap-dev:s390x. 120s Preparing to unpack .../082-librust-indexmap-dev_2.7.0-1_s390x.deb ... 120s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 120s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 120s Preparing to unpack .../083-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 120s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 120s Selecting previously unselected package librust-gimli-dev:s390x. 120s Preparing to unpack .../084-librust-gimli-dev_0.31.1-2_s390x.deb ... 120s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 120s Selecting previously unselected package librust-memmap2-dev:s390x. 120s Preparing to unpack .../085-librust-memmap2-dev_0.9.5-1_s390x.deb ... 120s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 120s Selecting previously unselected package librust-crc32fast-dev:s390x. 120s Preparing to unpack .../086-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 120s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 120s Selecting previously unselected package pkgconf-bin. 120s Preparing to unpack .../087-pkgconf-bin_1.8.1-4_s390x.deb ... 120s Unpacking pkgconf-bin (1.8.1-4) ... 120s Selecting previously unselected package pkgconf:s390x. 120s Preparing to unpack .../088-pkgconf_1.8.1-4_s390x.deb ... 120s Unpacking pkgconf:s390x (1.8.1-4) ... 120s Selecting previously unselected package librust-pkg-config-dev:s390x. 120s Preparing to unpack .../089-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 120s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 120s Selecting previously unselected package zlib1g-dev:s390x. 120s Preparing to unpack .../090-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 120s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 121s Selecting previously unselected package librust-libz-sys-dev:s390x. 121s Preparing to unpack .../091-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 121s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 121s Selecting previously unselected package librust-adler-dev:s390x. 121s Preparing to unpack .../092-librust-adler-dev_1.0.2-2_s390x.deb ... 121s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 121s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 121s Preparing to unpack .../093-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 121s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 121s Selecting previously unselected package librust-flate2-dev:s390x. 121s Preparing to unpack .../094-librust-flate2-dev_1.0.34-1_s390x.deb ... 121s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 121s Selecting previously unselected package librust-sval-derive-dev:s390x. 121s Preparing to unpack .../095-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 121s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 121s Selecting previously unselected package librust-sval-dev:s390x. 121s Preparing to unpack .../096-librust-sval-dev_2.6.1-2_s390x.deb ... 121s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 121s Selecting previously unselected package librust-sval-ref-dev:s390x. 121s Preparing to unpack .../097-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-erased-serde-dev:s390x. 121s Preparing to unpack .../098-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 121s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 121s Selecting previously unselected package librust-serde-fmt-dev. 121s Preparing to unpack .../099-librust-serde-fmt-dev_1.0.3-4_all.deb ... 121s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 121s Selecting previously unselected package librust-no-panic-dev:s390x. 121s Preparing to unpack .../100-librust-no-panic-dev_0.1.32-1_s390x.deb ... 121s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 121s Selecting previously unselected package librust-itoa-dev:s390x. 121s Preparing to unpack .../101-librust-itoa-dev_1.0.14-1_s390x.deb ... 121s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 121s Selecting previously unselected package librust-ryu-dev:s390x. 121s Preparing to unpack .../102-librust-ryu-dev_1.0.19-1_s390x.deb ... 121s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 121s Selecting previously unselected package librust-serde-json-dev:s390x. 121s Preparing to unpack .../103-librust-serde-json-dev_1.0.133-1_s390x.deb ... 121s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 121s Selecting previously unselected package librust-serde-test-dev:s390x. 121s Preparing to unpack .../104-librust-serde-test-dev_1.0.171-1_s390x.deb ... 121s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 121s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 121s Preparing to unpack .../105-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 121s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 121s Selecting previously unselected package librust-sval-buffer-dev:s390x. 121s Preparing to unpack .../106-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 121s Preparing to unpack .../107-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-sval-fmt-dev:s390x. 121s Preparing to unpack .../108-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-sval-serde-dev:s390x. 121s Preparing to unpack .../109-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 121s Preparing to unpack .../110-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 121s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 121s Selecting previously unselected package librust-value-bag-dev:s390x. 121s Preparing to unpack .../111-librust-value-bag-dev_1.9.0-1_s390x.deb ... 121s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 121s Selecting previously unselected package librust-log-dev:s390x. 121s Preparing to unpack .../112-librust-log-dev_0.4.22-1_s390x.deb ... 121s Unpacking librust-log-dev:s390x (0.4.22-1) ... 121s Selecting previously unselected package librust-memchr-dev:s390x. 121s Preparing to unpack .../113-librust-memchr-dev_2.7.4-1_s390x.deb ... 121s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 121s Selecting previously unselected package librust-blobby-dev:s390x. 121s Preparing to unpack .../114-librust-blobby-dev_0.3.1-1_s390x.deb ... 121s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 121s Selecting previously unselected package librust-typenum-dev:s390x. 121s Preparing to unpack .../115-librust-typenum-dev_1.17.0-2_s390x.deb ... 121s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 121s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 121s Preparing to unpack .../116-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 121s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 121s Selecting previously unselected package librust-zeroize-dev:s390x. 121s Preparing to unpack .../117-librust-zeroize-dev_1.8.1-1_s390x.deb ... 121s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 121s Selecting previously unselected package librust-generic-array-dev:s390x. 121s Preparing to unpack .../118-librust-generic-array-dev_0.14.7-1_s390x.deb ... 121s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 121s Selecting previously unselected package librust-block-buffer-dev:s390x. 121s Preparing to unpack .../119-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 121s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 121s Selecting previously unselected package librust-const-oid-dev:s390x. 121s Preparing to unpack .../120-librust-const-oid-dev_0.9.6-1_s390x.deb ... 121s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 121s Selecting previously unselected package librust-rand-core-dev:s390x. 121s Preparing to unpack .../121-librust-rand-core-dev_0.6.4-2_s390x.deb ... 121s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 121s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 121s Preparing to unpack .../122-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 121s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 121s Selecting previously unselected package librust-crypto-common-dev:s390x. 121s Preparing to unpack .../123-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 121s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 121s Selecting previously unselected package librust-subtle-dev:s390x. 121s Preparing to unpack .../124-librust-subtle-dev_2.6.1-1_s390x.deb ... 121s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 121s Selecting previously unselected package librust-digest-dev:s390x. 121s Preparing to unpack .../125-librust-digest-dev_0.10.7-2_s390x.deb ... 121s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 121s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 121s Preparing to unpack .../126-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 121s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 121s Selecting previously unselected package librust-rand-chacha-dev:s390x. 121s Preparing to unpack .../127-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 121s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 121s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 121s Preparing to unpack .../128-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 121s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 121s Selecting previously unselected package librust-rand-core+std-dev:s390x. 121s Preparing to unpack .../129-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 121s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 121s Selecting previously unselected package librust-rand-dev:s390x. 121s Preparing to unpack .../130-librust-rand-dev_0.8.5-1_s390x.deb ... 121s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 121s Selecting previously unselected package librust-static-assertions-dev:s390x. 121s Preparing to unpack .../131-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 121s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 121s Selecting previously unselected package librust-twox-hash-dev:s390x. 121s Preparing to unpack .../132-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 121s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 121s Selecting previously unselected package librust-ruzstd-dev:s390x. 121s Preparing to unpack .../133-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 121s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 121s Selecting previously unselected package librust-object-dev:s390x. 121s Preparing to unpack .../134-librust-object-dev_0.36.5-2_s390x.deb ... 121s Unpacking librust-object-dev:s390x (0.36.5-2) ... 121s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 121s Preparing to unpack .../135-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 121s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 121s Selecting previously unselected package librust-typed-arena-dev:s390x. 121s Preparing to unpack .../136-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 121s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 121s Selecting previously unselected package librust-addr2line-dev:s390x. 121s Preparing to unpack .../137-librust-addr2line-dev_0.24.2-2_s390x.deb ... 121s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 121s Selecting previously unselected package librust-syn-1-dev:s390x. 121s Preparing to unpack .../138-librust-syn-1-dev_1.0.109-3_s390x.deb ... 121s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 121s Selecting previously unselected package librust-async-attributes-dev. 121s Preparing to unpack .../139-librust-async-attributes-dev_1.1.2-7_all.deb ... 121s Unpacking librust-async-attributes-dev (1.1.2-7) ... 121s Selecting previously unselected package librust-concurrent-queue-dev:s390x. 121s Preparing to unpack .../140-librust-concurrent-queue-dev_2.5.0-4_s390x.deb ... 121s Unpacking librust-concurrent-queue-dev:s390x (2.5.0-4) ... 121s Selecting previously unselected package librust-parking-dev:s390x. 121s Preparing to unpack .../141-librust-parking-dev_2.2.0-1_s390x.deb ... 121s Unpacking librust-parking-dev:s390x (2.2.0-1) ... 121s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 121s Preparing to unpack .../142-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 121s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 121s Selecting previously unselected package librust-event-listener-dev. 121s Preparing to unpack .../143-librust-event-listener-dev_5.4.0-3_all.deb ... 121s Unpacking librust-event-listener-dev (5.4.0-3) ... 121s Selecting previously unselected package librust-event-listener-strategy-dev:s390x. 121s Preparing to unpack .../144-librust-event-listener-strategy-dev_0.5.3-1_s390x.deb ... 121s Unpacking librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 121s Selecting previously unselected package librust-futures-core-dev:s390x. 121s Preparing to unpack .../145-librust-futures-core-dev_0.3.31-1_s390x.deb ... 121s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 121s Selecting previously unselected package librust-async-channel-dev. 121s Preparing to unpack .../146-librust-async-channel-dev_2.3.1-9_all.deb ... 121s Unpacking librust-async-channel-dev (2.3.1-9) ... 121s Selecting previously unselected package librust-async-task-dev. 121s Preparing to unpack .../147-librust-async-task-dev_4.7.1-4_all.deb ... 121s Unpacking librust-async-task-dev (4.7.1-4) ... 121s Selecting previously unselected package librust-fastrand-dev:s390x. 121s Preparing to unpack .../148-librust-fastrand-dev_2.1.1-1_s390x.deb ... 121s Unpacking librust-fastrand-dev:s390x (2.1.1-1) ... 121s Selecting previously unselected package librust-futures-io-dev:s390x. 121s Preparing to unpack .../149-librust-futures-io-dev_0.3.31-1_s390x.deb ... 121s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 121s Selecting previously unselected package librust-futures-lite-dev:s390x. 121s Preparing to unpack .../150-librust-futures-lite-dev_2.3.0-2_s390x.deb ... 121s Unpacking librust-futures-lite-dev:s390x (2.3.0-2) ... 121s Selecting previously unselected package librust-autocfg-dev:s390x. 121s Preparing to unpack .../151-librust-autocfg-dev_1.1.0-1_s390x.deb ... 121s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 121s Selecting previously unselected package librust-slab-dev:s390x. 121s Preparing to unpack .../152-librust-slab-dev_0.4.9-1_s390x.deb ... 121s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 121s Selecting previously unselected package librust-async-executor-dev. 121s Preparing to unpack .../153-librust-async-executor-dev_1.13.1-2_all.deb ... 121s Unpacking librust-async-executor-dev (1.13.1-2) ... 121s Selecting previously unselected package librust-async-lock-dev. 121s Preparing to unpack .../154-librust-async-lock-dev_3.4.0-5_all.deb ... 121s Unpacking librust-async-lock-dev (3.4.0-5) ... 121s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 121s Preparing to unpack .../155-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 121s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 121s Selecting previously unselected package librust-bytemuck-dev:s390x. 121s Preparing to unpack .../156-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 121s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 121s Selecting previously unselected package librust-bitflags-dev:s390x. 121s Preparing to unpack .../157-librust-bitflags-dev_2.8.0-1_s390x.deb ... 121s Unpacking librust-bitflags-dev:s390x (2.8.0-1) ... 121s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 121s Preparing to unpack .../158-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 121s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 121s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 121s Preparing to unpack .../159-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 121s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 121s Selecting previously unselected package librust-errno-dev:s390x. 121s Preparing to unpack .../160-librust-errno-dev_0.3.8-1_s390x.deb ... 121s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 121s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 121s Preparing to unpack .../161-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 121s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 121s Selecting previously unselected package librust-rustix-dev:s390x. 121s Preparing to unpack .../162-librust-rustix-dev_0.38.37-1_s390x.deb ... 121s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 121s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 121s Preparing to unpack .../163-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 121s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 121s Selecting previously unselected package librust-valuable-derive-dev:s390x. 121s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 121s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 122s Selecting previously unselected package librust-valuable-dev:s390x. 122s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 122s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 122s Selecting previously unselected package librust-tracing-core-dev:s390x. 122s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 122s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 122s Selecting previously unselected package librust-tracing-dev:s390x. 122s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 122s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 122s Selecting previously unselected package librust-polling-dev:s390x. 122s Preparing to unpack .../168-librust-polling-dev_3.4.0-1_s390x.deb ... 122s Unpacking librust-polling-dev:s390x (3.4.0-1) ... 122s Selecting previously unselected package librust-async-io-dev:s390x. 122s Preparing to unpack .../169-librust-async-io-dev_2.3.3-4_s390x.deb ... 122s Unpacking librust-async-io-dev:s390x (2.3.3-4) ... 122s Selecting previously unselected package librust-atomic-waker-dev:s390x. 122s Preparing to unpack .../170-librust-atomic-waker-dev_1.1.2-1_s390x.deb ... 122s Unpacking librust-atomic-waker-dev:s390x (1.1.2-1) ... 122s Selecting previously unselected package librust-blocking-dev. 122s Preparing to unpack .../171-librust-blocking-dev_1.6.1-6_all.deb ... 122s Unpacking librust-blocking-dev (1.6.1-6) ... 122s Selecting previously unselected package librust-backtrace-dev:s390x. 122s Preparing to unpack .../172-librust-backtrace-dev_0.3.74-3_s390x.deb ... 122s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 122s Selecting previously unselected package librust-bytes-dev:s390x. 122s Preparing to unpack .../173-librust-bytes-dev_1.9.0-1_s390x.deb ... 122s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 122s Selecting previously unselected package librust-mio-dev:s390x. 122s Preparing to unpack .../174-librust-mio-dev_1.0.2-3_s390x.deb ... 122s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 122s Selecting previously unselected package librust-owning-ref-dev:s390x. 122s Preparing to unpack .../175-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 122s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 122s Selecting previously unselected package librust-scopeguard-dev:s390x. 122s Preparing to unpack .../176-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 122s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 122s Selecting previously unselected package librust-lock-api-dev:s390x. 122s Preparing to unpack .../177-librust-lock-api-dev_0.4.12-1_s390x.deb ... 122s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 122s Selecting previously unselected package librust-parking-lot-dev:s390x. 122s Preparing to unpack .../178-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 122s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 122s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 122s Preparing to unpack .../179-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 122s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 122s Selecting previously unselected package librust-socket2-dev:s390x. 122s Preparing to unpack .../180-librust-socket2-dev_0.5.8-1_s390x.deb ... 122s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 122s Selecting previously unselected package librust-tokio-macros-dev:s390x. 122s Preparing to unpack .../181-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 122s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 122s Selecting previously unselected package librust-tokio-dev:s390x. 122s Preparing to unpack .../182-librust-tokio-dev_1.43.0-1_s390x.deb ... 122s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 122s Selecting previously unselected package librust-async-global-executor-dev:s390x. 122s Preparing to unpack .../183-librust-async-global-executor-dev_2.4.1-5_s390x.deb ... 122s Unpacking librust-async-global-executor-dev:s390x (2.4.1-5) ... 122s Selecting previously unselected package librust-async-signal-dev:s390x. 122s Preparing to unpack .../184-librust-async-signal-dev_0.2.10-1_s390x.deb ... 122s Unpacking librust-async-signal-dev:s390x (0.2.10-1) ... 122s Selecting previously unselected package librust-async-process-dev. 122s Preparing to unpack .../185-librust-async-process-dev_2.3.0-2_all.deb ... 122s Unpacking librust-async-process-dev (2.3.0-2) ... 122s Selecting previously unselected package librust-kv-log-macro-dev. 122s Preparing to unpack .../186-librust-kv-log-macro-dev_1.0.8-5_all.deb ... 122s Unpacking librust-kv-log-macro-dev (1.0.8-5) ... 122s Selecting previously unselected package librust-pin-utils-dev:s390x. 122s Preparing to unpack .../187-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 122s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 122s Selecting previously unselected package librust-async-std-dev. 122s Preparing to unpack .../188-librust-async-std-dev_1.13.0-4_all.deb ... 122s Unpacking librust-async-std-dev (1.13.0-4) ... 122s Selecting previously unselected package librust-jobserver-dev:s390x. 122s Preparing to unpack .../189-librust-jobserver-dev_0.1.32-1_s390x.deb ... 122s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 122s Selecting previously unselected package librust-shlex-dev:s390x. 122s Preparing to unpack .../190-librust-shlex-dev_1.3.0-1_s390x.deb ... 122s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 122s Selecting previously unselected package librust-cc-dev:s390x. 122s Preparing to unpack .../191-librust-cc-dev_1.1.14-1_s390x.deb ... 122s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 122s Selecting previously unselected package librust-libloading-dev:s390x. 122s Preparing to unpack .../192-librust-libloading-dev_0.8.5-1_s390x.deb ... 122s Unpacking librust-libloading-dev:s390x (0.8.5-1) ... 122s Selecting previously unselected package librust-dlib-dev:s390x. 122s Preparing to unpack .../193-librust-dlib-dev_0.5.2-2_s390x.deb ... 122s Unpacking librust-dlib-dev:s390x (0.5.2-2) ... 122s Selecting previously unselected package librust-downcast-rs-dev:s390x. 122s Preparing to unpack .../194-librust-downcast-rs-dev_1.2.0-1_s390x.deb ... 122s Unpacking librust-downcast-rs-dev:s390x (1.2.0-1) ... 122s Selecting previously unselected package librust-encoding-rs-dev:s390x. 122s Preparing to unpack .../195-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 122s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 122s Selecting previously unselected package librust-os-pipe-dev:s390x. 122s Preparing to unpack .../196-librust-os-pipe-dev_1.2.1-1_s390x.deb ... 122s Unpacking librust-os-pipe-dev:s390x (1.2.1-1) ... 122s Selecting previously unselected package librust-io-lifetimes-dev:s390x. 122s Preparing to unpack .../197-librust-io-lifetimes-dev_2.0.3-1_s390x.deb ... 122s Unpacking librust-io-lifetimes-dev:s390x (2.0.3-1) ... 122s Selecting previously unselected package librust-memoffset-dev:s390x. 122s Preparing to unpack .../198-librust-memoffset-dev_0.8.0-1_s390x.deb ... 122s Unpacking librust-memoffset-dev:s390x (0.8.0-1) ... 122s Selecting previously unselected package librust-quick-xml-dev:s390x. 122s Preparing to unpack .../199-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 122s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 122s Selecting previously unselected package librust-raw-window-handle-dev:s390x. 122s Preparing to unpack .../200-librust-raw-window-handle-dev_0.5.2-1_s390x.deb ... 122s Unpacking librust-raw-window-handle-dev:s390x (0.5.2-1) ... 122s Selecting previously unselected package librust-scoped-tls-dev:s390x. 122s Preparing to unpack .../201-librust-scoped-tls-dev_1.0.1-1_s390x.deb ... 122s Unpacking librust-scoped-tls-dev:s390x (1.0.1-1) ... 122s Selecting previously unselected package libwayland-client0:s390x. 122s Preparing to unpack .../202-libwayland-client0_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-client0:s390x (1.23.1-1) ... 122s Selecting previously unselected package libwayland-server0:s390x. 122s Preparing to unpack .../203-libwayland-server0_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-server0:s390x (1.23.1-1) ... 122s Selecting previously unselected package libwayland-cursor0:s390x. 122s Preparing to unpack .../204-libwayland-cursor0_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 122s Selecting previously unselected package libwayland-egl1:s390x. 122s Preparing to unpack .../205-libwayland-egl1_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 122s Selecting previously unselected package libwayland-bin. 122s Preparing to unpack .../206-libwayland-bin_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-bin (1.23.1-1) ... 122s Selecting previously unselected package libffi-dev:s390x. 122s Preparing to unpack .../207-libffi-dev_3.4.6-1build1_s390x.deb ... 122s Unpacking libffi-dev:s390x (3.4.6-1build1) ... 122s Selecting previously unselected package libwayland-dev:s390x. 122s Preparing to unpack .../208-libwayland-dev_1.23.1-1_s390x.deb ... 122s Unpacking libwayland-dev:s390x (1.23.1-1) ... 122s Selecting previously unselected package librust-wayland-sys-dev:s390x. 122s Preparing to unpack .../209-librust-wayland-sys-dev_0.31.6-1_s390x.deb ... 122s Unpacking librust-wayland-sys-dev:s390x (0.31.6-1) ... 122s Selecting previously unselected package librust-wayland-backend-dev:s390x. 122s Preparing to unpack .../210-librust-wayland-backend-dev_0.3.8-1_s390x.deb ... 122s Unpacking librust-wayland-backend-dev:s390x (0.3.8-1) ... 122s Selecting previously unselected package librust-wayland-scanner-dev:s390x. 122s Preparing to unpack .../211-librust-wayland-scanner-dev_0.31.6-1_s390x.deb ... 122s Unpacking librust-wayland-scanner-dev:s390x (0.31.6-1) ... 122s Selecting previously unselected package librust-wayland-server-dev:s390x. 122s Preparing to unpack .../212-librust-wayland-server-dev_0.31.1-2_s390x.deb ... 122s Unpacking librust-wayland-server-dev:s390x (0.31.1-2) ... 122s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 122s Setting up librust-parking-dev:s390x (2.2.0-1) ... 122s Setting up libwayland-server0:s390x (1.23.1-1) ... 122s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 122s Setting up librust-either-dev:s390x (1.13.0-1) ... 122s Setting up librust-scoped-tls-dev:s390x (1.0.1-1) ... 122s Setting up librust-adler-dev:s390x (1.0.2-2) ... 122s Setting up dh-cargo-tools (31ubuntu4) ... 122s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 122s Setting up libarchive-zip-perl (1.68-1) ... 122s Setting up librust-raw-window-handle-dev:s390x (0.5.2-1) ... 122s Setting up librust-fastrand-dev:s390x (2.1.1-1) ... 122s Setting up libdebhelper-perl (13.23ubuntu1) ... 122s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 122s Setting up m4 (1.4.19-5) ... 122s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 122s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 122s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 122s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 122s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 122s Setting up libffi-dev:s390x (3.4.6-1build1) ... 122s Setting up librust-atomic-waker-dev:s390x (1.1.2-1) ... 122s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 122s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 122s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 122s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 122s Setting up libwayland-bin (1.23.1-1) ... 122s Setting up autotools-dev (20220109.1) ... 122s Setting up libpkgconf3:s390x (1.8.1-4) ... 122s Setting up librust-downcast-rs-dev:s390x (1.2.0-1) ... 122s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 122s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 122s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 122s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 122s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 122s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 122s Setting up libmpc3:s390x (1.3.1-1build2) ... 122s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 122s Setting up autopoint (0.23.1-1) ... 122s Setting up pkgconf-bin (1.8.1-4) ... 122s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 122s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 122s Setting up autoconf (2.72-3) ... 122s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 122s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 122s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 122s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 122s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 122s Setting up dwz (0.15-1build6) ... 122s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 122s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 122s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 122s Setting up debugedit (1:5.1-2) ... 122s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 122s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 122s Setting up libwayland-egl1:s390x (1.23.1-1) ... 122s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 122s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 122s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 122s Setting up libisl23:s390x (0.27-1) ... 122s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 122s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 122s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 122s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 122s Setting up libwayland-client0:s390x (1.23.1-1) ... 122s Setting up automake (1:1.17-3) ... 122s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 122s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 122s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 122s Setting up librust-libc-dev:s390x (0.2.169-1) ... 122s Setting up gettext (0.23.1-1) ... 122s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 122s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 122s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 122s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 122s Setting up librust-libloading-dev:s390x (0.8.5-1) ... 122s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 122s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 122s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 122s Setting up librust-memoffset-dev:s390x (0.8.0-1) ... 122s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 122s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 122s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 122s Setting up pkgconf:s390x (1.8.1-4) ... 122s Setting up intltool-debian (0.35.0+20060710.6) ... 122s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 122s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 122s Setting up librust-errno-dev:s390x (0.3.8-1) ... 122s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 122s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 122s Setting up cpp-14 (14.2.0-16ubuntu1) ... 122s Setting up dh-strip-nondeterminism (1.14.1-2) ... 122s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 122s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 122s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 122s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 122s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 122s Setting up librust-os-pipe-dev:s390x (1.2.1-1) ... 122s Setting up librust-dlib-dev:s390x (0.5.2-2) ... 122s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 122s Setting up po-debconf (1.0.21+nmu1) ... 122s Setting up librust-quote-dev:s390x (1.0.37-1) ... 122s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 122s Setting up librust-syn-dev:s390x (2.0.96-2) ... 122s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 122s Setting up libwayland-dev:s390x (1.23.1-1) ... 122s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 122s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 122s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 122s Setting up librust-cc-dev:s390x (1.1.14-1) ... 122s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 122s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 122s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 122s Setting up cpp (4:14.1.0-2ubuntu1) ... 122s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 122s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 122s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 122s Setting up librust-serde-dev:s390x (1.0.217-1) ... 122s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 122s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 122s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 122s Setting up librust-async-attributes-dev (1.1.2-7) ... 122s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 122s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 122s Setting up librust-serde-fmt-dev (1.0.3-4) ... 122s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 122s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 122s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 122s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 122s Setting up librust-sval-dev:s390x (2.6.1-2) ... 122s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 122s Setting up gcc-14 (14.2.0-16ubuntu1) ... 122s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 122s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 122s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 122s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 122s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 122s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 122s Setting up librust-slab-dev:s390x (0.4.9-1) ... 122s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 122s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 122s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 122s Setting up librust-concurrent-queue-dev:s390x (2.5.0-4) ... 122s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 122s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 122s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 122s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 122s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 122s Setting up librust-async-task-dev (4.7.1-4) ... 122s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 122s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 122s Setting up libtool (2.5.4-3build1) ... 122s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 122s Setting up librust-event-listener-dev (5.4.0-3) ... 122s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 122s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 122s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 122s Setting up gcc (4:14.1.0-2ubuntu1) ... 122s Setting up dh-autoreconf (20) ... 122s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 122s Setting up librust-bitflags-dev:s390x (2.8.0-1) ... 122s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 122s Setting up rustc (1.84.0ubuntu1) ... 122s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 122s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 122s Setting up librust-digest-dev:s390x (0.10.7-2) ... 122s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 122s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 122s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 122s Setting up librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 122s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 122s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 122s Setting up debhelper (13.23ubuntu1) ... 122s Setting up librust-ahash-dev (0.8.11-9) ... 122s Setting up librust-async-channel-dev (2.3.1-9) ... 122s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 122s Setting up cargo (1.84.0ubuntu1) ... 122s Setting up dh-cargo (31ubuntu4) ... 122s Setting up librust-async-lock-dev (3.4.0-5) ... 122s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 122s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 122s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 122s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 122s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 122s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 122s Setting up librust-futures-lite-dev:s390x (2.3.0-2) ... 122s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 122s Setting up librust-async-executor-dev (1.13.1-2) ... 122s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 122s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 122s Setting up librust-log-dev:s390x (0.4.22-1) ... 122s Setting up librust-kv-log-macro-dev (1.0.8-5) ... 122s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 122s Setting up librust-polling-dev:s390x (3.4.0-1) ... 122s Setting up librust-async-io-dev:s390x (2.3.3-4) ... 122s Setting up librust-blocking-dev (1.6.1-6) ... 122s Setting up librust-rand-dev:s390x (0.8.5-1) ... 122s Setting up librust-mio-dev:s390x (1.0.2-3) ... 122s Setting up librust-wayland-sys-dev:s390x (0.31.6-1) ... 122s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 122s Setting up librust-wayland-backend-dev:s390x (0.3.8-1) ... 122s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 122s Setting up librust-async-signal-dev:s390x (0.2.10-1) ... 122s Setting up librust-async-process-dev (2.3.0-2) ... 122s Setting up librust-object-dev:s390x (0.36.5-2) ... 122s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 122s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 122s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 122s Setting up librust-async-global-executor-dev:s390x (2.4.1-5) ... 122s Setting up librust-async-std-dev (1.13.0-4) ... 122s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 122s Setting up librust-io-lifetimes-dev:s390x (2.0.3-1) ... 122s Setting up librust-wayland-scanner-dev:s390x (0.31.6-1) ... 122s Setting up librust-wayland-server-dev:s390x (0.31.1-2) ... 122s Processing triggers for install-info (7.1.1-1) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s Processing triggers for man-db (2.13.0-1) ... 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wayland-server-dev'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqDUey/rust-wayland-server:@-packages.all"], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/rust-wayland-server%3A%40-packages.all /tmp/autopkgtest-work.ntu7tfso/out/rust-wayland-server%3A%40-packages.all 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.XqDUey/build.VEI/src'], kind short, sout raw, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.XqDUey/build.VEI/src already exists 124s autopkgtest [07:33:32]: test rust-wayland-server:@: /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --all-features 124s autopkgtest [07:33:32]: test rust-wayland-server:@: [----------------------- 124s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.XqDUey/wrapper.sh --debug --artifacts=/tmp/autopkgtest.XqDUey/rust-wayland-server:@-artifacts --chdir=/tmp/autopkgtest.XqDUey/build.VEI/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.XqDUey/rust-wayland-server:@-stderr --stdout=/tmp/autopkgtest.XqDUey/rust-wayland-server:@-stdout --tmp=/tmp/autopkgtest.XqDUey/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 124s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.XqDUey/rust-wayland-server:@-artifacts 124s /tmp/autopkgtest.XqDUey/wrapper.sh: changing to directory: /tmp/autopkgtest.XqDUey/build.VEI/src 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: LANG=C.UTF-8 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LANGUAGE 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ADDRESS 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ALL 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_COLLATE 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_CTYPE 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_IDENTIFICATION 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MEASUREMENT 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MESSAGES 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MONETARY 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NAME 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NUMERIC 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_PAPER 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TELEPHONE 124s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TIME 124s /tmp/autopkgtest.XqDUey/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 124s /tmp/autopkgtest.XqDUey/wrapper.sh: pretending to be a login shell 124s /tmp/autopkgtest.XqDUey/wrapper.sh: will write standard error to /tmp/autopkgtest.XqDUey/rust-wayland-server:@-stderr 124s /tmp/autopkgtest.XqDUey/wrapper.sh: will write stdout to /tmp/autopkgtest.XqDUey/rust-wayland-server:@-stdout 124s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.XqDUey/autopkgtest_tmp 124s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 124s /tmp/autopkgtest.XqDUey/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --all-features 124s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.VNt5ZRBmKb/out to stdout and file: /tmp/autopkgtest.XqDUey/rust-wayland-server:@-stdout 124s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.VNt5ZRBmKb/err to standard error and file: /tmp/autopkgtest.XqDUey/rust-wayland-server:@-stdout 124s /tmp/autopkgtest.XqDUey/wrapper.sh: writing script pid 3333 to /tmp/autopkgtest_script_pid 124s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 124s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 124s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 124s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.4wMyk8rU2f/registry/ 124s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 124s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 124s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 124s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--all-features'],) {} 125s Compiling libc v0.2.169 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 125s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=e76bb75675bbf0aa -C extra-filename=-e76bb75675bbf0aa --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/libc-e76bb75675bbf0aa -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 125s Compiling proc-macro2 v1.0.92 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 125s Compiling shlex v1.3.0 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.4wMyk8rU2f/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 125s warning: unexpected `cfg` condition name: `manual_codegen_check` 125s --> /tmp/tmp.4wMyk8rU2f/registry/shlex-1.3.0/src/bytes.rs:353:12 125s | 125s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 125s | ^^^^^^^^^^^^^^^^^^^^ 125s | 125s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 125s = help: consider using a Cargo feature instead 125s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 125s [lints.rust] 125s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 125s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 125s = note: see for more information about checking conditional configuration 125s = note: `#[warn(unexpected_cfgs)]` on by default 125s 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 125s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/libc-e76bb75675bbf0aa/build-script-build` 125s [libc 0.2.169] cargo:rerun-if-changed=build.rs 125s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 125s [libc 0.2.169] cargo:rustc-cfg=freebsd11 125s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 125s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 125s Compiling pkg-config v0.3.31 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 125s Cargo build scripts. 125s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 125s warning: unreachable expression 125s --> /tmp/tmp.4wMyk8rU2f/registry/pkg-config-0.3.31/src/lib.rs:596:9 125s | 125s 592 | return true; 125s | ----------- any code following this expression is unreachable 125s ... 125s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 125s 597 | | // don't use pkg-config if explicitly disabled 125s 598 | | Some(ref val) if val == "0" => false, 125s 599 | | Some(_) => true, 125s ... | 125s 605 | | } 125s 606 | | } 125s | |_________^ unreachable expression 125s | 125s = note: `#[warn(unreachable_code)]` on by default 125s 125s warning: `shlex` (lib) generated 1 warning 125s Compiling cc v1.1.14 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 125s C compiler to compile native C code into a static archive to be linked into Rust 125s code. 125s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern shlex=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 126s warning: `pkg-config` (lib) generated 1 warning 126s Compiling wayland-sys v0.31.6 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern pkg_config=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 126s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 126s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out rustc --crate-name libc --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=68716d2ef429337f -C extra-filename=-68716d2ef429337f --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 126s warning: unused import: `crate::ntptimeval` 126s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 126s | 126s 5 | use crate::ntptimeval; 126s | ^^^^^^^^^^^^^^^^^ 126s | 126s = note: `#[warn(unused_imports)]` on by default 126s 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 127s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 127s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 127s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 127s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 127s Compiling rustix v0.38.37 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 127s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 127s | 127s = note: this feature is not stably supported; its behavior can change in the future 127s 128s warning: `libc` (lib) generated 2 warnings 128s Compiling unicode-ident v1.0.13 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 128s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 128s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 128s [rustix 0.38.37] cargo:rustc-cfg=libc 128s [rustix 0.38.37] cargo:rustc-cfg=linux_like 128s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 128s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 128s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 128s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 128s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 128s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern unicode_ident=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 128s Compiling errno v0.3.8 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=30bd28d5eecfd684 -C extra-filename=-30bd28d5eecfd684 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern libc=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: unexpected `cfg` condition value: `bitrig` 128s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 128s | 128s 77 | target_os = "bitrig", 128s | ^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 128s = note: see for more information about checking conditional configuration 128s = note: `#[warn(unexpected_cfgs)]` on by default 128s 128s warning: `errno` (lib) generated 2 warnings (1 duplicate) 128s Compiling wayland-backend v0.3.8 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern cc=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 128s Compiling memchr v2.7.4 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 128s 1, 2 or 3 byte search and single substring search. 128s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 128s Compiling linux-raw-sys v0.4.14 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s Compiling io-lifetimes v2.0.3 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn` 129s Compiling bitflags v2.8.0 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 129s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 129s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 129s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 129s Compiling quick-xml v0.36.1 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern memchr=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 129s warning: unexpected `cfg` condition value: `document-features` 129s --> /tmp/tmp.4wMyk8rU2f/registry/quick-xml-0.36.1/src/lib.rs:42:5 129s | 129s 42 | feature = "document-features", 129s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 129s = help: consider adding `document-features` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s = note: `#[warn(unexpected_cfgs)]` on by default 129s 129s warning: elided lifetime has a name 129s --> /tmp/tmp.4wMyk8rU2f/registry/quick-xml-0.36.1/src/writer.rs:146:73 129s | 129s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 129s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 129s | 129s = note: `#[warn(elided_named_lifetimes)]` on by default 129s 129s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=58cd9adcf2d22c26 -C extra-filename=-58cd9adcf2d22c26 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern bitflags=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/liberrno-30bd28d5eecfd684.rmeta --extern libc=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --extern linux_raw_sys=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 130s warning: `quick-xml` (lib) generated 2 warnings 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/debug/deps:/tmp/tmp.4wMyk8rU2f/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.4wMyk8rU2f/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 130s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 130s Compiling quote v1.0.37 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern proc_macro2=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 130s Compiling downcast-rs v1.2.0 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 130s parameters, associated types, and type constraints. 130s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.4wMyk8rU2f/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 130s Compiling smallvec v1.13.2 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.4wMyk8rU2f/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 130s Compiling wayland-scanner v0.31.6 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.4wMyk8rU2f/target/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern proc_macro2=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=282c862af5919598 -C extra-filename=-282c862af5919598 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern downcast_rs=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rmeta --extern smallvec=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 133s warning: `rustix` (lib) generated 1 warning (1 duplicate) 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps OUT_DIR=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 133s warning: unexpected `cfg` condition name: `wasi_ext` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 133s | 133s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 133s | ^^^^^^^^ 133s | 133s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s = note: `#[warn(unexpected_cfgs)]` on by default 133s 133s warning: unexpected `cfg` condition name: `doc_cfg` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 133s | 133s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 133s | ^^^^^^^ 133s | 133s = help: consider using a Cargo feature instead 133s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 133s [lints.rust] 133s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 133s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 133s | 133s 239 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 133s | 133s 242 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 133s | 133s 245 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 133s | 133s 248 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 133s | 133s 251 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: unexpected `cfg` condition value: `async_std` 133s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 133s | 133s 254 | #[cfg(feature = "async_std")] 133s | ^^^^^^^^^^----------- 133s | | 133s | help: there is a expected value with a similar name: `"async-std"` 133s | 133s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 133s = help: consider adding `async_std` as a feature in `Cargo.toml` 133s = note: see for more information about checking conditional configuration 133s 133s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 133s Compiling log v0.4.22 133s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.4wMyk8rU2f/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.4wMyk8rU2f/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 133s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.4wMyk8rU2f/registry/log-0.4.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 133s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 134s warning: `log` (lib) generated 1 warning (1 duplicate) 134s Compiling wayland-server v0.31.1 (/usr/share/cargo/registry/wayland-server-0.31.1) 134s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.4wMyk8rU2f/target/debug/deps rustc --crate-name wayland_server --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="log"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=3b75966c5a85bd98 -C extra-filename=-3b75966c5a85bd98 --out-dir /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.4wMyk8rU2f/target/debug/deps --extern bitflags=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rlib --extern downcast_rs=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rlib --extern io_lifetimes=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rlib --extern log=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern rustix=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rlib --extern wayland_backend=/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-282c862af5919598.rlib --extern wayland_scanner=/tmp/tmp.4wMyk8rU2f/target/debug/deps/libwayland_scanner-c58251dd28084e37.so -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.4wMyk8rU2f/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 135s warning: `wayland-server` (lib test) generated 1 warning (1 duplicate) 135s Finished `test` profile [unoptimized + debuginfo] target(s) in 10.48s 135s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.4wMyk8rU2f/target/s390x-unknown-linux-gnu/debug/deps/wayland_server-3b75966c5a85bd98` 135s 135s running 2 tests 135s test global::tests::smoke_test_dispatch_global_dispatch_generics ... ok 135s test global::tests::smoke_test_dispatch_global_dispatch ... ok 135s 135s test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 135s 135s /tmp/autopkgtest.XqDUey/wrapper.sh: checking for leaked background processes... 135s /tmp/autopkgtest.XqDUey/wrapper.sh: waiting for tee/cat subprocesses... 135s /tmp/autopkgtest.XqDUey/wrapper.sh: cleaning up... 135s /tmp/autopkgtest.XqDUey/wrapper.sh: Exit status: 0 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [07:33:43]: test rust-wayland-server:@: -----------------------] 135s autopkgtest: DBG: testbed executing test finished with exit status 0 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/rust-wayland-server%3A%40-stdout /tmp/autopkgtest-work.ntu7tfso/out/rust-wayland-server%3A%40-stdout 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/rust-wayland-server%3A%40-stderr /tmp/autopkgtest-work.ntu7tfso/out/rust-wayland-server%3A%40-stderr 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest [07:33:44]: test rust-wayland-server:@: - - - - - - - - - - results - - - - - - - - - - 136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/rust-wayland-server%3A%40-artifacts/ /tmp/autopkgtest-work.ntu7tfso/out/artifacts/ 136s rust-wayland-server:@ PASS 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.XqDUey/rust-wayland-server:@-artifacts', '/tmp/autopkgtest.XqDUey/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [07:33:44]: test librust-wayland-server-dev:default: preparing testbed 136s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-wayland-server-dev'], deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 136s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 136s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 136s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-wayland-server-dev 136s autopkgtest: DBG: can use apt-get on testbed: True 136s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-wayland-server-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 136s Reading package lists... 137s Building dependency tree... 137s Reading state information... 137s Starting pkgProblemResolver with broken count: 0 137s Starting 2 pkgProblemResolver with broken count: 0 137s Done 137s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wayland-server-dev'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Adefault-packages.all /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Adefault-packages.all 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.XqDUey/build.VEI/src'], kind short, sout raw, serr raw, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.XqDUey/build.VEI/src already exists 138s autopkgtest [07:33:46]: test librust-wayland-server-dev:default: /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets 138s autopkgtest [07:33:46]: test librust-wayland-server-dev:default: [----------------------- 138s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.XqDUey/wrapper.sh --debug --artifacts=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-artifacts --chdir=/tmp/autopkgtest.XqDUey/build.VEI/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stderr --stdout=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stdout --tmp=/tmp/autopkgtest.XqDUey/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets'"], kind test, sout raw, serr raw, env [] 138s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-artifacts 138s /tmp/autopkgtest.XqDUey/wrapper.sh: changing to directory: /tmp/autopkgtest.XqDUey/build.VEI/src 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: LANG=C.UTF-8 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LANGUAGE 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ADDRESS 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ALL 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_COLLATE 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_CTYPE 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_IDENTIFICATION 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MEASUREMENT 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MESSAGES 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MONETARY 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NAME 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NUMERIC 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_PAPER 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TELEPHONE 138s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TIME 138s /tmp/autopkgtest.XqDUey/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 138s /tmp/autopkgtest.XqDUey/wrapper.sh: pretending to be a login shell 138s /tmp/autopkgtest.XqDUey/wrapper.sh: will write standard error to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stderr 138s /tmp/autopkgtest.XqDUey/wrapper.sh: will write stdout to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stdout 138s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.XqDUey/autopkgtest_tmp 138s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 138s /tmp/autopkgtest.XqDUey/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets 138s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.g9GN5fZVgi/out to stdout and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stdout 138s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.g9GN5fZVgi/err to standard error and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-stdout 138s /tmp/autopkgtest.XqDUey/wrapper.sh: writing script pid 3853 to /tmp/autopkgtest_script_pid 138s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 138s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 138s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 138s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.McyffALhGr/registry/ 138s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 138s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 138s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 138s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 138s Compiling libc v0.2.169 138s Compiling proc-macro2 v1.0.92 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 138s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=e76bb75675bbf0aa -C extra-filename=-e76bb75675bbf0aa --out-dir /tmp/tmp.McyffALhGr/target/debug/build/libc-e76bb75675bbf0aa -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.McyffALhGr/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 138s Compiling pkg-config v0.3.31 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 138s Cargo build scripts. 138s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.McyffALhGr/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 138s warning: unreachable expression 138s --> /tmp/tmp.McyffALhGr/registry/pkg-config-0.3.31/src/lib.rs:596:9 138s | 138s 592 | return true; 138s | ----------- any code following this expression is unreachable 138s ... 138s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 138s 597 | | // don't use pkg-config if explicitly disabled 138s 598 | | Some(ref val) if val == "0" => false, 138s 599 | | Some(_) => true, 138s ... | 138s 605 | | } 138s 606 | | } 138s | |_________^ unreachable expression 138s | 138s = note: `#[warn(unreachable_code)]` on by default 138s 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 138s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/libc-e76bb75675bbf0aa/build-script-build` 138s [libc 0.2.169] cargo:rerun-if-changed=build.rs 138s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 138s [libc 0.2.169] cargo:rustc-cfg=freebsd11 138s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 138s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 138s Compiling shlex v1.3.0 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.McyffALhGr/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 138s warning: unexpected `cfg` condition name: `manual_codegen_check` 138s --> /tmp/tmp.McyffALhGr/registry/shlex-1.3.0/src/bytes.rs:353:12 138s | 138s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 138s | ^^^^^^^^^^^^^^^^^^^^ 138s | 138s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 138s = help: consider using a Cargo feature instead 138s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 138s [lints.rust] 138s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 138s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 138s = note: see for more information about checking conditional configuration 138s = note: `#[warn(unexpected_cfgs)]` on by default 138s 139s warning: `shlex` (lib) generated 1 warning 139s Compiling cc v1.1.14 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 139s C compiler to compile native C code into a static archive to be linked into Rust 139s code. 139s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.McyffALhGr/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern shlex=/tmp/tmp.McyffALhGr/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 139s warning: `pkg-config` (lib) generated 1 warning 139s Compiling wayland-sys v0.31.6 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.McyffALhGr/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern pkg_config=/tmp/tmp.McyffALhGr/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 139s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out rustc --crate-name libc --edition=2021 /tmp/tmp.McyffALhGr/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=68716d2ef429337f -C extra-filename=-68716d2ef429337f --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 140s warning: unused import: `crate::ntptimeval` 140s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 140s | 140s 5 | use crate::ntptimeval; 140s | ^^^^^^^^^^^^^^^^^ 140s | 140s = note: `#[warn(unused_imports)]` on by default 140s 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 141s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 141s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 141s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 141s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 141s Compiling unicode-ident v1.0.13 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.McyffALhGr/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 141s Compiling rustix v0.38.37 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.McyffALhGr/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 141s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 141s | 141s = note: this feature is not stably supported; its behavior can change in the future 141s 141s warning: `libc` (lib) generated 2 warnings 141s Compiling errno v0.3.8 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.McyffALhGr/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=30bd28d5eecfd684 -C extra-filename=-30bd28d5eecfd684 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern libc=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 141s warning: unexpected `cfg` condition value: `bitrig` 141s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 141s | 141s 77 | target_os = "bitrig", 141s | ^^^^^^^^^^^^^^^^^^^^ 141s | 141s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 141s = note: see for more information about checking conditional configuration 141s = note: `#[warn(unexpected_cfgs)]` on by default 141s 141s warning: `errno` (lib) generated 2 warnings (1 duplicate) 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.McyffALhGr/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern unicode_ident=/tmp/tmp.McyffALhGr/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 141s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 141s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 141s [rustix 0.38.37] cargo:rustc-cfg=libc 141s [rustix 0.38.37] cargo:rustc-cfg=linux_like 141s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 141s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 141s Compiling wayland-backend v0.3.8 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.McyffALhGr/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern cc=/tmp/tmp.McyffALhGr/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 141s Compiling memchr v2.7.4 141s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 141s 1, 2 or 3 byte search and single substring search. 141s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.McyffALhGr/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 142s Compiling io-lifetimes v2.0.3 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.McyffALhGr/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn` 142s Compiling linux-raw-sys v0.4.14 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.McyffALhGr/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 142s Compiling bitflags v2.8.0 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 142s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.McyffALhGr/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 142s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 142s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 142s Compiling quick-xml v0.36.1 142s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.McyffALhGr/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern memchr=/tmp/tmp.McyffALhGr/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 142s warning: unexpected `cfg` condition value: `document-features` 142s --> /tmp/tmp.McyffALhGr/registry/quick-xml-0.36.1/src/lib.rs:42:5 142s | 142s 42 | feature = "document-features", 142s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 142s | 142s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 142s = help: consider adding `document-features` as a feature in `Cargo.toml` 142s = note: see for more information about checking conditional configuration 142s = note: `#[warn(unexpected_cfgs)]` on by default 142s 142s warning: elided lifetime has a name 142s --> /tmp/tmp.McyffALhGr/registry/quick-xml-0.36.1/src/writer.rs:146:73 142s | 142s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 142s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 142s | 142s = note: `#[warn(elided_named_lifetimes)]` on by default 142s 143s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.McyffALhGr/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=58cd9adcf2d22c26 -C extra-filename=-58cd9adcf2d22c26 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern bitflags=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/liberrno-30bd28d5eecfd684.rmeta --extern libc=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --extern linux_raw_sys=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 143s warning: `quick-xml` (lib) generated 2 warnings 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.McyffALhGr/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 143s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/debug/deps:/tmp/tmp.McyffALhGr/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.McyffALhGr/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 143s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 143s Compiling quote v1.0.37 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.McyffALhGr/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern proc_macro2=/tmp/tmp.McyffALhGr/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 143s Compiling downcast-rs v1.2.0 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 143s parameters, associated types, and type constraints. 143s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.McyffALhGr/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 143s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 143s Compiling smallvec v1.13.2 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.McyffALhGr/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 144s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 144s Compiling wayland-scanner v0.31.6 144s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.McyffALhGr/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.McyffALhGr/target/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern proc_macro2=/tmp/tmp.McyffALhGr/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.McyffALhGr/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.McyffALhGr/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 146s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.McyffALhGr/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=282c862af5919598 -C extra-filename=-282c862af5919598 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern downcast_rs=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rmeta --extern smallvec=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 147s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps OUT_DIR=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.McyffALhGr/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 147s warning: unexpected `cfg` condition name: `wasi_ext` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 147s | 147s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 147s | ^^^^^^^^ 147s | 147s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 147s = help: consider using a Cargo feature instead 147s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 147s [lints.rust] 147s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 147s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 147s = note: see for more information about checking conditional configuration 147s = note: `#[warn(unexpected_cfgs)]` on by default 147s 147s warning: unexpected `cfg` condition name: `doc_cfg` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 147s | 147s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 147s | ^^^^^^^ 147s | 147s = help: consider using a Cargo feature instead 147s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 147s [lints.rust] 147s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 147s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 147s | 147s 239 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 147s | 147s 242 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 147s | 147s 245 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 147s | 147s 248 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 147s | 147s 251 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: unexpected `cfg` condition value: `async_std` 147s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 147s | 147s 254 | #[cfg(feature = "async_std")] 147s | ^^^^^^^^^^----------- 147s | | 147s | help: there is a expected value with a similar name: `"async-std"` 147s | 147s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 147s = help: consider adding `async_std` as a feature in `Cargo.toml` 147s = note: see for more information about checking conditional configuration 147s 147s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 147s warning: `rustix` (lib) generated 1 warning (1 duplicate) 147s Compiling wayland-server v0.31.1 (/usr/share/cargo/registry/wayland-server-0.31.1) 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.McyffALhGr/target/debug/deps rustc --crate-name wayland_server --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=daafce26abe8ed36 -C extra-filename=-daafce26abe8ed36 --out-dir /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.McyffALhGr/target/debug/deps --extern bitflags=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rlib --extern downcast_rs=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rlib --extern io_lifetimes=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rlib --extern rustix=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rlib --extern wayland_backend=/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-282c862af5919598.rlib --extern wayland_scanner=/tmp/tmp.McyffALhGr/target/debug/deps/libwayland_scanner-c58251dd28084e37.so -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.McyffALhGr/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 148s warning: `wayland-server` (lib test) generated 1 warning (1 duplicate) 148s Finished `test` profile [unoptimized + debuginfo] target(s) in 10.40s 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.McyffALhGr/target/s390x-unknown-linux-gnu/debug/deps/wayland_server-daafce26abe8ed36` 148s 148s running 2 tests 148s test global::tests::smoke_test_dispatch_global_dispatch ... ok 148s test global::tests::smoke_test_dispatch_global_dispatch_generics ... ok 148s 148s /tmp/autopkgtest.XqDUey/wrapper.sh: checking for leaked background processes... 148s /tmp/autopkgtest.XqDUey/wrapper.sh: waiting for tee/cat subprocesses... 148s /tmp/autopkgtest.XqDUey/wrapper.sh: cleaning up... 148s /tmp/autopkgtest.XqDUey/wrapper.sh: Exit status: 0 148s test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 148s 148s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest [07:33:57]: test librust-wayland-server-dev:default: -----------------------] 149s autopkgtest: DBG: testbed executing test finished with exit status 0 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Adefault-stdout /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Adefault-stdout 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Adefault-stderr /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Adefault-stderr 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest [07:33:57]: test librust-wayland-server-dev:default: - - - - - - - - - - results - - - - - - - - - - 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.ntu7tfso/out/artifacts/ 149s librust-wayland-server-dev:default PASS 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:default-artifacts', '/tmp/autopkgtest.XqDUey/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest [07:33:57]: test librust-wayland-server-dev:log: preparing testbed 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-wayland-server-dev'], deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 149s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 149s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 149s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-wayland-server-dev 149s autopkgtest: DBG: can use apt-get on testbed: True 149s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-wayland-server-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 150s Reading package lists... 150s Building dependency tree... 150s Reading state information... 150s Starting pkgProblemResolver with broken count: 0 150s Starting 2 pkgProblemResolver with broken count: 0 150s Done 150s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wayland-server-dev'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-packages.all"], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Alog-packages.all /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Alog-packages.all 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.XqDUey/build.VEI/src'], kind short, sout raw, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.XqDUey/build.VEI/src already exists 151s autopkgtest [07:33:59]: test librust-wayland-server-dev:log: /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features --features log 151s autopkgtest [07:33:59]: test librust-wayland-server-dev:log: [----------------------- 151s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.XqDUey/wrapper.sh --debug --artifacts=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-artifacts --chdir=/tmp/autopkgtest.XqDUey/build.VEI/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stderr --stdout=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stdout --tmp=/tmp/autopkgtest.XqDUey/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features --features log'"], kind test, sout raw, serr raw, env [] 151s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-artifacts 151s /tmp/autopkgtest.XqDUey/wrapper.sh: changing to directory: /tmp/autopkgtest.XqDUey/build.VEI/src 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: LANG=C.UTF-8 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LANGUAGE 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ADDRESS 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ALL 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_COLLATE 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_CTYPE 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_IDENTIFICATION 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MEASUREMENT 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MESSAGES 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MONETARY 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NAME 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NUMERIC 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_PAPER 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TELEPHONE 151s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TIME 151s /tmp/autopkgtest.XqDUey/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 151s /tmp/autopkgtest.XqDUey/wrapper.sh: pretending to be a login shell 151s /tmp/autopkgtest.XqDUey/wrapper.sh: will write standard error to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stderr 151s /tmp/autopkgtest.XqDUey/wrapper.sh: will write stdout to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stdout 151s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.XqDUey/autopkgtest_tmp 151s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 151s /tmp/autopkgtest.XqDUey/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features --features log 151s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.bJaWPUYLoZ/out to stdout and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stdout 151s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.bJaWPUYLoZ/err to standard error and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-stdout 151s /tmp/autopkgtest.XqDUey/wrapper.sh: writing script pid 4361 to /tmp/autopkgtest_script_pid 151s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 151s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 151s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 151s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.Mf1N3zZXo5/registry/ 151s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 151s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 151s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 151s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features', '--features', 'log'],) {} 151s Compiling libc v0.2.169 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 151s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=e76bb75675bbf0aa -C extra-filename=-e76bb75675bbf0aa --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/libc-e76bb75675bbf0aa -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 151s Compiling shlex v1.3.0 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.Mf1N3zZXo5/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 151s warning: unexpected `cfg` condition name: `manual_codegen_check` 151s --> /tmp/tmp.Mf1N3zZXo5/registry/shlex-1.3.0/src/bytes.rs:353:12 151s | 151s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 151s | ^^^^^^^^^^^^^^^^^^^^ 151s | 151s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 151s = help: consider using a Cargo feature instead 151s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 151s [lints.rust] 151s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 151s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 151s = note: see for more information about checking conditional configuration 151s = note: `#[warn(unexpected_cfgs)]` on by default 151s 151s warning: `shlex` (lib) generated 1 warning 151s Compiling pkg-config v0.3.31 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 151s Cargo build scripts. 151s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 151s warning: unreachable expression 151s --> /tmp/tmp.Mf1N3zZXo5/registry/pkg-config-0.3.31/src/lib.rs:596:9 151s | 151s 592 | return true; 151s | ----------- any code following this expression is unreachable 151s ... 151s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 151s 597 | | // don't use pkg-config if explicitly disabled 151s 598 | | Some(ref val) if val == "0" => false, 151s 599 | | Some(_) => true, 151s ... | 151s 605 | | } 151s 606 | | } 151s | |_________^ unreachable expression 151s | 151s = note: `#[warn(unreachable_code)]` on by default 151s 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 152s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/libc-e76bb75675bbf0aa/build-script-build` 152s [libc 0.2.169] cargo:rerun-if-changed=build.rs 152s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 152s [libc 0.2.169] cargo:rustc-cfg=freebsd11 152s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 152s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 152s Compiling proc-macro2 v1.0.92 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 152s warning: `pkg-config` (lib) generated 1 warning 152s Compiling wayland-sys v0.31.6 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern pkg_config=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 152s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 152s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 152s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 152s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 152s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out rustc --crate-name libc --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=68716d2ef429337f -C extra-filename=-68716d2ef429337f --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 152s Compiling cc v1.1.14 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 152s C compiler to compile native C code into a static archive to be linked into Rust 152s code. 152s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern shlex=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 152s warning: unused import: `crate::ntptimeval` 152s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 152s | 152s 5 | use crate::ntptimeval; 152s | ^^^^^^^^^^^^^^^^^ 152s | 152s = note: `#[warn(unused_imports)]` on by default 152s 153s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 153s | 153s = note: this feature is not stably supported; its behavior can change in the future 153s 153s warning: `libc` (lib) generated 2 warnings 153s Compiling rustix v0.38.37 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 154s Compiling unicode-ident v1.0.13 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern unicode_ident=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 154s Compiling wayland-backend v0.3.8 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern cc=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 154s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 154s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 154s [rustix 0.38.37] cargo:rustc-cfg=libc 154s [rustix 0.38.37] cargo:rustc-cfg=linux_like 154s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 154s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 154s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 154s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 154s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 154s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 154s Compiling errno v0.3.8 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=30bd28d5eecfd684 -C extra-filename=-30bd28d5eecfd684 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern libc=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 154s warning: unexpected `cfg` condition value: `bitrig` 154s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 154s | 154s 77 | target_os = "bitrig", 154s | ^^^^^^^^^^^^^^^^^^^^ 154s | 154s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 154s = note: see for more information about checking conditional configuration 154s = note: `#[warn(unexpected_cfgs)]` on by default 154s 154s warning: `errno` (lib) generated 2 warnings (1 duplicate) 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 154s Compiling io-lifetimes v2.0.3 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 155s Compiling linux-raw-sys v0.4.14 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 155s Compiling memchr v2.7.4 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 155s 1, 2 or 3 byte search and single substring search. 155s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn` 155s Compiling bitflags v2.8.0 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 155s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 155s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 155s Compiling quick-xml v0.36.1 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern memchr=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 155s warning: unexpected `cfg` condition value: `document-features` 155s --> /tmp/tmp.Mf1N3zZXo5/registry/quick-xml-0.36.1/src/lib.rs:42:5 155s | 155s 42 | feature = "document-features", 155s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 155s | 155s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 155s = help: consider adding `document-features` as a feature in `Cargo.toml` 155s = note: see for more information about checking conditional configuration 155s = note: `#[warn(unexpected_cfgs)]` on by default 155s 155s warning: elided lifetime has a name 155s --> /tmp/tmp.Mf1N3zZXo5/registry/quick-xml-0.36.1/src/writer.rs:146:73 155s | 155s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 155s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 155s | 155s = note: `#[warn(elided_named_lifetimes)]` on by default 155s 155s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=58cd9adcf2d22c26 -C extra-filename=-58cd9adcf2d22c26 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern bitflags=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/liberrno-30bd28d5eecfd684.rmeta --extern libc=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --extern linux_raw_sys=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 156s warning: `quick-xml` (lib) generated 2 warnings 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 156s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Mf1N3zZXo5/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 156s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 156s Compiling quote v1.0.37 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern proc_macro2=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 156s Compiling downcast-rs v1.2.0 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 156s parameters, associated types, and type constraints. 156s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.Mf1N3zZXo5/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 157s Compiling smallvec v1.13.2 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.Mf1N3zZXo5/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 157s Compiling wayland-scanner v0.31.6 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.Mf1N3zZXo5/target/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern proc_macro2=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=282c862af5919598 -C extra-filename=-282c862af5919598 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern downcast_rs=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rmeta --extern smallvec=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 160s warning: `rustix` (lib) generated 1 warning (1 duplicate) 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps OUT_DIR=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: unexpected `cfg` condition name: `wasi_ext` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 160s | 160s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 160s | ^^^^^^^^ 160s | 160s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 160s = help: consider using a Cargo feature instead 160s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 160s [lints.rust] 160s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 160s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 160s = note: see for more information about checking conditional configuration 160s = note: `#[warn(unexpected_cfgs)]` on by default 160s 160s warning: unexpected `cfg` condition name: `doc_cfg` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 160s | 160s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 160s | ^^^^^^^ 160s | 160s = help: consider using a Cargo feature instead 160s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 160s [lints.rust] 160s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 160s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 160s | 160s 239 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 160s | 160s 242 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 160s | 160s 245 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 160s | 160s 248 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 160s | 160s 251 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 160s | 160s 254 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 160s Compiling log v0.4.22 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.Mf1N3zZXo5/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.Mf1N3zZXo5/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 160s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.Mf1N3zZXo5/registry/log-0.4.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 160s warning: `log` (lib) generated 1 warning (1 duplicate) 160s Compiling wayland-server v0.31.1 (/usr/share/cargo/registry/wayland-server-0.31.1) 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.Mf1N3zZXo5/target/debug/deps rustc --crate-name wayland_server --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --cfg 'feature="log"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=3b75966c5a85bd98 -C extra-filename=-3b75966c5a85bd98 --out-dir /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Mf1N3zZXo5/target/debug/deps --extern bitflags=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rlib --extern downcast_rs=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rlib --extern io_lifetimes=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rlib --extern log=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern rustix=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rlib --extern wayland_backend=/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-282c862af5919598.rlib --extern wayland_scanner=/tmp/tmp.Mf1N3zZXo5/target/debug/deps/libwayland_scanner-c58251dd28084e37.so -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.Mf1N3zZXo5/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: `wayland-server` (lib test) generated 1 warning (1 duplicate) 161s Finished `test` profile [unoptimized + debuginfo] target(s) in 10.12s 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.Mf1N3zZXo5/target/s390x-unknown-linux-gnu/debug/deps/wayland_server-3b75966c5a85bd98` 161s 161s running 2 tests 161s test global::tests::smoke_test_dispatch_global_dispatch_generics ... ok 161s test global::tests::smoke_test_dispatch_global_dispatch ... ok 161s 161s test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 161s 161s /tmp/autopkgtest.XqDUey/wrapper.sh: checking for leaked background processes... 161s /tmp/autopkgtest.XqDUey/wrapper.sh: waiting for tee/cat subprocesses... 161s /tmp/autopkgtest.XqDUey/wrapper.sh: cleaning up... 161s /tmp/autopkgtest.XqDUey/wrapper.sh: Exit status: 0 161s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [07:34:10]: test librust-wayland-server-dev:log: -----------------------] 162s autopkgtest: DBG: testbed executing test finished with exit status 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Alog-stdout /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Alog-stdout 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Alog-stderr /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3Alog-stderr 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest [07:34:10]: test librust-wayland-server-dev:log: - - - - - - - - - - results - - - - - - - - - - 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3Alog-artifacts/ /tmp/autopkgtest-work.ntu7tfso/out/artifacts/ 162s librust-wayland-server-dev:log PASS 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:log-artifacts', '/tmp/autopkgtest.XqDUey/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [07:34:10]: test librust-wayland-server-dev:: preparing testbed 162s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-wayland-server-dev'], deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 162s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 162s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-wayland-server-dev'] 162s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-wayland-server-dev 162s autopkgtest: DBG: can use apt-get on testbed: True 162s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-wayland-server-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 163s Reading package lists... 163s Building dependency tree... 163s Reading state information... 163s Starting pkgProblemResolver with broken count: 0 163s Starting 2 pkgProblemResolver with broken count: 0 163s Done 163s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wayland-server-dev'], kind short, sout pipe, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3A-packages.all /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3A-packages.all 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.XqDUey/build.VEI/src'], kind short, sout raw, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.XqDUey/build.VEI/src already exists 164s autopkgtest [07:34:12]: test librust-wayland-server-dev:: /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features 164s autopkgtest [07:34:12]: test librust-wayland-server-dev:: [----------------------- 164s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.XqDUey/wrapper.sh --debug --artifacts=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-artifacts --chdir=/tmp/autopkgtest.XqDUey/build.VEI/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stderr --stdout=/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stdout --tmp=/tmp/autopkgtest.XqDUey/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 164s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-artifacts 164s /tmp/autopkgtest.XqDUey/wrapper.sh: changing to directory: /tmp/autopkgtest.XqDUey/build.VEI/src 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: LANG=C.UTF-8 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LANGUAGE 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ADDRESS 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_ALL 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_COLLATE 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_CTYPE 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_IDENTIFICATION 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MEASUREMENT 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MESSAGES 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_MONETARY 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NAME 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_NUMERIC 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_PAPER 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TELEPHONE 164s /tmp/autopkgtest.XqDUey/wrapper.sh: unsetting environment: LC_TIME 164s /tmp/autopkgtest.XqDUey/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 164s /tmp/autopkgtest.XqDUey/wrapper.sh: pretending to be a login shell 164s /tmp/autopkgtest.XqDUey/wrapper.sh: will write standard error to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stderr 164s /tmp/autopkgtest.XqDUey/wrapper.sh: will write stdout to /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stdout 164s /tmp/autopkgtest.XqDUey/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.XqDUey/autopkgtest_tmp 164s /tmp/autopkgtest.XqDUey/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 164s /tmp/autopkgtest.XqDUey/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wayland-server 0.31.1 --all-targets --no-default-features 164s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.ADzABIJksK/out to stdout and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stdout 164s /tmp/autopkgtest.XqDUey/wrapper.sh: copying /tmp/tmp.ADzABIJksK/err to standard error and file: /tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-stdout 164s /tmp/autopkgtest.XqDUey/wrapper.sh: writing script pid 4876 to /tmp/autopkgtest_script_pid 164s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 164s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 164s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 164s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.bRb4U4opGy/registry/ 164s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 164s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 164s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 164s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features'],) {} 164s Compiling libc v0.2.169 164s Compiling pkg-config v0.3.31 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 164s Cargo build scripts. 164s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.bRb4U4opGy/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 164s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=e76bb75675bbf0aa -C extra-filename=-e76bb75675bbf0aa --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/libc-e76bb75675bbf0aa -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 164s warning: unreachable expression 164s --> /tmp/tmp.bRb4U4opGy/registry/pkg-config-0.3.31/src/lib.rs:596:9 164s | 164s 592 | return true; 164s | ----------- any code following this expression is unreachable 164s ... 164s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 164s 597 | | // don't use pkg-config if explicitly disabled 164s 598 | | Some(ref val) if val == "0" => false, 164s 599 | | Some(_) => true, 164s ... | 164s 605 | | } 164s 606 | | } 164s | |_________^ unreachable expression 164s | 164s = note: `#[warn(unreachable_code)]` on by default 164s 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 165s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/libc-e76bb75675bbf0aa/build-script-build` 165s [libc 0.2.169] cargo:rerun-if-changed=build.rs 165s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 165s [libc 0.2.169] cargo:rustc-cfg=freebsd11 165s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 165s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 165s Compiling proc-macro2 v1.0.92 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 165s warning: `pkg-config` (lib) generated 1 warning 165s Compiling shlex v1.3.0 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.bRb4U4opGy/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 165s warning: unexpected `cfg` condition name: `manual_codegen_check` 165s --> /tmp/tmp.bRb4U4opGy/registry/shlex-1.3.0/src/bytes.rs:353:12 165s | 165s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 165s | ^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s = note: `#[warn(unexpected_cfgs)]` on by default 165s 165s warning: `shlex` (lib) generated 1 warning 165s Compiling cc v1.1.14 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 165s C compiler to compile native C code into a static archive to be linked into Rust 165s code. 165s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.bRb4U4opGy/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern shlex=/tmp/tmp.bRb4U4opGy/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 165s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 165s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 165s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 165s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 165s Compiling wayland-sys v0.31.6 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern pkg_config=/tmp/tmp.bRb4U4opGy/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 165s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/libc-2d89f46e84b96520/out rustc --crate-name libc --edition=2021 /tmp/tmp.bRb4U4opGy/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=68716d2ef429337f -C extra-filename=-68716d2ef429337f --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 166s warning: unused import: `crate::ntptimeval` 166s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 166s | 166s 5 | use crate::ntptimeval; 166s | ^^^^^^^^^^^^^^^^^ 166s | 166s = note: `#[warn(unused_imports)]` on by default 166s 167s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 167s | 167s = note: this feature is not stably supported; its behavior can change in the future 167s 167s warning: `libc` (lib) generated 2 warnings 167s Compiling unicode-ident v1.0.13 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.bRb4U4opGy/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 167s Compiling rustix v0.38.37 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 167s Compiling wayland-backend v0.3.8 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern cc=/tmp/tmp.bRb4U4opGy/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.bRb4U4opGy/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern unicode_ident=/tmp/tmp.bRb4U4opGy/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 167s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 167s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 167s [rustix 0.38.37] cargo:rustc-cfg=libc 167s [rustix 0.38.37] cargo:rustc-cfg=linux_like 167s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 167s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 167s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 167s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 167s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 167s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 167s Compiling errno v0.3.8 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.bRb4U4opGy/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=30bd28d5eecfd684 -C extra-filename=-30bd28d5eecfd684 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern libc=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s warning: unexpected `cfg` condition value: `bitrig` 167s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 167s | 167s 77 | target_os = "bitrig", 167s | ^^^^^^^^^^^^^^^^^^^^ 167s | 167s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 167s = note: see for more information about checking conditional configuration 167s = note: `#[warn(unexpected_cfgs)]` on by default 167s 167s warning: `errno` (lib) generated 2 warnings (1 duplicate) 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 167s Compiling memchr v2.7.4 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 167s 1, 2 or 3 byte search and single substring search. 167s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.bRb4U4opGy/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 168s Compiling io-lifetimes v2.0.3 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn` 168s Compiling bitflags v2.8.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 168s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.bRb4U4opGy/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 168s Compiling linux-raw-sys v0.4.14 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.bRb4U4opGy/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 168s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 168s Compiling quick-xml v0.36.1 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.bRb4U4opGy/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern memchr=/tmp/tmp.bRb4U4opGy/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 168s warning: unexpected `cfg` condition value: `document-features` 168s --> /tmp/tmp.bRb4U4opGy/registry/quick-xml-0.36.1/src/lib.rs:42:5 168s | 168s 42 | feature = "document-features", 168s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 168s = help: consider adding `document-features` as a feature in `Cargo.toml` 168s = note: see for more information about checking conditional configuration 168s = note: `#[warn(unexpected_cfgs)]` on by default 168s 168s warning: elided lifetime has a name 168s --> /tmp/tmp.bRb4U4opGy/registry/quick-xml-0.36.1/src/writer.rs:146:73 168s | 168s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 168s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 168s | 168s = note: `#[warn(elided_named_lifetimes)]` on by default 168s 169s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.bRb4U4opGy/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=58cd9adcf2d22c26 -C extra-filename=-58cd9adcf2d22c26 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern bitflags=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/liberrno-30bd28d5eecfd684.rmeta --extern libc=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/liblibc-68716d2ef429337f.rmeta --extern linux_raw_sys=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 169s warning: `quick-xml` (lib) generated 2 warnings 169s Compiling quote v1.0.37 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.bRb4U4opGy/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern proc_macro2=/tmp/tmp.bRb4U4opGy/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.bRb4U4opGy/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1--remap-path-prefix/tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/debug/deps:/tmp/tmp.bRb4U4opGy/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.bRb4U4opGy/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 169s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 169s Compiling smallvec v1.13.2 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.bRb4U4opGy/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 169s Compiling downcast-rs v1.2.0 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 169s parameters, associated types, and type constraints. 169s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.bRb4U4opGy/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 169s Compiling wayland-scanner v0.31.6 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.bRb4U4opGy/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.bRb4U4opGy/target/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern proc_macro2=/tmp/tmp.bRb4U4opGy/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.bRb4U4opGy/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.bRb4U4opGy/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.bRb4U4opGy/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s warning: unexpected `cfg` condition name: `wasi_ext` 171s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 171s | 171s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 171s | ^^^^^^^^ 171s | 171s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 171s = help: consider using a Cargo feature instead 171s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 171s [lints.rust] 171s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 171s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 171s = note: see for more information about checking conditional configuration 171s = note: `#[warn(unexpected_cfgs)]` on by default 171s 171s warning: unexpected `cfg` condition name: `doc_cfg` 171s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 171s | 171s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 171s | ^^^^^^^ 171s | 171s = help: consider using a Cargo feature instead 171s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 171s [lints.rust] 171s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 171s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 171s = note: see for more information about checking conditional configuration 171s 171s warning: unexpected `cfg` condition value: `async_std` 171s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 171s | 171s 239 | #[cfg(feature = "async_std")] 171s | ^^^^^^^^^^----------- 171s | | 171s | help: there is a expected value with a similar name: `"async-std"` 171s | 171s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 171s = help: consider adding `async_std` as a feature in `Cargo.toml` 171s = note: see for more information about checking conditional configuration 171s 171s warning: unexpected `cfg` condition value: `async_std` 172s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 172s | 172s 242 | #[cfg(feature = "async_std")] 172s | ^^^^^^^^^^----------- 172s | | 172s | help: there is a expected value with a similar name: `"async-std"` 172s | 172s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 172s = help: consider adding `async_std` as a feature in `Cargo.toml` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition value: `async_std` 172s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 172s | 172s 245 | #[cfg(feature = "async_std")] 172s | ^^^^^^^^^^----------- 172s | | 172s | help: there is a expected value with a similar name: `"async-std"` 172s | 172s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 172s = help: consider adding `async_std` as a feature in `Cargo.toml` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition value: `async_std` 172s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 172s | 172s 248 | #[cfg(feature = "async_std")] 172s | ^^^^^^^^^^----------- 172s | | 172s | help: there is a expected value with a similar name: `"async-std"` 172s | 172s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 172s = help: consider adding `async_std` as a feature in `Cargo.toml` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition value: `async_std` 172s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 172s | 172s 251 | #[cfg(feature = "async_std")] 172s | ^^^^^^^^^^----------- 172s | | 172s | help: there is a expected value with a similar name: `"async-std"` 172s | 172s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 172s = help: consider adding `async_std` as a feature in `Cargo.toml` 172s = note: see for more information about checking conditional configuration 172s 172s warning: unexpected `cfg` condition value: `async_std` 172s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 172s | 172s 254 | #[cfg(feature = "async_std")] 172s | ^^^^^^^^^^----------- 172s | | 172s | help: there is a expected value with a similar name: `"async-std"` 172s | 172s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 172s = help: consider adding `async_std` as a feature in `Cargo.toml` 172s = note: see for more information about checking conditional configuration 172s 172s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 172s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps OUT_DIR=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.bRb4U4opGy/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=282c862af5919598 -C extra-filename=-282c862af5919598 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern downcast_rs=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rmeta --extern smallvec=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 173s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 173s warning: `rustix` (lib) generated 1 warning (1 duplicate) 173s Compiling wayland-server v0.31.1 (/usr/share/cargo/registry/wayland-server-0.31.1) 173s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.bRb4U4opGy/target/debug/deps rustc --crate-name wayland_server --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=daafce26abe8ed36 -C extra-filename=-daafce26abe8ed36 --out-dir /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.bRb4U4opGy/target/debug/deps --extern bitflags=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rlib --extern downcast_rs=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rlib --extern io_lifetimes=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rlib --extern rustix=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/librustix-58cd9adcf2d22c26.rlib --extern wayland_backend=/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-282c862af5919598.rlib --extern wayland_scanner=/tmp/tmp.bRb4U4opGy/target/debug/deps/libwayland_scanner-c58251dd28084e37.so -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wayland-server-0.31.1=/usr/share/cargo/registry/wayland-server-0.31.1 --remap-path-prefix /tmp/tmp.bRb4U4opGy/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 174s warning: `wayland-server` (lib test) generated 1 warning (1 duplicate) 174s Finished `test` profile [unoptimized + debuginfo] target(s) in 9.99s 174s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.bRb4U4opGy/target/s390x-unknown-linux-gnu/debug/deps/wayland_server-daafce26abe8ed36` 174s 174s running 2 tests 174s test global::tests::smoke_test_dispatch_global_dispatch_generics ... ok 174s test global::tests::smoke_test_dispatch_global_dispatch ... ok 174s 174s test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 174s 174s /tmp/autopkgtest.XqDUey/wrapper.sh: checking for leaked background processes... 174s /tmp/autopkgtest.XqDUey/wrapper.sh: waiting for tee/cat subprocesses... 174s /tmp/autopkgtest.XqDUey/wrapper.sh: cleaning up... 174s /tmp/autopkgtest.XqDUey/wrapper.sh: Exit status: 0 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest [07:34:22]: test librust-wayland-server-dev:: -----------------------] 174s autopkgtest: DBG: testbed executing test finished with exit status 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3A-stdout /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3A-stdout 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3A-stderr /tmp/autopkgtest-work.ntu7tfso/out/librust-wayland-server-dev%3A-stderr 175s autopkgtest: DBG: got reply from testbed: ok 175s librust-wayland-server-dev: PASS 175s autopkgtest [07:34:23]: test librust-wayland-server-dev:: - - - - - - - - - - results - - - - - - - - - - 175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqDUey/librust-wayland-server-dev%3A-artifacts/ /tmp/autopkgtest-work.ntu7tfso/out/artifacts/ 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.XqDUey/librust-wayland-server-dev:-artifacts', '/tmp/autopkgtest.XqDUey/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 175s autopkgtest [07:34:23]: @@@@@@@@@@@@@@@@@@@@ summary 175s rust-wayland-server:@ PASS 175s librust-wayland-server-dev:default PASS 175s librust-wayland-server-dev:log PASS 175s librust-wayland-server-dev: PASS 175s autopkgtest: DBG: testbed stop 175s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.XqDUey 175s autopkgtest: DBG: sending command to testbed: close 192s autopkgtest: DBG: got reply from testbed: ok 192s autopkgtest: DBG: sending command to testbed: quit 192s nova [W] Using flock in prodstack6-s390x 192s Creating nova instance adt-plucky-s390x-rust-wayland-server-20250210-073128-juju-7f2275-prod-proposed-migration-environment-15-8ebb7958-16bf-4898-b911-4b3fbdd2944f from image adt/ubuntu-plucky-s390x-server-20250210.img (UUID 9df4a1a3-165e-45c8-90e9-262841cdf4ea)... 192s nova [W] Timed out waiting for 420a0e1d-8f5e-4770-a32c-e23af2690b57 to get deleted.