* Getting build dependencies for wheel...
running egg_info
writing pyrsistent.egg-info/PKG-INFO
writing dependency_links to pyrsistent.egg-info/dependency_links.txt
writing requirements to pyrsistent.egg-info/requires.txt
writing top-level names to pyrsistent.egg-info/top_level.txt
listing git files failed - pretending there aren't any
reading manifest file 'pyrsistent.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENCE.mit'
writing manifest file 'pyrsistent.egg-info/SOURCES.txt'
* Building wheel...
running bdist_wheel
running build
running build_py
creating build
creating build/lib.-cpython-311
copying _pyrsistent_version.py -> build/lib.-cpython-311
creating build/lib.-cpython-311/pyrsistent
copying pyrsistent/_helpers.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_checked_types.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pvector.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_toolz.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pbag.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_transformations.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_field_common.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pclass.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pset.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pmap.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_precord.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_pdeque.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_immutable.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/__init__.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_plist.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/_compat.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/typing.py -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/py.typed -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/__init__.pyi -> build/lib.-cpython-311/pyrsistent
copying pyrsistent/typing.pyi -> build/lib.-cpython-311/pyrsistent
warning: build_py: byte-compiling is disabled, skipping.

running build_ext
building 'pvectorc' extension
creating build/temp.-cpython-311
mips64-openwrt-linux-musl-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -O2 -I/builder/shared-workdir/build/sdk/staging_dir/host/include -I/builder/shared-workdir/build/sdk/staging_dir/hostpkg/include -I/builder/shared-workdir/build/sdk/staging_dir/target-mips64_octeonplus_64_musl/host/include -I/builder/shared-workdir/build/sdk/staging_dir/host/include/e2fsprogs -O2 -I/builder/shared-workdir/build/sdk/staging_dir/host/include -I/builder/shared-workdir/build/sdk/staging_dir/hostpkg/include -I/builder/shared-workdir/build/sdk/staging_dir/target-mips64_octeonplus_64_musl/host/include -I/builder/shared-workdir/build/sdk/staging_dir/host/include/e2fsprogs -Os -pipe -mno-branch-likely -march=octeon+ -mabi=64 -fno-caller-saves -fno-plt -fhonour-copts -msoft-float -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mips64_octeonplus_64_musl/pypi/pyrsistent-0.16.0=pyrsistent-0.16.0 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/usr/include -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/include/fortify -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/include -I/builder/shared-workdir/build/sdk/staging_dir/target-mips64_octeonplus_64_musl/usr/include/python3.11 -fPIC -I/builder/shared-workdir/build/sdk/staging_dir/hostpkg/include/python3.11 -c pvectorcmodule.c -o build/temp.-cpython-311/pvectorcmodule.o
pvectorcmodule.c: In function 'nodeFor':
pvectorcmodule.c:152:21: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
  152 |   if((i >= 0) && (i < self->count)) {
      |                     ^
pvectorcmodule.c:153:10: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
  153 |     if(i >= TAIL_OFF(self)) {
      |          ^~
pvectorcmodule.c: In function 'PVector_dealloc':
pvectorcmodule.c:235:3: warning: 'UsingDeprecatedTrashcanMacro' is deprecated [-Wdeprecated-declarations]
  235 |   Py_TRASHCAN_SAFE_BEGIN(self);
      |   ^~~~~~~~~~~~~~~~~~~~~~
pvectorcmodule.c: In function 'PVector_repeat':
pvectorcmodule.c:428:17: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
  428 |       for(j=0; j<self->count; j++) {
      |                 ^
pvectorcmodule.c: In function 'extendWithItem':
pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
  145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift))
      |                                                    ^
pvectorcmodule.c:769:8: note: in expansion of macro 'ROOT_NODE_FULL'
  769 |     if(ROOT_NODE_FULL(newVec)) {
      |        ^~~~~~~~~~~~~~
pvectorcmodule.c: In function 'PVector_append':
pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
  145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift))
      |                                                    ^
pvectorcmodule.c:919:6: note: in expansion of macro 'ROOT_NODE_FULL'
  919 |   if(ROOT_NODE_FULL(self)) {
      |      ^~~~~~~~~~~~~~
pvectorcmodule.c: In function 'PVectorEvolver_dealloc':
pvectorcmodule.c:1317:3: warning: 'UsingDeprecatedTrashcanMacro' is deprecated [-Wdeprecated-declarations]
 1317 |   Py_TRASHCAN_SAFE_BEGIN(self);
      |   ^~~~~~~~~~~~~~~~~~~~~~
mips64-openwrt-linux-musl-gcc -shared -L/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/usr/lib -L/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/lib -znow -zrelro -lpython3.11 -Os -pipe -mno-branch-likely -march=octeon+ -mabi=64 -fno-caller-saves -fno-plt -fhonour-copts -msoft-float -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mips64_octeonplus_64_musl/pypi/pyrsistent-0.16.0=pyrsistent-0.16.0 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/usr/include -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/include/fortify -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/include -I/builder/shared-workdir/build/sdk/staging_dir/target-mips64_octeonplus_64_musl/usr/include/python3.11 build/temp.-cpython-311/pvectorcmodule.o -o build/lib.-cpython-311/pvectorc.cpython-311.so
/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/bin/../lib/gcc/mips64-openwrt-linux-musl/12.3.0/../../../../mips64-openwrt-linux-musl/bin/ld: cannot find -lpython3.11: No such file or directory
collect2: error: ld returned 1 exit status
command '/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips64_octeonplus_64_gcc-12.3.0_musl/bin/mips64-openwrt-linux-musl-gcc' failed with exit code 1

********************************************************************************
WARNING: Could not build the pvectorc extension module.
         Pyrsistent will still work but performance may be degraded.
         The output above this warning shows how the compilation failed.
********************************************************************************
installing to build/bdist./wheel
running install
running install_lib
creating build/bdist.
creating build/bdist./wheel
copying build/lib.-cpython-311/_pyrsistent_version.py -> build/bdist./wheel
creating build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_helpers.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_checked_types.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/typing.pyi -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pvector.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/__init__.pyi -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_toolz.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pbag.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_transformations.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_field_common.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pclass.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pset.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pmap.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_precord.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_pdeque.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_immutable.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/__init__.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/py.typed -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_plist.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/_compat.py -> build/bdist./wheel/pyrsistent
copying build/lib.-cpython-311/pyrsistent/typing.py -> build/bdist./wheel/pyrsistent
warning: install_lib: byte-compiling is disabled, skipping.

running install_egg_info
running egg_info
writing pyrsistent.egg-info/PKG-INFO
writing dependency_links to pyrsistent.egg-info/dependency_links.txt
writing requirements to pyrsistent.egg-info/requires.txt
writing top-level names to pyrsistent.egg-info/top_level.txt
listing git files failed - pretending there aren't any
reading manifest file 'pyrsistent.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENCE.mit'
writing manifest file 'pyrsistent.egg-info/SOURCES.txt'
Copying pyrsistent.egg-info to build/bdist./wheel/pyrsistent-0.16.0-py3.11.egg-info
running install_scripts
Traceback (most recent call last):
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/pyproject_hooks/_in_process/_in_process.py", line 353, in <module>
    main()
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/pyproject_hooks/_in_process/_in_process.py", line 335, in main
    json_out['return_val'] = hook(**hook_input['kwargs'])
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/pyproject_hooks/_in_process/_in_process.py", line 251, in build_wheel
    return _build_backend().build_wheel(wheel_directory, config_settings,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/build_meta.py", line 412, in build_wheel
    return self._build_with_temp_dir(['bdist_wheel'], '.whl',
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/build_meta.py", line 397, in _build_with_temp_dir
    self.run_setup()
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/build_meta.py", line 484, in run_setup
    self).run_setup(setup_script=setup_script)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/build_meta.py", line 335, in run_setup
    exec(code, locals())
  File "<string>", line 52, in <module>
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/__init__.py", line 87, in setup
    return distutils.core.setup(**attrs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 185, in setup
    return run_commands(dist)
           ^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/_distutils/core.py", line 201, in run_commands
    dist.run_commands()
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 968, in run_commands
    self.run_command(cmd)
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/dist.py", line 1217, in run_command
    super().run_command(command)
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/setuptools/_distutils/dist.py", line 987, in run_command
    cmd_obj.run()
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/bdist_wheel.py", line 380, in run
    impl_tag, abi_tag, plat_tag = self.get_tag()
                                  ^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/bdist_wheel.py", line 326, in get_tag
    supported_tags = [
                     ^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/bdist_wheel.py", line 326, in <listcomp>
    supported_tags = [
                     ^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/vendored/packaging/tags.py", line 536, in sys_tags
    yield from cpython_tags(warn=warn)
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/vendored/packaging/tags.py", line 211, in cpython_tags
    platforms = list(platforms or platform_tags())
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builder/shared-workdir/build/sdk/staging_dir/hostpkg/lib/python3.11/site-packages/wheel/vendored/packaging/tags.py", line 477, in _linux_platforms
    _, arch = linux.split("_", 1)
    ^^^^^^^
ValueError: not enough values to unpack (expected 2, got 1)

ERROR Backend subprocess exited when trying to invoke build_wheel
make[3]: *** [Makefile:44: /builder/shared-workdir/build/sdk/build_dir/target-mips64_octeonplus_64_musl/pypi/pyrsistent-0.16.0/.built] Error 1
time: package/feeds/packages/python-pyrsistent/compile#2.15#0.40#12.83