-
Notifications
You must be signed in to change notification settings - Fork 128
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
Version 0.5.0
does not build: libc
dependency needs to be updated.
#316
Comments
I get the same compilation error as well. |
@KreAch3R I noticed that the original issue comes up on x86 - are you on x86 as well? I'm on ARM and it seems to work fine (with a warning): ubuntu@ubuntu:~/Documents/projects/tokio-uring$ cargo clean
Removed 3037 files, 1020.5MiB total
ubuntu@ubuntu:~/Documents/projects/tokio-uring$ uname -m
aarch64
ubuntu@ubuntu:~/Documents/projects/tokio-uring$ cargo build
Compiling libc v0.2.169
Compiling autocfg v1.4.0
Compiling io-uring v0.6.4
Compiling pin-project-lite v0.2.15
Compiling pin-utils v0.1.0
Compiling futures-task v0.3.31
Compiling futures-core v0.3.31
Compiling bitflags v1.3.2
Compiling slab v0.4.9
Compiling futures-util v0.3.31
Compiling mio v1.0.3
Compiling socket2 v0.5.8
Compiling socket2 v0.4.10
Compiling tokio v1.42.0
Compiling tokio-uring v0.5.0 (/home/ubuntu/Documents/projects/tokio-uring)
warning: elided lifetime has a name
--> src/fs/create_dir_all.rs:127:78
|
127 | fn recurse_create_dir_all<'a>(&'a self, path: &'a Path) -> LocalBoxFuture<io::Result<()>> {
| -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a`
|
= note: `#[warn(elided_named_lifetimes)]` on by default
warning: `tokio-uring` (lib) generated 1 warning
Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.11s
ubuntu@ubuntu:~/Documents/projects/tokio-uring$ What does |
Well, IIRC, I got this error when trying to compile https://github.com/manio/aa-proxy-rs for raspberry pi armhf 32bit (raspbian buster) using my Debian x64 PC. This is the output you requested:
I managed to compile it statically using another way:
Check the README |
Version
0.5.0
does not build:libc
dependency needs to be updated.My system:
Build failure output:
The text was updated successfully, but these errors were encountered: