Open Eugene-Usachev opened 7 months ago
this is the liburing build dir. Are you using git, or got the tarball from somewhere?
If you are using git, the git submodule
command should do. If not, you will have to get the liburing source yourself.
No. I just added glommio in Cargo.toml.
That /usr/local/
location of the cargo registry is super weird. Isn't that usually in the home directory? I suspect the problem is something weird within your Docker.
One workaround (if you are stuck on fixing) might be to clone liburing manually and point to it via the GLOMMIO_LIBURING_DIR
environment variable to bypass the submodule logic in build.rs.
I ran into this issue on a Debian 12 instance and it turned out the problem was that git
wasn't installed so the git submodule
command failed. @Eugene-Usachev can you double-check that git
is available?
I ran into this issue on a Debian 12 instance and it turned out the problem was that
git
wasn't installed so thegit submodule
command failed. @Eugene-Usachev can you double-check thatgit
is available?
I had the same issue. This fixed it for me.
installing git fixed it for me too
sudo apt install git-all
When I try to build my application I always get error message with text:
I tried to build it in Docker and got the same error.