Closed awunnenb closed 1 year ago
Why is the libfbclient needed when using rsfbclient::builder_pure_rust
Linux Debian: ./rsfbclient-test: error while loading shared libraries: libfbclient.so.2: cannot open shared object file: No such file or directory
Is it possible to use rsfbclient on the macOS Intel with pure_rust?
Error message when compiling: = note: ld: library not found for -llibfbclient clang: error: linker command failed with exit code 1
You need to disable the default features. Example:
rsfbclient = { version = "0.23.0", default_features = false, features = ["pure_rust"] }
thank you very much!!!
Why is the libfbclient needed when using rsfbclient::builder_pure_rust
Linux Debian: ./rsfbclient-test: error while loading shared libraries: libfbclient.so.2: cannot open shared object file: No such file or directory
Is it possible to use rsfbclient on the macOS Intel with pure_rust?
Error message when compiling: = note: ld: library not found for -llibfbclient clang: error: linker command failed with exit code 1