I was trying to create build wheels for musllinux_1_1_x86_64
i used docker image quay.io/pypa/musllinux_1_1_x86_64
followed instructions in https://github.com/pypa/manylinux/tree/main?tab=readme-ov-file
and tried building image with demo application in https://github.com/pypa/python-manylinux-demo
command: auditwheel repair –plat=musllinux_1_1_x86_64 pyexample-1.5.0-cp36-cp36m-linux_x86_64.whl
/io/dist # auditwheel repair pyexample-1.5.0-cp36-cp36m-linux_x86_64.whl
INFO:auditwheel.main_repair:Repairing pyexample-1.5.0-cp36-cp36m-linux_x86_64.whl
INFO:auditwheel.main_repair:Repairing pyexample-1.5.0-cp36-cp36m-linux_x86_64.whl
Traceback (most recent call last):
File “/usr/local/bin/auditwheel”, line 8, in
sys.exit(main())
File “/usr/local/lib/python3.6/site-packages/auditwheel/main.py”, line 59, in main
rval = args.func(args, p)
File “/usr/local/lib/python3.6/site-packages/auditwheel/main_repair.py”, line 181, in execute
strip=args.STRIP,
File “/usr/local/lib/python3.6/site-packages/auditwheel/repair.py”, line 85, in repair_wheel
% soname
ValueError: Cannot repair wheel, because required library “libpthread.so.0” could not be located
I was building wheel for musllinux_1_1_x86_64, but auditwheel is looking for libpthread.so.0 and libc.so.6 libraires which will available once i install glibcc, is it the correct procedure for fixing the isssue, or will there be any other issue
user26495405 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.