Hello, with python311, I'm working on probably the last package which needs to be bootstrapped for LoongArch before the port can be fully bootstrapped on OBS. Unfortunately, I'm currently stuck in the process as I'm struggling with the dynamic libraries which get installed into /usr/lib64/python3.11/lib-dynload/. On x86_64, the shared libraries were renamed to include the Python version as well as the target triplet in the filename. In my Debian unstable chroot, the shared libraries are built successfully, but their names don't contain any information generated by the dynlib() macro. Thus, I only got filenames like: /(...)/BUILDROOT/usr/lib64/python3.11/lib-dynload/math.cpython-311.so instead of: /(...)/BUILDROOT/usr/lib64/python3.11/lib-dynload/math.cpython-311.so I have tried finding the bits that are responsible for setting the filenames for the shared library files, but I can't find those. Does anyone have any idea how that voodoo mechanism works? Thanks, Adrian