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

Fix build on arm64 linux. #97

Merged
merged 1 commit into from
Oct 7, 2024

Commits on Oct 2, 2024

  1. Fix build on arm64 linux.

    On arm64 linux, c_char is u8. CStr::from_ptr is documented to take an
    i8, but this is not accurate (see
    rust-lang/rust#113735); instead, it takes
    c_char, which is sometimes but not always the same. One time it is
    different is on aarch64 Linux, so without this commit, cubeb-rs fails to
    build there.
    mutexlox-signal committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    55d2c8b View commit details
    Browse the repository at this point in the history