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
ldd ckb linux-vdso.so.1 (0x0000ffff9e9c8000) libstdc++.so.6 => /lib/aarch64-linux-gnu/libstdc++.so.6 (0x0000ffff9c9e0000) libssl.so.1.1 => not found libcrypto.so.1.1 => not found libgcc_s.so.1 => /lib/aarch64-linux-gnu/libgcc_s.so.1 (0x0000ffff9c9b0000) libpthread.so.0 => /lib/aarch64-linux-gnu/libpthread.so.0 (0x0000ffff9c990000) libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x0000ffff9c8f0000) libdl.so.2 => /lib/aarch64-linux-gnu/libdl.so.2 (0x0000ffff9c8d0000) libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000ffff9c720000) /lib/ld-linux-aarch64.so.1 (0x0000ffff9e98f000)
The text was updated successfully, but these errors were encountered:
I will raise the priority level for "statically linking openssl 3" task. Pull Request: #4179 Testing: #4190
The static linking of CKB on Linux and Windows was successful, but it failed on MacOS, possibly due to sse2 instructions.
sse2
I am attempting to disable sse2 on MacOS.
Update on 2023-12-11 Mon: The issue of encountering illegal instructions by make prod is not related to the sse2 instructions, the problem is related to ckb-rocksdb.
make prod
ckb-rocksdb
That won't happen on make prod_portable's build.
make prod_portable
Sorry, something went wrong.
@jiangxianliang007 can you confirm this in v0.114.0?
ckb_v0.114.0_aarch64-unknown-linux-gnu$ ldd ckb linux-vdso.so.1 (0x0000ffff824c3000) libstdc++.so.6 => /lib/aarch64-linux-gnu/libstdc++.so.6 (0x0000ffff7ff40000) libgcc_s.so.1 => /lib/aarch64-linux-gnu/libgcc_s.so.1 (0x0000ffff7ff10000) libpthread.so.0 => /lib/aarch64-linux-gnu/libpthread.so.0 (0x0000ffff7fef0000) libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x0000ffff7fe50000) libdl.so.2 => /lib/aarch64-linux-gnu/libdl.so.2 (0x0000ffff7fe30000) libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000ffff7fc80000) /lib/ld-linux-aarch64.so.1 (0x0000ffff8248a000)
v0.114.0 is normal.
eval-exec
No branches or pull requests
Bug Report
Current Behavior
Expected Behavior
Environment
Additional context/Screenshots
The text was updated successfully, but these errors were encountered: