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

hermes 1.12.0 aarch64 binaries depend on openssl 1.1 #4308

Open
5 tasks
gilkima opened this issue Feb 20, 2025 · 1 comment
Open
5 tasks

hermes 1.12.0 aarch64 binaries depend on openssl 1.1 #4308

gilkima opened this issue Feb 20, 2025 · 1 comment

Comments

@gilkima
Copy link

gilkima commented Feb 20, 2025

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:

# 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)

For Admin Use

  • Not duplicate issue
  • Appropriate labels applied
  • Appropriate milestone (priority) applied
  • Appropriate contributors tagged
  • Contributor assigned/self-assigned
@romac
Copy link
Member

romac commented Feb 22, 2025

Thanks for pointing that out, we'll fix it in the next patch release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants