blob: 3e7071be46963e084ed0fbe4926eac4e3ceecf09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#include <util/system/platform.h>
#include <util/system/defaults.h>
#ifndef VERSION
#define VERSION Y_STRINGIZE(UNQUOTED_VERSION)
#endif
#define PYTHONPATH Y_STRINGIZE(UNQUOTED_PYTHONPATH)
#if !defined(PLATFORM) && defined(UNQUOTED_PLATFORM)
# define PLATFORM Y_STRINGIZE(UNQUOTED_PLATFORM)
#endif
#ifdef _win_
# include "pyconfig.win32.h"
#endif
#ifdef _linux_
# include "pyconfig.linux.h"
#endif
#ifdef _cygwin_
# include "pyconfig.cygwin.h"
#endif
#ifdef _freebsd_
# include "pyconfig.freebsd.h"
#endif
#ifdef _darwin_
# ifdef _ios_
# if defined(_arm64_)
# include "pyconfig.ios.arm64.h"
# elif defined(_arm32_)
# include "pyconfig.ios.armv7.h"
# elif defined(_x86_64_)
# include "pyconfig.ios.x86_64.h"
# elif defined(_i386_)
# include "pyconfig.ios.i386.h"
# else
# error "Unsupported architecture for ios"
# endif // defined(_arm64_) || defined(_arm32_) || defined(_x86_64_) || defined(_i386_)
# else
# if defined(_arm64_)
# include "pyconfig.darwin.arm64.h"
# else
# include "pyconfig.darwin.h"
# endif // _arm64_
# endif // __IOS__
#endif
|