dieter writes:
> Olaf Hering writes:
>> On Mon, Jul 28, Albert-Jan Roskam wrote:
>>> does this help: https://nixos.org/patchelf.html. It is not specific to
>>> Python, though.
>>
>> No, this does not help because its not about patching the result.
>> The questions is how to obtain the value wit
Olaf Hering writes:
> On Mon, Jul 28, Albert-Jan Roskam wrote:
>> does this help: https://nixos.org/patchelf.html. It is not specific to
>> Python, though.
>
> No, this does not help because its not about patching the result.
> The questions is how to obtain the value with should be patched into
On Mon, Jul 28, Albert-Jan Roskam wrote:
> does this help: https://nixos.org/patchelf.html. It is not specific to
> Python, though.
No, this does not help because its not about patching the result.
The questions is how to obtain the value with should be patched into the
result.
Looks like I hav
Olaf Hering writes:
> On Sat, Jul 26, dieter wrote:
>
>> The "binary" corresponds to a script. The script could have
>> a function "setup_path" which enhances "sys.path" as appropriate
>> and ensure that this function is called near its beginning.
>
> Yes, but how does it obtain the required valu
- Original Message -
> From: Olaf Hering
> To: dieter
> Cc: python-list@python.org
> Sent: Monday, July 28, 2014 9:57 AM
> Subject: Re: rpath alike feature for python scripts
>
> On Sat, Jul 26, dieter wrote:
>
>> The "binary" corresponds
On Sat, Jul 26, dieter wrote:
> The "binary" corresponds to a script. The script could have
> a function "setup_path" which enhances "sys.path" as appropriate
> and ensure that this function is called near its beginning.
Yes, but how does it obtain the required values? In other words, at
buildtim
Olaf Hering writes:
> ELF binaries have a concept of RPATH, that means the interpreter looks
> for libraries first in a list of directories provided by the binary
> before falling back to default system directories.
>
> Since python scripts also do some sort of library loading, but lack an
> RPAT
Hello,
ELF binaries have a concept of RPATH, that means the interpreter looks
for libraries first in a list of directories provided by the binary
before falling back to default system directories.
Since python scripts also do some sort of library loading, but lack an
RPATH like feature, I'm aski