Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Wasm Linux support wasm32-wali #4244

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Added libc-test for wasm32-wali-linux-musl target; currently missing …

bfd5c5c
Select commit
Loading
Failed to load commit list.
Open

feat: Wasm Linux support wasm32-wali #4244

Added libc-test for wasm32-wali-linux-musl target; currently missing …
bfd5c5c
Select commit
Loading
Failed to load commit list.
Cirrus CI / nightly freebsd-15 x86_64 failed Jan 16, 2025 in 58s

Task Summary

Instruction test failed in 00:37

Details

✅ 00:08 clone
✅ 00:11 setup
❌ 00:37 test

error: extern declarations without an explicit ABI are deprecated
    --> src/macros.rs:260:36
     |
260  |                   pub $($constness)* extern fn $i($($arg: $argty),*) -> $ret
     |                                      ^^^^^^ help: explicitly specify the C ABI: `extern "C"`
     |
    ::: src/unix/bsd/freebsdlike/freebsd/mod.rs:4962:1
     |
4962 | / safe_f! {
4963 | |     pub {const} fn WIFSIGNALED(status: c_int) -> bool {
4964 | |         (status & 0o177) != 0o177 && (status & 0o177) != 0 && status != 0x13
...    |
5006 | | }
     | |_- in this macro invocation
     |
     = note: this error originates in the macro `safe_f` (in Nightly builds, run with -Z macro-backtrace for more info)

error: extern declarations without an explicit ABI are deprecated
   --> src/macros.rs:260:36
    |
260 |                   pub $($constness)* extern fn $i($($arg: $argty),*) -> $ret
    |                                      ^^^^^^ help: explicitly specify the C ABI: `extern "C"`
    |
   ::: src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs:510:1
    |
510 | / safe_f! {
511 | |     pub {const} fn makedev(major: c_uint, minor: c_uint) -> crate::dev_t {
512 | |         let major = major as crate::dev_t;
513 | |         let minor = minor as crate::dev_t;
...   |
521 | | }
    | |_- in this macro invocation
    |
    = note: this error originates in the macro `safe_f` (in Nightly builds, run with -Z macro-backtrace for more info)

error: extern declarations without an explicit ABI are deprecated
   --> src/macros.rs:246:43
    |
246 |                   pub $($constness)* unsafe extern fn $i($($arg: $argty),*) -> $ret
    |                                             ^^^^^^ help: explicitly specify the C ABI: `extern "C"`
    |
   ::: src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs:523:1
    |
523 | / f! {
524 | |     pub fn major(dev: crate::dev_t) -> c_int {
525 | |         (((dev >> 32) & 0xffffff00) | ((dev >> 8) & 0xff)) as c_int
...   |
531 | | }
    | |_- in this macro invocation
    |
    = note: this error originates in the macro `f` (in Nightly builds, run with -Z macro-backtrace for more info)

error: could not compile `libc` (lib) due to 8 previous errors
warning: build failed, waiting for other jobs to finish...

Exit status: 101