refresh-bio / RECKONER

8 stars 1 forks source link

library version problem? #4

Open jwasmuth opened 6 years ago

jwasmuth commented 6 years ago

I get the following error when I use either the recompiled binaries or ones I make myself (gcc=5.2.0)

-bash-4.2$ ./reckoner ./reckoner: /lib64/libstdc++.so.6: version GLIBCXX_3.4.20' not found (required by ./reckoner) ./reckoner: /lib64/libstdc++.so.6: versionCXXABI_1.3.8' not found (required by ./reckoner) ./reckoner: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./reckoner)

Any advice welcome. Thanks

maciejdlugosz commented 6 years ago

As precompiled version is compiled statically, it should not require any external library ("ldd reckoner" command can confirm).

If you compile yourself, the output binaries can be run only on machine you compiled reckoner on. On the other machines it is typical to get such errors.

Please specify the OS you are compiling and running reckoner.