Re: Python recompile (Posting On Python-List Prohibited)

Lawrence D'Oliveiro <[email protected]>
Newsgroups comp.lang.python
Organization A noiseless patient Spider
Message-ID <[email protected]>
On Sun, 2 Mar 2025 14:35:08 -0000 (UTC), The Doctor wrote:

> How do I compensate for
> 
> ld: error: relocation R_X86_64_32 cannot be used against symbol '_PyRuntime'; recompile with -fPIC
>>>> defined in /usr/local/lib/libpython3.13.a(pylifecycle.o)
>>>> referenced by thread_pthread.h:138 (Python/thread_pthread.h:138)
>>>>               thread.o:(PyThread_init_thread) in archive /usr/local/lib/libpython3.13.a

[etc]

So, at a wild guess, it looks like the symbol “_PyRuntime” is defined
in one module (pylifecycle.o) which is compiled non-PIC, and is being
referenced in another module (thread.o) which was compiled as PIC. Or
maybe it’s the other way round.

How you managed to end up with inconsistent flags for different parts
of your build, I don’t know. But that’s what needs to be fixed.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.