aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Include/pyconfig.h
blob: a07364c7ff67446fa16da4580d2e1fb5d2e2709b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#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"
#elif defined(_MSC_VER)
#   include "pyconfig-win.h"
#else
#   include "pyconfig-linux.h"
#endif

#if defined(_musl_)
#   include "pyconfig-musl.h"
#endif