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

The binary doesn't like other linux distro #292

Open
mio-19 opened this issue Sep 8, 2024 · 1 comment
Open

The binary doesn't like other linux distro #292

mio-19 opened this issue Sep 8, 2024 · 1 comment

Comments

@mio-19
Copy link

mio-19 commented Sep 8, 2024

I assume that it is built on Ubuntu and only work on Ubuntu or similar distros.
I am on Archlinux. I installed llvm17 from aur. My llvm17 is in /usr/lib/llvm17/ so I created symlinks

sudo ln -s /usr/lib/llvm17/ /usr/lib/llvm-17
$ ./sn-bindgen-x86_64-pc-linux
./sn-bindgen-x86_64-pc-linux: error while loading shared libraries: libclang-17.so.17: cannot open shared object file: No such file or directory

I saw this so I created symlink from /usr/lib/llvm-17/lib/libclang.so.17 to /usr/lib/llvm-17/lib/libclang-17.so.17

sudo ln -s /usr/lib/llvm-17/lib/libclang.so.17 /usr/lib/llvm-17/lib/libclang-17.so.17
$ ./sn-bindgen-x86_64-pc-linux
./sn-bindgen-x86_64-pc-linux: error while loading shared libraries: libclang-17.so.17: cannot open shared object file: No such file or directory

Finally I successfully run the binary with LD_LIBRARY_PATH

$ LD_LIBRARY_PATH=/usr/lib/llvm-17/lib/ ./sn-bindgen-x86_64-pc-linux
Missing expected flag --package!
Missing expected flag --header!

Usage: bindgen --package <string> --header <string> [--scala] [--c] [--link-name <string>] [--c-import <string>]... [--clang-include <string>]... [--clang <string>]... [--quiet] [--trace | --info | --warning | --error] [--llvm-bin <string> | --clang-path <string> | --no-system] [--render.no-constructor <string>] [--render.opaque-structs <string>] [--render.no-comments] [--render.no-location] [--render.external-path <string>]... [--render.external-name <string>]... [--out <string>] [--multi-file] [--export] [--exclude-system-path <string>]... [--flavour <string>]
@keynmol
Copy link
Contributor

keynmol commented Sep 24, 2024

That is unfortunatey but I guess expected.

The true fix would be to provide a statically linked binary: #13 but the process itself has a lot of moving parts and I haven't even started yet.

In the interim, I'm not familiar at all with how binaries are distributed for various linux distros without having to provide lots of os-specific binaries. If you have any resources to link on how other people do it, I will consider doing the work to make it more portable.

I guess one can attempt to modify the rpath (or lpath?) of the binary after it's already built to provide more fallback options..

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