Martin v. Löwis enlightened us with:
> No. You also need to provide static versions of all system
> libraries.
You can also ship the required .so files along with the program, and
set LD_LIBRARY_PATH to include the directory in which you stored those
files. This can be easily done by a shell scrip
mrstephengross wrote:
> I want to make sure that my native executable is entirely standalone.
> That is, it should have no dynamic linking. I've read through a number
> of posts on the subject, and think I get it. In order to make this
> work, I need to do two things:
>
> (1) Recompile libpythonXX
I'm working with the freeze utility, and I'm trying to learn the
basics. For the most part, I think I understand how it works. I have a
question about modules, though.
I want to make sure that my native executable is entirely standalone.
That is, it should have no dynamic linking. I've read throug