diff options
| author | shadchin <[email protected]> | 2024-08-18 21:40:16 +0300 |
|---|---|---|
| committer | shadchin <[email protected]> | 2024-08-18 21:50:32 +0300 |
| commit | bb698d27d2e08c111100de9a232c61a4adf57599 (patch) | |
| tree | 70572dc96b70bfd7deca52ea4fff1aaac847fa19 /contrib/tools/python3/Include/pyconfig.h | |
| parent | e180a9554919c245d262e3d7093dedabe7655d8d (diff) | |
Switch on delta config for Darwin x86_64
60bbb4cee24aa9a22b7dcc86a6a4adc0f7089c36
Diffstat (limited to 'contrib/tools/python3/Include/pyconfig.h')
| -rw-r--r-- | contrib/tools/python3/Include/pyconfig.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/contrib/tools/python3/Include/pyconfig.h b/contrib/tools/python3/Include/pyconfig.h index 0fa2d6916e7..7baffa4f556 100644 --- a/contrib/tools/python3/Include/pyconfig.h +++ b/contrib/tools/python3/Include/pyconfig.h @@ -25,12 +25,10 @@ #include "pyconfig-linux.h" #endif -#if defined(__APPLE__) -# if defined(__arm64__) -# include "pyconfig-osx-arm64.h" -# else -# include "pyconfig-osx.h" -# endif +#if defined(__APPLE__) && (defined(__aarch64__) || defined(_M_ARM64)) +# include "pyconfig-osx-arm64.h" +#elif defined(__APPLE__) && (defined(__x86_64__) || defined(_M_X64)) +# include "pyconfig-osx-x86_64.h" #endif #if defined(_MSC_VER) |
