pyston / pyston_v1

The previous version of Pyston, a faster implementation of the Python programming language. Please use this link for the new repository:
https://github.com/pyston/pyston/
4.89k stars 290 forks source link

need update libstdc++.so.6 in /usr/lib/x86_64-linux-gnu/ #23

Closed QuantumBear closed 10 years ago

QuantumBear commented 10 years ago

Need to replace libstdc++.so.6 in /usr/lib/x86_64-linux-gnu/ with the one we got during the gcc-4.8.2 build process. Change the softlink to libstdc++.so.6.18

yyuu commented 10 years ago

Setting LD_LIBRARY_PATH doesn't help?

# export LD_LIBRARY_PATH="/pyston_deps/gcc-4.8.2-install/lib64:$LD_LIBRARY_PATH"
QuantumBear commented 10 years ago

Sorry, I forgot the LD_LIBRARY_PATH.

kmod commented 10 years ago

Sorry, I had installed it globally and forgot about it. I don't like the idea of having to set LD_LIBRARY_PATH in order to run Pyston, so I updated the build system to link libstdc++ statically to sidestep the issue for now.