D: [iurt_root_command] chroot Building target platforms: x86_64 Building for target x86_64 sh: line 4: [: -j8: integer expected Installing /home/pterjan/rpmbuild/SRPMS/rust-vec_map-0.8.2-1.mga10.src.rpm Executing(%mkbuilddir): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.JbsBzn sh: line 4: [: -j8: integer expected Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.GT7GMP + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + rm -rf vec_map-0.8.2 + /usr/lib/rpm/rpmuncompress -x /home/pterjan/rpmbuild/SOURCES/vec_map-0.8.2.crate + STATUS=0 + '[' 0 -ne 0 ']' + cd vec_map-0.8.2 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + set -euo pipefail + /usr/bin/mkdir -p target/rpm + /usr/bin/ln -s rpm target/release + /usr/bin/rm -rf .cargo/ + /usr/bin/mkdir -p .cargo + cat + cat + /usr/bin/rm -f Cargo.lock + /usr/bin/rm -f Cargo.toml.orig + RPM_EC=0 ++ jobs -p + exit 0 sh: line 4: [: -j8: integer expected Executing(%generate_buildrequires): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.yxTPdE + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + cd vec_map-0.8.2 + /usr/bin/cargo2rpm --path Cargo.toml buildrequires --with-check + RPM_EC=0 ++ jobs -p + exit 0 sh: line 4: [: -j8: integer expected Executing(%build): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.whlsFK + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd vec_map-0.8.2 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo build -j48 -Z avoid-dev-deps --profile rpm warning: no edition set: defaulting to the 2015 edition while the latest is 2024 Compiling vec_map v0.8.2 (/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2) Running `/usr/bin/rustc --crate-name vec_map --edition=2015 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("eders", "serde"))' -C metadata=d50fbba2284e3926 -C extra-filename=-82626d373486f5e3 --out-dir /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: unnecessary parentheses around type --> src/lib.rs:1010:34 | 1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 1010 - fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } 1010 + fn next(&mut self) -> Option<&'a V> { self.iter.next().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1017:39 | 1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1017 - fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } 1017 + fn next_back(&mut self) -> Option<&'a V> { self.iter.next_back().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1023:34 | 1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1023 - fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } 1023 + fn next(&mut self) -> Option<&'a mut V> { self.iter_mut.next().map(|e| e.1) } | thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fb0fa3e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fb0f9c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fb0fa3d6863 - 3: 0x7fb0fa3e2802 - 4: 0x7fb0fa3e515a - 5: 0x7fb0fa3e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fb0f736ebb8 - 7: 0x7fb0fa3e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fb0fa3e56ea - 9: 0x7fb0fa3e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fb0fa3e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fb0f6d2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fb0f6d2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fb0f9d49361 - 14: 0x7fb0f9d95825 - ::codegen_crate 15: 0x7fb0f9f980ff - ::codegen_and_build_linker 16: 0x7fb0f9e5031f - 17: 0x7fb0f9e4c809 - 18: 0x7fb0f9e4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fb0f9e5395c - 20: 0x7fb0fa3ea99b - 21: 0x7fb0f64a1f6f - start_thread 22: 0x7fb0f651f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-25T17_18_18-3454328.txt` to your bug report note: compiler flags: --crate-type lib -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 -C opt-level=3 -C debuginfo=2 -C codegen-units=1 -C strip=none note: some of the compiler flags provided by cargo are hidden query stack during panic: end of query stack warning: `vec_map` (lib) generated 3 warnings (run `cargo fix --lib -p vec_map` to apply 3 suggestions) error: could not compile `vec_map` (lib); 3 warnings emitted Caused by: process didn't exit successfully: `/usr/bin/rustc --crate-name vec_map --edition=2015 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("eders", "serde"))' -C metadata=d50fbba2284e3926 -C extra-filename=-82626d373486f5e3 --out-dir /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` (exit status: 101) error: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.whlsFK (%build) RPM build errors: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.whlsFK (%build) I: [iurt_root_command] ERROR: chroot