This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: macOS cannot compute sizeof (long double)
Type: compile error Stage: resolved
Components: Versions: Python 3.9
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: Nosy List: allenlili, ned.deily
Priority: normal Keywords:

Created on 2021-04-04 02:51 by allenlili, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
config.log allenlili, 2021-04-04 02:51
Messages (2)
msg390199 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2021-04-04 16:14
From the config.log you supplied, it looks the macOS system you are running on was upgraded to the current latest version, 11.2.3, but the Command Line Tools were not. It seems that with recent macOS releases, you often need to do that manually for each bugfix release.  Try:

  xcode-select --install

If successful, you should see currently:

  cc --version
     Apple clang version 12.0.0 (clang-1200.0.32.29)
msg390200 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2021-04-04 16:30
P.S. Also check System Preferences -> Software Update for any updates to the Command Line Tools.
History
Date User Action Args
2022-04-11 14:59:43adminsetgithub: 87890
2021-04-04 16:30:33ned.deilysetmessages: + msg390200
2021-04-04 16:14:02ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg390199

resolution: works for me
stage: resolved
2021-04-04 02:54:57allenlilisettitle: cannot compute sizeof (long double) -> macOS cannot compute sizeof (long double)
2021-04-04 02:51:14allenlilicreate