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

    From Lawrence D'Oliveiro@21:1/5 to The Doctor on Tue Mar 4 05:46:49 2025
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)