We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hermes 1.12.0 aarch64 binaries depend on openssl v1.1 which has been removed from modern distributions.
hermes 1.12.0
download the hermes 1.12.0 aarch binary and try to run it in a modern ubuntu distribution.
hermes 1.12.0 runs out of the box with modern ubuntu.
here's the (good) x86_64 binary:
# tar -zxvf hermes-v1.12.0-x86_64-unknown-linux-gnu.tar.gz hermes # ldd hermes linux-vdso.so.1 (0x00007ffc948ca000) libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x00007ec3229ae000) <-- good libcrypto.so.3 => /lib/x86_64-linux-gnu/libcrypto.so.3 (0x00007ec319200000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007ec322980000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007ec319717000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007ec318e00000) /lib64/ld-linux-x86-64.so.2 (0x00007ec322a5f000)
and here's the aarch64 release:
# tar -zxvf hermes-v1.12.0-aarch64-unknown-linux-gnu.tar.gz hermes-v1.12.0-aarch64-unknown-linux-gnu # ldd hermes-v1.12.0-aarch64-unknown-linux-gnu linux-vdso.so.1 (0x0000e6f99330c000) libstdc++.so.6 => /lib/aarch64-linux-gnu/libstdc++.so.6 (0x0000e6f989a00000) libssl.so.1.1 => not found <-- not good, should be libssl.so.3 libcrypto.so.1.1 => not found libgcc_s.so.1 => /lib/aarch64-linux-gnu/libgcc_s.so.1 (0x0000e6f993290000) libpthread.so.0 => /lib/aarch64-linux-gnu/libpthread.so.0 (0x0000e6f989dd0000) libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x0000e6f989d20000) libdl.so.2 => /lib/aarch64-linux-gnu/libdl.so.2 (0x0000e6f989cf0000) libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000e6f989840000) /lib/ld-linux-aarch64.so.1 (0x0000e6f9932cf000)
The text was updated successfully, but these errors were encountered:
Thanks for pointing that out, we'll fix it in the next patch release.
Sorry, something went wrong.
No branches or pull requests
Summary of Bug
hermes 1.12.0 aarch64 binaries depend on openssl v1.1 which has been removed from modern distributions.
Version
hermes 1.12.0
Steps to Reproduce
download the hermes 1.12.0 aarch binary and try to run it in a modern ubuntu distribution.
Acceptance Criteria
hermes 1.12.0 runs out of the box with modern ubuntu.
here's the (good) x86_64 binary:
and here's the aarch64 release:
For Admin Use
The text was updated successfully, but these errors were encountered: