diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2022-11-21 09:50:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 09:50:20 (GMT) |
commit | cdde29dde90947df9bac39c1d19479914fb3db09 (patch) | |
tree | bed26cebb9afdf979bf632b27f3088742554521a /Misc | |
parent | 6d8da238ccdf946dc90e20821652d8caa25b76ba (diff) | |
download | cpython-cdde29dde90947df9bac39c1d19479914fb3db09.zip cpython-cdde29dde90947df9bac39c1d19479914fb3db09.tar.gz cpython-cdde29dde90947df9bac39c1d19479914fb3db09.tar.bz2 |
gh-99337: Fix compile errors with gcc 12 on macOS (#99470)
Fix a number of compile errors with GCC-12 on macOS:
1. In pylifecycle.c the compile rejects _Pragma within a declaration
2. posixmodule.c was missing a number of ..._RUNTIME macros for non-clang on macOS
3. _ctypes assumed that __builtin_available is always present on macOS
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-11-15-08-40-22.gh-issue-99337.5LoQDE.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-11-15-08-40-22.gh-issue-99337.5LoQDE.rst b/Misc/NEWS.d/next/Build/2022-11-15-08-40-22.gh-issue-99337.5LoQDE.rst new file mode 100644 index 0000000..f7396ab --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-11-15-08-40-22.gh-issue-99337.5LoQDE.rst @@ -0,0 +1 @@ +Fix a compilation issue with GCC 12 on macOS. |