You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
When running on a Mac with OS X version prior to Big Sur, it fails with:
$ ./pycom-fwtool-svc
[89336] Error loading Python lib '/var/folders/mj/rtz2sw7x349bg9tl6xrfptr40000gn/T/_MEIvKpglC/Python': dlopen: dlopen(/var/folders/mj/rtz2sw7x349bg9tl6xrfptr40000gn/T/_MEIvKpglC/Python, 10): Symbol not found: _preadv
Referenced from: /var/folders/mj/rtz2sw7x349bg9tl6xrfptr40000gn/T/_MEIvKpglC/Python (which was built for Mac OS X 11.0)
Expected in: /usr/lib/libSystem.B.dylib
in /var/folders/mj/rtz2sw7x349bg9tl6xrfptr40000gn/T/_MEIvKpglC/Python
This is due to the fact that the embedded Python wasn't built correctly. It should have been built with MACOS_DEPLOYMENT_TARGET set to 10.9 as specified here, so it can work on any Mac OS X version from 10.9 to 13
Can you rebuilt it with adding the specified variable to the configure line ?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When running on a Mac with OS X version prior to Big Sur, it fails with:
This is due to the fact that the embedded Python wasn't built correctly. It should have been built with
MACOS_DEPLOYMENT_TARGET
set to10.9
as specified here, so it can work on any Mac OS X version from 10.9 to 13Can you rebuilt it with adding the specified variable to the configure line ?
The text was updated successfully, but these errors were encountered: