Skip to content

bsd: Add missing minherit system call

e6d6630
Select commit
Loading
Failed to load commit list.
Draft

bsd: Add missing minherit system call #4849

bsd: Add missing minherit system call
e6d6630
Select commit
Loading
Failed to load commit list.
Cirrus CI / nightly freebsd-15 i686 failed Dec 4, 2025 in 1m 26s

Task Summary

Instruction test failed in 01:00

Details

✅ 00:09 clone
✅ 00:14 setup
❌ 01:00 test

   Compiling askama v0.14.0
   Compiling cfg-if v1.0.4
   Compiling aho-corasick v1.1.3
   Compiling regex-syntax v0.8.6
   Compiling regex-automata v0.4.13
   Compiling unicode-width v0.2.1
   Compiling anstyle v1.0.11
   Compiling annotate-snippets v0.11.5
   Compiling regex v1.12.2
   Compiling glob v0.3.3
   Compiling libc v0.2.177
   Compiling libc-test v0.1.0 (/tmp/cirrus-ci-build/libc-test)
   Compiling ctest-test v0.1.0 (/tmp/cirrus-ci-build/ctest-test)
   Compiling getrandom v0.3.3
   Compiling rustix v1.1.2
   Compiling errno v0.3.14
   Compiling bitflags v2.9.4
   Compiling once_cell v1.21.3
   Compiling fastrand v2.3.0
   Compiling diff v0.1.13
   Compiling yansi v1.0.1
   Compiling tempfile v3.23.0
   Compiling pretty_assertions v1.4.1
error[E0432]: unresolved imports `libc::VM_INHERIT_COPY`, `libc::VM_INHERIT_DONATE_COPY`, `libc::VM_INHERIT_NONE`, `libc::VM_INHERIT_SHARE`
    --> /tmp/cirrus-ci-build/target/i686-unknown-freebsd/debug/build/libc-test-68d52882cd56b196/out/semver.rs:2619:5
     |
2619 |     VM_INHERIT_COPY,
     |     ^^^^^^^^^^^^^^^ no `VM_INHERIT_COPY` in the root
2620 |     VM_INHERIT_DONATE_COPY,
     |     ^^^^^^^^^^^^^^^^^^^^^^ no `VM_INHERIT_DONATE_COPY` in the root
2621 |     VM_INHERIT_NONE,
     |     ^^^^^^^^^^^^^^^ no `VM_INHERIT_NONE` in the root
2622 |     VM_INHERIT_SHARE,
     |     ^^^^^^^^^^^^^^^^ no `VM_INHERIT_SHARE` in the root
     |
help: a similar name exists in the module
     |
2619 -     VM_INHERIT_COPY,
2619 +     INHERIT_COPY,
     |
help: a similar name exists in the module
     |
2621 -     VM_INHERIT_NONE,
2621 +     INHERIT_NONE,
     |
help: a similar name exists in the module
     |
2622 -     VM_INHERIT_SHARE,
2622 +     INHERIT_SHARE,
     |

For more information about this error, try `rustc --explain E0432`.
error: could not compile `libc-test` (test "semver") due to 1 previous error
warning: build failed, waiting for other jobs to finish...

Exit status: 101