Issue 41179: find_library on macOS Big Sur
Issue41179
Created on 2020-07-01 02:10 by sumanthratna, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 21250 | closed | python-dev, 2020-07-01 02:16 | |
| Messages (3) | |||
|---|---|---|---|
| msg372728 - (view) | Author: Sumanth Ratna (sumanthratna) * | Date: 2020-07-01 02:10 | |
The following all return None on macOS Big Sur, but return a valid path (str) on macOS Catalina:
python3.6 -c "from ctypes import util; print(util.find_library('objc'))"
python3.7 -c "from ctypes import util; print(util.find_library('objc'))"
python3.8 -c "from ctypes import util; print(util.find_library('objc'))"
The solution I'm thinking of is using platform.mac_ver() in ctypes.util.find_library to see if the macOS version is either 10.16 or 11.0; if so, use an alternative method to locate the path of the library somehow—else, use the current functionality. I'm hoping that looking in /System/Library/Frameworks/ is enough.
From the macOS Big Sur release notes (https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11-beta-release-notes):
> New in macOS Big Sur 11 beta, the system ships with a built-in dynamic linker cache of all system-provided libraries. As part of this change, copies of dynamic libraries are no longer present on the filesystem. Code that attempts to check for dynamic library presence by looking for a file at a path or enumerating a directory will fail. Instead, check for library presence by attempting to `dlopen()` the path, which will correctly check for the library in the cache. (62986286)
Related links:
- https://bugs.python.org/issue41116 (this is a build issue, but is related I think)
- https://stackoverflow.com/questions/62587131/macos-big-sur-python-ctypes-find-library-does-not-find-libraries-ssl-corefou
- https://www.reddit.com/r/MacOSBeta/comments/hfknpa/is_corefoundation_missing_for_everyone_on_big_sur/
- https://github.com/vispy/vispy/issues/1885
- https://github.com/napari/napari/issues/1393
- https://github.com/espressif/esptool/issues/540
This is my first issue in Python; sorry in advance if I've made a mistake anywhere.
|
|||
| msg372734 - (view) | Author: Ronald Oussoren (ronaldoussoren) * ![]() |
Date: 2020-07-01 07:38 | |
We're tracking macOS 11 changes in Issue41100. That issue has a PRs from Apple for, amongst others, this issue. |
|||
| msg372754 - (view) | Author: Sumanth Ratna (sumanthratna) * | Date: 2020-07-01 14:10 | |
I see; thanks for letting me know! I saw Issue41100 but I had assumed that it was only for build issues :) Should I close this issue? |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:33 | admin | set | github: 85351 |
| 2020-07-01 16:27:01 | ned.deily | set | status: open -> closed resolution: duplicate stage: patch review -> resolved |
| 2020-07-01 14:10:36 | sumanthratna | set | messages: + msg372754 |
| 2020-07-01 07:38:29 | ronaldoussoren | set | versions:
+ Python 3.9, Python 3.10 nosy: + ned.deily, ronaldoussoren messages: + msg372734 components:
+ macOS |
| 2020-07-01 02:16:14 | python-dev | set | keywords:
+ patch nosy: + python-dev pull_requests:
+ pull_request20400 |
| 2020-07-01 02:10:57 | sumanthratna | create | |
