kivy / kivy-ios

Toolchain for compiling Python / Kivy / other libraries for iOS
https://kivy.org/docs/guide/packaging-ios.html
MIT License
776 stars 239 forks source link

Toolchain does not build with Xcode 15.4 #929

Closed SubdudedCrane651 closed 2 days ago

SubdudedCrane651 commented 4 months ago

Versions

Describe the bug Never successfully builds a kivy-ios project. It runs for a while and then has a STDERR message at the end that I don't know why.

To Reproduce toolchain build kivy python3 openssl

Expected behavior Have no errors and continue to do a toolchain create command to create the Xcode project.

Logs

`[DEBUG   ] ld: warning: -undefined dynamic_lookup is deprecated on iOS
[DEBUG   ] ld: warning: -undefined dynamic_lookup is deprecated on iOS
[DEBUG   ] ld: warning: -undefined dynamic_lookup is deprecated on iOS
[DEBUG   ] ld: warning: ignoring duplicate libraries: '-lm', '-lssl', '-lz'
[DEBUG   ] ld: warning: -undefined dynamic_lookup is deprecated on iOS
[DEBUG   ] ld: warning: ignoring duplicate libraries: '-lm', '-lssl', '-lz'
[DEBUG   ] ld: warning: search path './../Support/BZip2' not found
[DEBUG   ] ld: warning: search path './../Support/BZip2' not found
[DEBUG   ] ld: building for 'iOS', but linking in dylib (/opt/homebrew/Cellar/libb2/0.98.1/lib/libb2.1.dylib) built for 'macOS'
[DEBUG   ] ld: building for 'iOS', but linking in dylib (/opt/homebrew/Cellar/libb2/0.98.1/lib/libb2.1.dylib) built for 'macOS'
**[DEBUG   ] clang: error: linker command failed with exit code 1 (use -v to see invocation)clang: error: 
[DEBUG   ] linker command failed with exit code 1 (use -v to see invocation)**
[DEBUG   ] make: *** [Programs/_testembed] Error 1
[DEBUG   ] make: *** Waiting for unfinished jobs....
[DEBUG   ] make: *** [python.exe] Error 1
Exception in thread background thread for pid 66238:
Traceback (most recent call last):
  File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()
  File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_2: 

  RAN: /usr/bin/make -j8 CFLAGS=-O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

  STDOUT:
Makefile:2823: warning: overriding commands for target `Modules/expat/xmlparse.o'
Makefile:1031: warning: ignoring old commands for target `Modules/expat/xmlparse.o'
Makefile:2824: warning: overriding commands for target `Modules/expat/xmlrole.o'
Makefile:1034: warning: ignoring old commands for target `Modules/expat/xmlrole.o'
Makefile:2825: warning: overriding commands for target `Modules/expat/xmltok.o'
Makefile:1037: warning: ignoring old commands for target `Modules/expat/xmltok.o'
/var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmpxor94d3x -c -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Docum... (591657 more, please see e.stdout)

  STDERR:

Traceback (most recent call last):
  File "/Users/richard/Documents/Python/HelloWorld/.venv/bin/toolchain", line 8, in <module>
    sys.exit(main())
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 1670, in main
    ToolchainCL()
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 1407, in __init__
    getattr(self, args.command)()
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 1483, in build
    build_recipes(args.recipe, ctx)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 1231, in build_recipes
    recipe.execute()
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 758, in execute
    self.build_all()
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 78, in _cache_execution
    f(self, *args, **kwargs)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 858, in build_all
    self.build(plat)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 78, in _cache_execution
    f(self, *args, **kwargs)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 844, in build
    self.build_platform(plat)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/recipes/python3/__init__.py", line 117, in build_platform
    shprint(sh.make, self.ctx.concurrent_make, "CFLAGS={}".format(build_env["CFLAGS"]))
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/kivy_ios/toolchain.py", line 60, in shprint
    for line in cmd:
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 863, in next
    self.wait()
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 792, in wait
    self.handle_command_exit_code(exit_code)
  File "/Users/richard/Documents/Python/HelloWorld/.venv/lib/python3.9/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_2: 

  RAN: /usr/bin/make -j8 CFLAGS=-O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

  STDOUT:
Makefile:2823: warning: overriding commands for target `Modules/expat/xmlparse.o'
Makefile:1031: warning: ignoring old commands for target `Modules/expat/xmlparse.o'
Makefile:2824: warning: overriding commands for target `Modules/expat/xmlrole.o'
Makefile:1034: warning: ignoring old commands for target `Modules/expat/xmlrole.o'
Makefile:2825: warning: overriding commands for target `Modules/expat/xmltok.o'
Makefile:1037: warning: ignoring old commands for target `Modules/expat/xmltok.o'
/var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmpxor94d3x -c -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Docum... (591657 more, please see e.stdout)

  STDERR:`

Additional context Tried to downgrade Xcode unsuccessfully, always wanted to install upgrades.

tcaduser commented 4 months ago

Have you tried the "fix" suggested in Issue #901 and:

brew uninstall —ignore-dependencies libb2
SubdudedCrane651 commented 4 months ago

Have you tried the "fix" suggested in Issue #901 and:

brew uninstall —ignore-dependencies libb2

Tried that and no change, just to add I am using a M1 Mac for this

misl6 commented 4 months ago

Can you repost your logs of toolchain build python3 kivy after brew uninstall —ignore-dependencies libb2 ?

Please ensure everything is cleaned up via toolchain distclean before performing a new build.

DavyClk commented 3 months ago

it worked for me, thank you

Can you repost your logs of toolchain build python3 kivy after brew uninstall —ignore-dependencies libb2 ?

Please ensure everything is cleaned up via toolchain distclean before performing a new build.

SubdudedCrane651 commented 3 months ago

Hello,

Did that and it still does not work here is the partial log. Notice it starts off good but then gets errors. If you can figure it out please tell me I stated porting my project to net-maui from Microsoft where I was able to create an ipa file even got a developer membership. Very complicated but figured it out. Can only publish with dotnet where it is very slow.

5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_cursesmodule.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_cursesmodule.o

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building '_curses_panel' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_curses_panel.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_curses_panel.o

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_posixsubprocess.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_posixsubprocess.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building '_dbm' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -DUSE_NDBM -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_dbmmodule.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_dbmmodule.o

[DEBUG ] In file included from /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_cursesmodule.c:119:

[DEBUG ] ./Include/py_curses.h:36:10: fatal error: 'curses.h' file not found

[DEBUG ] #include

[DEBUG ] ^~~~~~

[DEBUG ] In file included from /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_curses_panel.c:15:

[DEBUG ] ./Include/py_curses.h:36:10: fatal error: 'curses.h' file not found

[DEBUG ] #include

[DEBUG ] ^~~~~~

[DEBUG ] 1 error generated.

[DEBUG ] 1 error generated.

[DEBUG ] building 'nis' extension

[DEBUG ] building '_lzma' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/nismodule.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/nismodule.o

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I/opt/homebrew/Cellar/xz/5.4.6/include -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_lzmamodule.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_lzmamodule.o

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_xxtestfuzz/_xxtestfuzz.o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_xxtestfuzz/fuzzer.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_xxtestfuzz.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building '_decimal' extension

[DEBUG ] creating build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_decimal

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -I./Modules/_decimal/libmpdec -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_decimal/_decimal.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_decimal/_decimal.o

[DEBUG ] /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/nismodule.c:19:10: fatal error: 'rpcsvc/yp_prot.h' file not found

[DEBUG ] #include <rpcsvc/yp_prot.h>

[DEBUG ] ^~~~~~

[DEBUG ] 1 error generated.

[DEBUG ] building '_multiprocessing' extension

[DEBUG ] creating build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Modules/_multiprocessing -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/multiprocessing.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/multiprocessing.o

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_dbmmodule.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_dbm.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building '_posixshmem' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Modules/_multiprocessing -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/posixshmem.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/posixshmem.o

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Modules/_multiprocessing -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/semaphore.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/semaphore.o

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/posixshmem.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_posixshmem.cpython-311-darwin.so

[DEBUG ] /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/semaphore.c:355:23: error: call to undeclared function 'sem_timedwait'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]

[DEBUG ] res = sem_timedwait(self->handle, &deadline);

[DEBUG ] ^

[DEBUG ] /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_multiprocessing/semaphore.c:355:23: note: did you mean 'sem_trywait'?

[DEBUG ] /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/include/sys/semaphore.h:58:5: note: 'sem_trywait' declared here

[DEBUG ] int sem_trywait(sem_t *);

[DEBUG ] ^

[DEBUG ] 1 error generated.

[DEBUG ] building '_uuid' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_uuidmodule.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_uuidmodule.o

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building 'xxlimited' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited.o

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_xxsubinterpretersmodule.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_xxsubinterpreters.cpython-311-darwin.so

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_lzmamodule.o -L/opt/homebrew/Cellar/xz/5.4.6/lib -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -llzma -o build/lib.ios-aarch64-3.11/_lzma.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] building 'xxlimited_35' extension

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I./Include -I. -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Include -I/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6 -c /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited_35.c -o build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited_35.o

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_uuidmodule.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_uuid.cpython-311-darwin.so

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/xxlimited.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_zoneinfo.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_zoneinfo.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/xxlimited_35.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/xxlimited_35.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_testclinic.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_testclinic.cpython-311-darwin.so

[DEBUG ] /var/folders/qc/1ckrysms2xn902hzh_yt_zj00000gn/T/tmp6d17f4is -c -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden -I./Include/internal -I. -I./Include -DPy_BUILD_CORE -o Python/deepfreeze/deepfreeze.o Python/deepfreeze/deepfreeze.c

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_testcapimodule.o -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -o build/lib.ios-aarch64-3.11/_testcapi.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ] ld -arch arm64 -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -miphoneos-version-min=9.0 -undefined dynamic_lookup -O3 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk build/temp.ios-aarch64-3.11/Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Modules/_decimal/_decimal.o Modules/_decimal/libmpdec/libmpdec.a -L/Users/richard/Documents/Python/HelloWorld/dist/lib/iphoneos -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/usr/lib -lm -o build/lib.ios-aarch64-3.11/_decimal.cpython-311-darwin.so

[DEBUG ] ld: unknown options: -miphoneos-version-min=9.0 -miphoneos-version-min=9.0 -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/ffi -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/libpng -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64/openssl -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2 -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_image -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_mixer -I/Users/richard/Documents/Python/HelloWorld/dist/include/common/sdl2_ttf -I/Users/richard/Documents/Python/HelloWorld/dist/include/iphoneos-arm64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk

[DEBUG ]

[DEBUG ] The necessary bits to build these optional modules were not found:

[DEBUG ] _gdbm _tkinter ossaudiodev

[DEBUG ] To find the necessary bits, look in setup.py in detect_modules() for the module's name.

[DEBUG ]

[DEBUG ]

[DEBUG ] The following modules found by detect_modules() in setup.py, have been

[DEBUG ] built by the Makefile instead, as configured by the Setup files:

[DEBUG ] _asyncio _bisect _blake2

[DEBUG ] _bz2 _codecs_cn _codecs_hk

[DEBUG ] _codecs_iso2022 _codecs_jp _codecs_kr

[DEBUG ] _codecs_tw _contextvars _crypt

[DEBUG ] _csv _ctypes _ctypes_test

[DEBUG ] _datetime _elementtree _hashlib

[DEBUG ] _heapq _json _lsprof

[DEBUG ] _md5 _multibytecodec _opcode

[DEBUG ] _pickle _queue _random

[DEBUG ] _sha1 _sha256 _sha3

[DEBUG ] _sha512 _socket _sqlite3

[DEBUG ] _ssl _struct _testbuffer

[DEBUG ] _testimportmultiple _testinternalcapi array

[DEBUG ] audioop binascii cmath

[DEBUG ] fcntl grp math

[DEBUG ] mmap pyexpat resource

[DEBUG ] select syslog termios

[DEBUG ] unicodedata zlib

[DEBUG ]

[DEBUG ]

[DEBUG ] Failed to build these modules:

[DEBUG ] _curses _curses_panel _dbm

[DEBUG ] _decimal _lzma _multiprocessing

[DEBUG ] _posixshmem _posixsubprocess _statistics

[DEBUG ] _testcapi _testclinic _testmultiphase

[DEBUG ] _typing _uuid _xxsubinterpreters

[DEBUG ] _xxtestfuzz _zoneinfo nis

[DEBUG ] readline spwd xxlimited

[DEBUG ] xxlimited_35

[DEBUG ]

[DEBUG ] running build_scripts

[DEBUG ] creating build/scripts-3.11

[DEBUG ] copying and adjusting /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Tools/scripts/pydoc3 -> build/scripts-3.11

[DEBUG ] copying and adjusting /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Tools/scripts/idle3 -> build/scripts-3.11

[DEBUG ] copying and adjusting /Users/richard/Documents/Python/HelloWorld/build/python3/iphoneos-arm64/Python-3.11.6/Tools/scripts/2to3 -> build/scripts-3.11

[DEBUG ] changing mode of build/scripts-3.11/pydoc3 from 644 to 755

[DEBUG ] changing mode of build/scripts-3.11/idle3 from 644 to 755

[DEBUG ] changing mode of build/scripts-3.11/2to3 from 644 to 755

[DEBUG ] renaming build/scripts-3.11/pydoc3 to build/scripts-3.11/pydoc3.11

[DEBUG ] renaming build/scripts-3.11/idle3 to build/scripts-3.11/idle3.11

[DEBUG ] renaming build/scripts-3.11/2to3 to build/scripts-3.11/2to3-3.11

[DEBUG ] rm -f libpython3.11.a

[DEBUG ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar rcs libpython3.11.a Modules/getbuildinfo.o Parser/token.o Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/accu.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/_warnings.o Python/Python-ast.o Python/Python-

AndreMiras commented 2 days ago

Addressed in #940