-
-
Notifications
You must be signed in to change notification settings - Fork 376
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
Prebuilt binaries require very recent glibc (2.29 released 2019-01) #508
Comments
Thank you for reporting this. That could be due to the Ubuntu 18.04 => 20.04 change in our CI runners. I had a similar problem in another project of mine which we actually solved by "cross"-compiling using https://github.com/cross-rs/cross, because their Docker images use quite old versions of libc (maybe on purpose?): 2.15 for x86_64-unknown-linux-gnu (https://github.com/cross-rs/cross#supported-targets) |
We do this in order to link against older versions of glibc. closes #508
We do this in order to link against older versions of glibc. closes #508
Should be fixed in the new release. |
Hey @sharkdp how can I check what is the last version using |
I'm not sure I understand what you are asking |
I was asking which is the last hyperfine version using |
I don't know, sorry. You would have to download all and find out somehow (I think you can use some combination of |
Starting from hyperfine 1.13.0, there's suddenly a dependency on:
which is a very recent glibc version from 2019.
Can you relax that requirement?
Or possibly statically link musl libc?I missed that the musl libc version is statically linked.Version 1.12.0 used to only require glibc 2.18 (released 2013-08)
The text was updated successfully, but these errors were encountered: