blob: ddc0bd067d4e4fce9db237f9f254aba2035f9765 [file] [log] [blame]
Andrew M. Kuchling66012fe2001-01-26 21:56:58 +00001# Autodetecting setup.py script for building the Python extensions
Fredrik Lundhade711a2001-01-24 08:00:28 +00002
Victor Stinner625dbf22019-03-01 15:59:39 +01003import argparse
Eric Snow335e14d2014-01-04 15:09:28 -07004import importlib._bootstrap
Victor Stinner625dbf22019-03-01 15:59:39 +01005import importlib.machinery
Eric Snow335e14d2014-01-04 15:09:28 -07006import importlib.util
Victor Stinner625dbf22019-03-01 15:59:39 +01007import os
8import re
9import sys
Tarek Ziadéedacea32010-01-29 11:41:03 +000010import sysconfig
Serhiy Storchaka93558682020-06-20 11:10:31 +030011from glob import glob, escape
Ronald Oussoren404a7192020-11-22 06:14:25 +010012import _osx_support
Michael W. Hudson529a5052002-12-17 16:47:17 +000013
Victor Stinner1ec63b62020-03-04 14:50:19 +010014
15try:
16 import subprocess
17 del subprocess
18 SUBPROCESS_BOOTSTRAP = False
19except ImportError:
Victor Stinner1ec63b62020-03-04 14:50:19 +010020 # Bootstrap Python: distutils.spawn uses subprocess to build C extensions,
21 # subprocess requires C extensions built by setup.py like _posixsubprocess.
22 #
Victor Stinneraddaaaa2020-03-09 23:45:59 +010023 # Use _bootsubprocess which only uses the os module.
Victor Stinner1ec63b62020-03-04 14:50:19 +010024 #
25 # It is dropped from sys.modules as soon as all C extension modules
26 # are built.
Victor Stinneraddaaaa2020-03-09 23:45:59 +010027 import _bootsubprocess
28 sys.modules['subprocess'] = _bootsubprocess
29 del _bootsubprocess
30 SUBPROCESS_BOOTSTRAP = True
Victor Stinner1ec63b62020-03-04 14:50:19 +010031
32
Michael W. Hudson529a5052002-12-17 16:47:17 +000033from distutils import log
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000034from distutils.command.build_ext import build_ext
Victor Stinner625dbf22019-03-01 15:59:39 +010035from distutils.command.build_scripts import build_scripts
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +000036from distutils.command.install import install
Michael W. Hudson529a5052002-12-17 16:47:17 +000037from distutils.command.install_lib import install_lib
Victor Stinner625dbf22019-03-01 15:59:39 +010038from distutils.core import Extension, setup
39from distutils.errors import CCompilerError, DistutilsError
Stefan Krah095b2732010-06-08 13:41:44 +000040from distutils.spawn import find_executable
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +000041
Antoine Pitrou2c0a9162014-09-26 23:31:59 +020042
Victor Stinnercfe172d2019-03-01 18:21:49 +010043# Compile extensions used to test Python?
pxinwr277ce302020-12-30 20:50:39 +080044TEST_EXTENSIONS = (sysconfig.get_config_var('TEST_MODULES') == 'yes')
Victor Stinnercfe172d2019-03-01 18:21:49 +010045
46# This global variable is used to hold the list of modules to be disabled.
47DISABLED_MODULE_LIST = []
48
49
doko@ubuntu.com93df16b2012-06-30 14:32:08 +020050def get_platform():
Victor Stinnerc991f242019-03-01 17:19:04 +010051 # Cross compiling
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020052 if "_PYTHON_HOST_PLATFORM" in os.environ:
53 return os.environ["_PYTHON_HOST_PLATFORM"]
Victor Stinnerc991f242019-03-01 17:19:04 +010054
doko@ubuntu.com93df16b2012-06-30 14:32:08 +020055 # Get value of sys.platform
56 if sys.platform.startswith('osf1'):
57 return 'osf1'
58 return sys.platform
Victor Stinnerc991f242019-03-01 17:19:04 +010059
60
61CROSS_COMPILING = ("_PYTHON_HOST_PLATFORM" in os.environ)
Victor Stinner4cbea512019-02-28 17:48:38 +010062HOST_PLATFORM = get_platform()
63MS_WINDOWS = (HOST_PLATFORM == 'win32')
64CYGWIN = (HOST_PLATFORM == 'cygwin')
65MACOS = (HOST_PLATFORM == 'darwin')
Michael Felt08970cb2019-06-21 15:58:00 +020066AIX = (HOST_PLATFORM.startswith('aix'))
Victor Stinner4cbea512019-02-28 17:48:38 +010067VXWORKS = ('vxworks' in HOST_PLATFORM)
pxinwr32f5fdd2019-02-27 19:09:28 +080068
Victor Stinnerc991f242019-03-01 17:19:04 +010069
70SUMMARY = """
71Python is an interpreted, interactive, object-oriented programming
72language. It is often compared to Tcl, Perl, Scheme or Java.
73
74Python combines remarkable power with very clear syntax. It has
75modules, classes, exceptions, very high level dynamic data types, and
76dynamic typing. There are interfaces to many system calls and
77libraries, as well as to various windowing systems (X11, Motif, Tk,
78Mac, MFC). New built-in modules are easily written in C or C++. Python
79is also usable as an extension language for applications that need a
80programmable interface.
81
82The Python implementation is portable: it runs on many brands of UNIX,
83on Windows, DOS, Mac, Amiga... If your favorite system isn't
84listed here, it may still be supported, if there's a C compiler for
85it. Ask around on comp.lang.python -- or just try compiling Python
86yourself.
87"""
88
89CLASSIFIERS = """
90Development Status :: 6 - Mature
91License :: OSI Approved :: Python Software Foundation License
92Natural Language :: English
93Programming Language :: C
94Programming Language :: Python
95Topic :: Software Development
96"""
97
98
Victor Stinner6b982c22020-04-01 01:10:07 +020099def run_command(cmd):
100 status = os.system(cmd)
Victor Stinner65a796e2020-04-01 18:49:29 +0200101 return os.waitstatus_to_exitcode(status)
Victor Stinner6b982c22020-04-01 01:10:07 +0200102
103
Victor Stinnerc991f242019-03-01 17:19:04 +0100104# Set common compiler and linker flags derived from the Makefile,
105# reserved for building the interpreter and the stdlib modules.
106# See bpo-21121 and bpo-35257
107def set_compiler_flags(compiler_flags, compiler_py_flags_nodist):
108 flags = sysconfig.get_config_var(compiler_flags)
109 py_flags_nodist = sysconfig.get_config_var(compiler_py_flags_nodist)
110 sysconfig.get_config_vars()[compiler_flags] = flags + ' ' + py_flags_nodist
111
112
Michael W. Hudson39230b32002-01-16 15:26:48 +0000113def add_dir_to_list(dirlist, dir):
Barry Warsaw807bd0a2010-11-24 20:30:00 +0000114 """Add the directory 'dir' to the list 'dirlist' (after any relative
115 directories) if:
116
Michael W. Hudson39230b32002-01-16 15:26:48 +0000117 1) 'dir' is not already in 'dirlist'
Barry Warsaw807bd0a2010-11-24 20:30:00 +0000118 2) 'dir' actually exists, and is a directory.
119 """
120 if dir is None or not os.path.isdir(dir) or dir in dirlist:
121 return
122 for i, path in enumerate(dirlist):
123 if not os.path.isabs(path):
124 dirlist.insert(i + 1, dir)
Barry Warsaw34520cd2010-11-27 20:03:03 +0000125 return
126 dirlist.insert(0, dir)
Michael W. Hudson39230b32002-01-16 15:26:48 +0000127
Victor Stinnerc991f242019-03-01 17:19:04 +0100128
xdegaye77f51392017-11-25 17:25:30 +0100129def sysroot_paths(make_vars, subdirs):
130 """Get the paths of sysroot sub-directories.
131
132 * make_vars: a sequence of names of variables of the Makefile where
133 sysroot may be set.
134 * subdirs: a sequence of names of subdirectories used as the location for
135 headers or libraries.
136 """
137
138 dirs = []
139 for var_name in make_vars:
140 var = sysconfig.get_config_var(var_name)
141 if var is not None:
142 m = re.search(r'--sysroot=([^"]\S*|"[^"]+")', var)
143 if m is not None:
144 sysroot = m.group(1).strip('"')
145 for subdir in subdirs:
146 if os.path.isabs(subdir):
147 subdir = subdir[1:]
148 path = os.path.join(sysroot, subdir)
149 if os.path.isdir(path):
150 dirs.append(path)
151 break
152 return dirs
153
Ned Deily1731d6d2020-05-18 04:32:38 -0400154
Ned Deily0288dd62019-06-03 06:34:48 -0400155MACOS_SDK_ROOT = None
Ned Deily1731d6d2020-05-18 04:32:38 -0400156MACOS_SDK_SPECIFIED = None
Victor Stinnerc991f242019-03-01 17:19:04 +0100157
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000158def macosx_sdk_root():
Ned Deily0288dd62019-06-03 06:34:48 -0400159 """Return the directory of the current macOS SDK.
160
161 If no SDK was explicitly configured, call the compiler to find which
162 include files paths are being searched by default. Use '/' if the
163 compiler is searching /usr/include (meaning system header files are
164 installed) or use the root of an SDK if that is being searched.
165 (The SDK may be supplied via Xcode or via the Command Line Tools).
166 The SDK paths used by Apple-supplied tool chains depend on the
167 setting of various variables; see the xcrun man page for more info.
Ned Deily1731d6d2020-05-18 04:32:38 -0400168 Also sets MACOS_SDK_SPECIFIED for use by macosx_sdk_specified().
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000169 """
Ned Deily1731d6d2020-05-18 04:32:38 -0400170 global MACOS_SDK_ROOT, MACOS_SDK_SPECIFIED
Ned Deily0288dd62019-06-03 06:34:48 -0400171
172 # If already called, return cached result.
173 if MACOS_SDK_ROOT:
174 return MACOS_SDK_ROOT
175
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000176 cflags = sysconfig.get_config_var('CFLAGS')
Joshua Rootb3107002020-04-22 17:44:10 +1000177 m = re.search(r'-isysroot\s*(\S+)', cflags)
Ned Deily0288dd62019-06-03 06:34:48 -0400178 if m is not None:
179 MACOS_SDK_ROOT = m.group(1)
Ned Deily29afab62020-12-04 23:02:09 -0500180 MACOS_SDK_SPECIFIED = MACOS_SDK_ROOT != '/'
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000181 else:
Ronald Oussoren404a7192020-11-22 06:14:25 +0100182 MACOS_SDK_ROOT = _osx_support._default_sysroot(
183 sysconfig.get_config_var('CC'))
Ned Deily29afab62020-12-04 23:02:09 -0500184 MACOS_SDK_SPECIFIED = False
Ned Deily0288dd62019-06-03 06:34:48 -0400185
186 return MACOS_SDK_ROOT
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000187
Victor Stinnerc991f242019-03-01 17:19:04 +0100188
Ned Deily1731d6d2020-05-18 04:32:38 -0400189def macosx_sdk_specified():
190 """Returns true if an SDK was explicitly configured.
191
192 True if an SDK was selected at configure time, either by specifying
193 --enable-universalsdk=(something other than no or /) or by adding a
194 -isysroot option to CFLAGS. In some cases, like when making
195 decisions about macOS Tk framework paths, we need to be able to
196 know whether the user explicitly asked to build with an SDK versus
197 the implicit use of an SDK when header files are no longer
198 installed on a running system by the Command Line Tools.
199 """
200 global MACOS_SDK_SPECIFIED
201
202 # If already called, return cached result.
203 if MACOS_SDK_SPECIFIED:
204 return MACOS_SDK_SPECIFIED
205
206 # Find the sdk root and set MACOS_SDK_SPECIFIED
207 macosx_sdk_root()
208 return MACOS_SDK_SPECIFIED
209
210
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000211def is_macosx_sdk_path(path):
212 """
213 Returns True if 'path' can be located in an OSX SDK
214 """
Ned Deily2910a7b2012-07-30 02:35:58 -0700215 return ( (path.startswith('/usr/') and not path.startswith('/usr/local'))
216 or path.startswith('/System/')
217 or path.startswith('/Library/') )
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000218
Victor Stinnerc991f242019-03-01 17:19:04 +0100219
Ronald Oussoren41761932020-11-08 10:05:27 +0100220def grep_headers_for(function, headers):
221 for header in headers:
Ronald Oussoren7a27c7e2020-11-14 16:07:47 +0100222 with open(header, 'r', errors='surrogateescape') as f:
Ronald Oussoren41761932020-11-08 10:05:27 +0100223 if function in f.read():
224 return True
225 return False
226
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000227def find_file(filename, std_dirs, paths):
228 """Searches for the directory where a given file is located,
229 and returns a possibly-empty list of additional directories, or None
230 if the file couldn't be found at all.
Fredrik Lundhade711a2001-01-24 08:00:28 +0000231
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000232 'filename' is the name of a file, such as readline.h or libcrypto.a.
233 'std_dirs' is the list of standard system directories; if the
234 file is found in one of them, no additional directives are needed.
235 'paths' is a list of additional locations to check; if the file is
236 found in one of them, the resulting list will contain the directory.
237 """
Victor Stinner4cbea512019-02-28 17:48:38 +0100238 if MACOS:
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000239 # Honor the MacOSX SDK setting when one was specified.
240 # An SDK is a directory with the same structure as a real
241 # system, but with only header files and libraries.
242 sysroot = macosx_sdk_root()
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000243
244 # Check the standard locations
245 for dir in std_dirs:
246 f = os.path.join(dir, filename)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000247
Victor Stinner4cbea512019-02-28 17:48:38 +0100248 if MACOS and is_macosx_sdk_path(dir):
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000249 f = os.path.join(sysroot, dir[1:], filename)
250
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000251 if os.path.exists(f): return []
252
253 # Check the additional directories
254 for dir in paths:
255 f = os.path.join(dir, filename)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000256
Victor Stinner4cbea512019-02-28 17:48:38 +0100257 if MACOS and is_macosx_sdk_path(dir):
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000258 f = os.path.join(sysroot, dir[1:], filename)
259
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000260 if os.path.exists(f):
261 return [dir]
262
263 # Not found anywhere
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000264 return None
265
Victor Stinnerc991f242019-03-01 17:19:04 +0100266
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000267def find_library_file(compiler, libname, std_dirs, paths):
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +0000268 result = compiler.find_library_file(std_dirs + paths, libname)
269 if result is None:
270 return None
Fredrik Lundhade711a2001-01-24 08:00:28 +0000271
Victor Stinner4cbea512019-02-28 17:48:38 +0100272 if MACOS:
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000273 sysroot = macosx_sdk_root()
274
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +0000275 # Check whether the found file is in one of the standard directories
276 dirname = os.path.dirname(result)
277 for p in std_dirs:
278 # Ensure path doesn't end with path separator
Skip Montanaro9f5178a2003-05-06 20:59:57 +0000279 p = p.rstrip(os.sep)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000280
Victor Stinner4cbea512019-02-28 17:48:38 +0100281 if MACOS and is_macosx_sdk_path(p):
Ned Deily020250f2016-02-25 00:56:38 +1100282 # Note that, as of Xcode 7, Apple SDKs may contain textual stub
283 # libraries with .tbd extensions rather than the normal .dylib
284 # shared libraries installed in /. The Apple compiler tool
285 # chain handles this transparently but it can cause problems
286 # for programs that are being built with an SDK and searching
287 # for specific libraries. Distutils find_library_file() now
288 # knows to also search for and return .tbd files. But callers
289 # of find_library_file need to keep in mind that the base filename
290 # of the returned SDK library file might have a different extension
291 # from that of the library file installed on the running system,
292 # for example:
293 # /Applications/Xcode.app/Contents/Developer/Platforms/
294 # MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/
295 # usr/lib/libedit.tbd
296 # vs
297 # /usr/lib/libedit.dylib
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000298 if os.path.join(sysroot, p[1:]) == dirname:
299 return [ ]
300
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +0000301 if p == dirname:
302 return [ ]
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000303
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +0000304 # Otherwise, it must have been in one of the additional directories,
305 # so we have to figure out which one.
306 for p in paths:
307 # Ensure path doesn't end with path separator
Skip Montanaro9f5178a2003-05-06 20:59:57 +0000308 p = p.rstrip(os.sep)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000309
Victor Stinner4cbea512019-02-28 17:48:38 +0100310 if MACOS and is_macosx_sdk_path(p):
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000311 if os.path.join(sysroot, p[1:]) == dirname:
312 return [ p ]
313
Andrew M. Kuchlinga246d9f2002-11-27 13:43:46 +0000314 if p == dirname:
315 return [p]
316 else:
317 assert False, "Internal error: Path not found in std_dirs or paths"
Tim Peters2c60f7a2003-01-29 03:49:43 +0000318
Paul Ganssle62972d92020-05-16 04:20:06 -0400319def validate_tzpath():
320 base_tzpath = sysconfig.get_config_var('TZPATH')
321 if not base_tzpath:
322 return
323
324 tzpaths = base_tzpath.split(os.pathsep)
325 bad_paths = [tzpath for tzpath in tzpaths if not os.path.isabs(tzpath)]
326 if bad_paths:
327 raise ValueError('TZPATH must contain only absolute paths, '
328 + f'found:\n{tzpaths!r}\nwith invalid paths:\n'
329 + f'{bad_paths!r}')
Victor Stinnerc991f242019-03-01 17:19:04 +0100330
Jack Jansen144ebcc2001-08-05 22:31:19 +0000331def find_module_file(module, dirlist):
332 """Find a module in a set of possible folders. If it is not found
333 return the unadorned filename"""
334 list = find_file(module, [], dirlist)
335 if not list:
336 return module
337 if len(list) > 1:
Vinay Sajipdd917f82016-08-31 08:22:29 +0100338 log.info("WARNING: multiple copies of %s found", module)
Jack Jansen144ebcc2001-08-05 22:31:19 +0000339 return os.path.join(list[0], module)
Michael W. Hudson5b109102002-01-23 15:04:41 +0000340
Victor Stinnerc991f242019-03-01 17:19:04 +0100341
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000342class PyBuildExt(build_ext):
Fredrik Lundhade711a2001-01-24 08:00:28 +0000343
Guido van Rossumd8faa362007-04-27 19:54:29 +0000344 def __init__(self, dist):
345 build_ext.__init__(self, dist)
Victor Stinner625dbf22019-03-01 15:59:39 +0100346 self.srcdir = None
347 self.lib_dirs = None
348 self.inc_dirs = None
Victor Stinner5ec33a12019-03-01 16:43:28 +0100349 self.config_h_vars = None
Guido van Rossumd8faa362007-04-27 19:54:29 +0000350 self.failed = []
Benjamin Peterson5c2ac8c2014-04-30 11:06:16 -0400351 self.failed_on_import = []
Victor Stinner8058bda2019-03-01 15:31:45 +0100352 self.missing = []
Christian Heimes9b60e552020-05-15 23:54:53 +0200353 self.disabled_configure = []
Antoine Pitrou2c0a9162014-09-26 23:31:59 +0200354 if '-j' in os.environ.get('MAKEFLAGS', ''):
355 self.parallel = True
Guido van Rossumd8faa362007-04-27 19:54:29 +0000356
Victor Stinner8058bda2019-03-01 15:31:45 +0100357 def add(self, ext):
358 self.extensions.append(ext)
359
Victor Stinner00c77ae2020-03-04 18:44:49 +0100360 def set_srcdir(self):
Victor Stinner625dbf22019-03-01 15:59:39 +0100361 self.srcdir = sysconfig.get_config_var('srcdir')
362 if not self.srcdir:
363 # Maybe running on Windows but not using CYGWIN?
364 raise ValueError("No source directory; cannot proceed.")
365 self.srcdir = os.path.abspath(self.srcdir)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000366
Victor Stinner00c77ae2020-03-04 18:44:49 +0100367 def remove_disabled(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000368 # Remove modules that are present on the disabled list
Christian Heimes679db4a2008-01-18 09:56:22 +0000369 extensions = [ext for ext in self.extensions
Victor Stinner4cbea512019-02-28 17:48:38 +0100370 if ext.name not in DISABLED_MODULE_LIST]
Christian Heimes679db4a2008-01-18 09:56:22 +0000371 # move ctypes to the end, it depends on other modules
372 ext_map = dict((ext.name, i) for i, ext in enumerate(extensions))
373 if "_ctypes" in ext_map:
374 ctypes = extensions.pop(ext_map["_ctypes"])
375 extensions.append(ctypes)
376 self.extensions = extensions
Fredrik Lundhade711a2001-01-24 08:00:28 +0000377
Victor Stinner00c77ae2020-03-04 18:44:49 +0100378 def update_sources_depends(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000379 # Fix up the autodetected modules, prefixing all the source files
Neil Schemenauer014bf282009-02-05 16:35:45 +0000380 # with Modules/.
Victor Stinner625dbf22019-03-01 15:59:39 +0100381 moddirlist = [os.path.join(self.srcdir, 'Modules')]
Michael W. Hudson5b109102002-01-23 15:04:41 +0000382
Andrew M. Kuchling3da989c2001-02-28 22:49:26 +0000383 # Fix up the paths for scripts, too
Victor Stinner625dbf22019-03-01 15:59:39 +0100384 self.distribution.scripts = [os.path.join(self.srcdir, filename)
Andrew M. Kuchling3da989c2001-02-28 22:49:26 +0000385 for filename in self.distribution.scripts]
386
Christian Heimesaf98da12008-01-27 15:18:18 +0000387 # Python header files
Neil Schemenauer014bf282009-02-05 16:35:45 +0000388 headers = [sysconfig.get_config_h_filename()]
Serhiy Storchaka93558682020-06-20 11:10:31 +0300389 headers += glob(os.path.join(escape(sysconfig.get_path('include')), "*.h"))
Christian Heimesaf98da12008-01-27 15:18:18 +0000390
Xavier de Gaye84968b72016-10-29 16:57:20 +0200391 for ext in self.extensions:
Jack Jansen144ebcc2001-08-05 22:31:19 +0000392 ext.sources = [ find_module_file(filename, moddirlist)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000393 for filename in ext.sources ]
Jeremy Hylton340043e2002-06-13 17:38:11 +0000394 if ext.depends is not None:
Neil Schemenauer014bf282009-02-05 16:35:45 +0000395 ext.depends = [find_module_file(filename, moddirlist)
Jeremy Hylton340043e2002-06-13 17:38:11 +0000396 for filename in ext.depends]
Christian Heimesaf98da12008-01-27 15:18:18 +0000397 else:
398 ext.depends = []
399 # re-compile extensions if a header file has been changed
400 ext.depends.extend(headers)
401
Victor Stinner00c77ae2020-03-04 18:44:49 +0100402 def remove_configured_extensions(self):
403 # The sysconfig variables built by makesetup that list the already
404 # built modules and the disabled modules as configured by the Setup
405 # files.
406 sysconf_built = sysconfig.get_config_var('MODBUILT_NAMES').split()
407 sysconf_dis = sysconfig.get_config_var('MODDISABLED_NAMES').split()
408
409 mods_built = []
410 mods_disabled = []
411 for ext in self.extensions:
xdegayec0364fc2017-05-27 18:25:03 +0200412 # If a module has already been built or has been disabled in the
413 # Setup files, don't build it here.
414 if ext.name in sysconf_built:
415 mods_built.append(ext)
416 if ext.name in sysconf_dis:
417 mods_disabled.append(ext)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000418
xdegayec0364fc2017-05-27 18:25:03 +0200419 mods_configured = mods_built + mods_disabled
420 if mods_configured:
Xavier de Gaye84968b72016-10-29 16:57:20 +0200421 self.extensions = [x for x in self.extensions if x not in
xdegayec0364fc2017-05-27 18:25:03 +0200422 mods_configured]
423 # Remove the shared libraries built by a previous build.
424 for ext in mods_configured:
425 fullpath = self.get_ext_fullpath(ext.name)
426 if os.path.exists(fullpath):
427 os.unlink(fullpath)
Michael W. Hudson5b109102002-01-23 15:04:41 +0000428
Victor Stinner00c77ae2020-03-04 18:44:49 +0100429 return (mods_built, mods_disabled)
430
431 def set_compiler_executables(self):
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000432 # When you run "make CC=altcc" or something similar, you really want
433 # those environment variables passed into the setup.py phase. Here's
434 # a small set of useful ones.
435 compiler = os.environ.get('CC')
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000436 args = {}
437 # unfortunately, distutils doesn't let us provide separate C and C++
438 # compilers
439 if compiler is not None:
Martin v. Löwisd7c795e2005-04-25 07:14:03 +0000440 (ccshared,cflags) = sysconfig.get_config_vars('CCSHARED','CFLAGS')
441 args['compiler_so'] = compiler + ' ' + ccshared + ' ' + cflags
Tarek Ziadé36797272010-07-22 12:50:05 +0000442 self.compiler.set_executables(**args)
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000443
Victor Stinner00c77ae2020-03-04 18:44:49 +0100444 def build_extensions(self):
445 self.set_srcdir()
446
447 # Detect which modules should be compiled
448 self.detect_modules()
449
450 self.remove_disabled()
451
452 self.update_sources_depends()
453 mods_built, mods_disabled = self.remove_configured_extensions()
454 self.set_compiler_executables()
455
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000456 build_ext.build_extensions(self)
457
Victor Stinner1ec63b62020-03-04 14:50:19 +0100458 if SUBPROCESS_BOOTSTRAP:
459 # Drop our custom subprocess module:
460 # use the newly built subprocess module
461 del sys.modules['subprocess']
462
Antoine Pitrou2c0a9162014-09-26 23:31:59 +0200463 for ext in self.extensions:
464 self.check_extension_import(ext)
465
Victor Stinner00c77ae2020-03-04 18:44:49 +0100466 self.summary(mods_built, mods_disabled)
467
468 def summary(self, mods_built, mods_disabled):
Berker Peksag1d82a9c2014-10-01 05:11:13 +0300469 longest = max([len(e.name) for e in self.extensions], default=0)
Benjamin Peterson5c2ac8c2014-04-30 11:06:16 -0400470 if self.failed or self.failed_on_import:
471 all_failed = self.failed + self.failed_on_import
472 longest = max(longest, max([len(name) for name in all_failed]))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000473
474 def print_three_column(lst):
475 lst.sort(key=str.lower)
476 # guarantee zip() doesn't drop anything
477 while len(lst) % 3:
478 lst.append("")
479 for e, f, g in zip(lst[::3], lst[1::3], lst[2::3]):
480 print("%-*s %-*s %-*s" % (longest, e, longest, f,
481 longest, g))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000482
Victor Stinner8058bda2019-03-01 15:31:45 +0100483 if self.missing:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000484 print()
Brett Cannonae95b4f2013-07-12 11:30:32 -0400485 print("Python build finished successfully!")
486 print("The necessary bits to build these optional modules were not "
487 "found:")
Victor Stinner8058bda2019-03-01 15:31:45 +0100488 print_three_column(self.missing)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000489 print("To find the necessary bits, look in setup.py in"
490 " detect_modules() for the module's name.")
491 print()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000492
xdegayec0364fc2017-05-27 18:25:03 +0200493 if mods_built:
494 print()
Xavier de Gaye84968b72016-10-29 16:57:20 +0200495 print("The following modules found by detect_modules() in"
496 " setup.py, have been")
497 print("built by the Makefile instead, as configured by the"
498 " Setup files:")
xdegayec0364fc2017-05-27 18:25:03 +0200499 print_three_column([ext.name for ext in mods_built])
500 print()
501
502 if mods_disabled:
503 print()
504 print("The following modules found by detect_modules() in"
505 " setup.py have not")
506 print("been built, they are *disabled* in the Setup files:")
507 print_three_column([ext.name for ext in mods_disabled])
508 print()
Xavier de Gaye84968b72016-10-29 16:57:20 +0200509
Christian Heimes9b60e552020-05-15 23:54:53 +0200510 if self.disabled_configure:
511 print()
512 print("The following modules found by detect_modules() in"
513 " setup.py have not")
514 print("been built, they are *disabled* by configure:")
515 print_three_column(self.disabled_configure)
516 print()
517
Guido van Rossumd8faa362007-04-27 19:54:29 +0000518 if self.failed:
519 failed = self.failed[:]
520 print()
521 print("Failed to build these modules:")
522 print_three_column(failed)
Guido van Rossum04110fb2007-08-24 16:32:05 +0000523 print()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000524
Benjamin Peterson5c2ac8c2014-04-30 11:06:16 -0400525 if self.failed_on_import:
526 failed = self.failed_on_import[:]
527 print()
528 print("Following modules built successfully"
529 " but were removed because they could not be imported:")
530 print_three_column(failed)
531 print()
532
Christian Heimes61d478c2018-01-27 15:51:38 +0100533 if any('_ssl' in l
Victor Stinner8058bda2019-03-01 15:31:45 +0100534 for l in (self.missing, self.failed, self.failed_on_import)):
Christian Heimes61d478c2018-01-27 15:51:38 +0100535 print()
536 print("Could not build the ssl module!")
537 print("Python requires an OpenSSL 1.0.2 or 1.1 compatible "
538 "libssl with X509_VERIFY_PARAM_set1_host().")
539 print("LibreSSL 2.6.4 and earlier do not provide the necessary "
540 "APIs, https://github.com/libressl-portable/portable/issues/381")
541 print()
542
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000543 def build_extension(self, ext):
544
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000545 if ext.name == '_ctypes':
546 if not self.configure_ctypes(ext):
Zachary Waref40d4dd2016-09-17 01:25:24 -0500547 self.failed.append(ext.name)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000548 return
549
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000550 try:
551 build_ext.build_extension(self, ext)
Guido van Rossumb940e112007-01-10 16:19:56 +0000552 except (CCompilerError, DistutilsError) as why:
Marc-André Lemburg7c6fcda2001-01-26 18:03:24 +0000553 self.announce('WARNING: building of extension "%s" failed: %s' %
Victor Stinner625dbf22019-03-01 15:59:39 +0100554 (ext.name, why))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000555 self.failed.append(ext.name)
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000556 return
Antoine Pitrou2c0a9162014-09-26 23:31:59 +0200557
558 def check_extension_import(self, ext):
559 # Don't try to import an extension that has failed to compile
560 if ext.name in self.failed:
561 self.announce(
562 'WARNING: skipping import check for failed build "%s"' %
563 ext.name, level=1)
564 return
565
Jack Jansenf49c6f92001-11-01 14:44:15 +0000566 # Workaround for Mac OS X: The Carbon-based modules cannot be
567 # reliably imported into a command-line Python
568 if 'Carbon' in ext.extra_link_args:
Michael W. Hudson5b109102002-01-23 15:04:41 +0000569 self.announce(
570 'WARNING: skipping import check for Carbon-based "%s"' %
571 ext.name)
572 return
Georg Brandlfcaf9102008-07-16 02:17:56 +0000573
Victor Stinner4cbea512019-02-28 17:48:38 +0100574 if MACOS and (
Benjamin Petersonfc576352008-07-16 02:39:02 +0000575 sys.maxsize > 2**32 and '-arch' in ext.extra_link_args):
Georg Brandlfcaf9102008-07-16 02:17:56 +0000576 # Don't bother doing an import check when an extension was
577 # build with an explicit '-arch' flag on OSX. That's currently
578 # only used to build 32-bit only extensions in a 4-way
579 # universal build and loading 32-bit code into a 64-bit
580 # process will fail.
581 self.announce(
582 'WARNING: skipping import check for "%s"' %
583 ext.name)
584 return
585
Jason Tishler24cf7762002-05-22 16:46:15 +0000586 # Workaround for Cygwin: Cygwin currently has fork issues when many
587 # modules have been imported
Victor Stinner4cbea512019-02-28 17:48:38 +0100588 if CYGWIN:
Jason Tishler24cf7762002-05-22 16:46:15 +0000589 self.announce('WARNING: skipping import check for Cygwin-based "%s"'
590 % ext.name)
591 return
Michael W. Hudsonaf142892002-01-23 15:07:46 +0000592 ext_filename = os.path.join(
593 self.build_lib,
594 self.get_ext_filename(self.get_ext_fullname(ext.name)))
Guido van Rossumc3fee692008-07-17 16:23:53 +0000595
596 # If the build directory didn't exist when setup.py was
597 # started, sys.path_importer_cache has a negative result
598 # cached. Clear that cache before trying to import.
599 sys.path_importer_cache.clear()
600
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200601 # Don't try to load extensions for cross builds
Victor Stinner4cbea512019-02-28 17:48:38 +0100602 if CROSS_COMPILING:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200603 return
604
Brett Cannonca5ff3a2013-06-15 17:52:59 -0400605 loader = importlib.machinery.ExtensionFileLoader(ext.name, ext_filename)
Eric Snow335e14d2014-01-04 15:09:28 -0700606 spec = importlib.util.spec_from_file_location(ext.name, ext_filename,
607 loader=loader)
Andrew M. Kuchling62686692001-05-21 20:48:09 +0000608 try:
Brett Cannon2a17bde2014-05-30 14:55:29 -0400609 importlib._bootstrap._load(spec)
Guido van Rossumb940e112007-01-10 16:19:56 +0000610 except ImportError as why:
Benjamin Peterson5c2ac8c2014-04-30 11:06:16 -0400611 self.failed_on_import.append(ext.name)
Neal Norwitz6e2d1c72003-02-28 17:39:42 +0000612 self.announce('*** WARNING: renaming "%s" since importing it'
613 ' failed: %s' % (ext.name, why), level=3)
614 assert not self.inplace
615 basename, tail = os.path.splitext(ext_filename)
616 newname = basename + "_failed" + tail
617 if os.path.exists(newname):
618 os.remove(newname)
619 os.rename(ext_filename, newname)
620
Neal Norwitz3f5fcc82003-02-28 17:21:39 +0000621 except:
Neal Norwitz3f5fcc82003-02-28 17:21:39 +0000622 exc_type, why, tb = sys.exc_info()
Neal Norwitz6e2d1c72003-02-28 17:39:42 +0000623 self.announce('*** WARNING: importing extension "%s" '
624 'failed with %s: %s' % (ext.name, exc_type, why),
625 level=3)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000626 self.failed.append(ext.name)
Fred Drake9028d0a2001-12-06 22:59:54 +0000627
Barry Warsaw5ca305a2011-04-06 15:18:12 -0400628 def add_multiarch_paths(self):
629 # Debian/Ubuntu multiarch support.
630 # https://wiki.ubuntu.com/MultiarchSpec
doko@ubuntu.com3277b352012-08-08 12:15:55 +0200631 cc = sysconfig.get_config_var('CC')
632 tmpfile = os.path.join(self.build_temp, 'multiarch')
633 if not os.path.exists(self.build_temp):
634 os.makedirs(self.build_temp)
Victor Stinner6b982c22020-04-01 01:10:07 +0200635 ret = run_command(
doko@ubuntu.com3277b352012-08-08 12:15:55 +0200636 '%s -print-multiarch > %s 2> /dev/null' % (cc, tmpfile))
637 multiarch_path_component = ''
638 try:
Victor Stinner6b982c22020-04-01 01:10:07 +0200639 if ret == 0:
doko@ubuntu.com3277b352012-08-08 12:15:55 +0200640 with open(tmpfile) as fp:
641 multiarch_path_component = fp.readline().strip()
642 finally:
643 os.unlink(tmpfile)
644
645 if multiarch_path_component != '':
646 add_dir_to_list(self.compiler.library_dirs,
647 '/usr/lib/' + multiarch_path_component)
648 add_dir_to_list(self.compiler.include_dirs,
649 '/usr/include/' + multiarch_path_component)
650 return
651
Barry Warsaw88e19452011-04-07 10:40:36 -0400652 if not find_executable('dpkg-architecture'):
653 return
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200654 opt = ''
Victor Stinner4cbea512019-02-28 17:48:38 +0100655 if CROSS_COMPILING:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200656 opt = '-t' + sysconfig.get_config_var('HOST_GNU_TYPE')
Barry Warsaw5ca305a2011-04-06 15:18:12 -0400657 tmpfile = os.path.join(self.build_temp, 'multiarch')
658 if not os.path.exists(self.build_temp):
659 os.makedirs(self.build_temp)
Victor Stinner6b982c22020-04-01 01:10:07 +0200660 ret = run_command(
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200661 'dpkg-architecture %s -qDEB_HOST_MULTIARCH > %s 2> /dev/null' %
662 (opt, tmpfile))
Barry Warsaw5ca305a2011-04-06 15:18:12 -0400663 try:
Victor Stinner6b982c22020-04-01 01:10:07 +0200664 if ret == 0:
Barry Warsaw5ca305a2011-04-06 15:18:12 -0400665 with open(tmpfile) as fp:
666 multiarch_path_component = fp.readline().strip()
667 add_dir_to_list(self.compiler.library_dirs,
668 '/usr/lib/' + multiarch_path_component)
669 add_dir_to_list(self.compiler.include_dirs,
670 '/usr/include/' + multiarch_path_component)
671 finally:
672 os.unlink(tmpfile)
673
pxinwr32f5fdd2019-02-27 19:09:28 +0800674 def add_cross_compiling_paths(self):
675 cc = sysconfig.get_config_var('CC')
676 tmpfile = os.path.join(self.build_temp, 'ccpaths')
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200677 if not os.path.exists(self.build_temp):
678 os.makedirs(self.build_temp)
Victor Stinner6b982c22020-04-01 01:10:07 +0200679 ret = run_command('%s -E -v - </dev/null 2>%s 1>/dev/null' % (cc, tmpfile))
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200680 is_gcc = False
pxinwr32f5fdd2019-02-27 19:09:28 +0800681 is_clang = False
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200682 in_incdirs = False
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200683 try:
Victor Stinner6b982c22020-04-01 01:10:07 +0200684 if ret == 0:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200685 with open(tmpfile) as fp:
686 for line in fp.readlines():
687 if line.startswith("gcc version"):
688 is_gcc = True
pxinwr32f5fdd2019-02-27 19:09:28 +0800689 elif line.startswith("clang version"):
690 is_clang = True
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200691 elif line.startswith("#include <...>"):
692 in_incdirs = True
693 elif line.startswith("End of search list"):
694 in_incdirs = False
pxinwr32f5fdd2019-02-27 19:09:28 +0800695 elif (is_gcc or is_clang) and line.startswith("LIBRARY_PATH"):
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200696 for d in line.strip().split("=")[1].split(":"):
697 d = os.path.normpath(d)
698 if '/gcc/' not in d:
699 add_dir_to_list(self.compiler.library_dirs,
700 d)
pxinwr32f5fdd2019-02-27 19:09:28 +0800701 elif (is_gcc or is_clang) and in_incdirs and '/gcc/' not in line and '/clang/' not in line:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200702 add_dir_to_list(self.compiler.include_dirs,
703 line.strip())
704 finally:
705 os.unlink(tmpfile)
706
Victor Stinnercfe172d2019-03-01 18:21:49 +0100707 def add_ldflags_cppflags(self):
Brett Cannon516592f2004-12-07 00:42:59 +0000708 # Add paths specified in the environment variables LDFLAGS and
Brett Cannon4810eb92004-12-31 08:11:21 +0000709 # CPPFLAGS for header and library files.
Brett Cannon5399c6d2004-12-18 20:48:09 +0000710 # We must get the values from the Makefile and not the environment
711 # directly since an inconsistently reproducible issue comes up where
712 # the environment variable is not set even though the value were passed
Brett Cannon4810eb92004-12-31 08:11:21 +0000713 # into configure and stored in the Makefile (issue found on OS X 10.3).
Brett Cannon516592f2004-12-07 00:42:59 +0000714 for env_var, arg_name, dir_list in (
Tarek Ziadé36797272010-07-22 12:50:05 +0000715 ('LDFLAGS', '-R', self.compiler.runtime_library_dirs),
716 ('LDFLAGS', '-L', self.compiler.library_dirs),
717 ('CPPFLAGS', '-I', self.compiler.include_dirs)):
Brett Cannon5399c6d2004-12-18 20:48:09 +0000718 env_val = sysconfig.get_config_var(env_var)
Brett Cannon516592f2004-12-07 00:42:59 +0000719 if env_val:
Chih-Hsuan Yen09b2bec2018-07-11 16:48:43 +0800720 parser = argparse.ArgumentParser()
721 parser.add_argument(arg_name, dest="dirs", action="append")
722 options, _ = parser.parse_known_args(env_val.split())
Brett Cannon44837712005-01-02 21:54:07 +0000723 if options.dirs:
Christian Heimes292d3512008-02-03 16:51:08 +0000724 for directory in reversed(options.dirs):
Brett Cannon44837712005-01-02 21:54:07 +0000725 add_dir_to_list(dir_list, directory)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000726
Victor Stinnercfe172d2019-03-01 18:21:49 +0100727 def configure_compiler(self):
728 # Ensure that /usr/local is always used, but the local build
729 # directories (i.e. '.' and 'Include') must be first. See issue
730 # 10520.
731 if not CROSS_COMPILING:
732 add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
733 add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
734 # only change this for cross builds for 3.3, issues on Mageia
735 if CROSS_COMPILING:
736 self.add_cross_compiling_paths()
737 self.add_multiarch_paths()
738 self.add_ldflags_cppflags()
739
Victor Stinner5ec33a12019-03-01 16:43:28 +0100740 def init_inc_lib_dirs(self):
Victor Stinner4cbea512019-02-28 17:48:38 +0100741 if (not CROSS_COMPILING and
Xavier de Gaye1351c312016-12-14 11:14:33 +0100742 os.path.normpath(sys.base_prefix) != '/usr' and
743 not sysconfig.get_config_var('PYTHONFRAMEWORK')):
Ronald Oussorenf3500e12010-10-20 13:10:12 +0000744 # OSX note: Don't add LIBDIR and INCLUDEDIR to building a framework
745 # (PYTHONFRAMEWORK is set) to avoid # linking problems when
746 # building a framework with different architectures than
747 # the one that is currently installed (issue #7473)
Tarek Ziadé36797272010-07-22 12:50:05 +0000748 add_dir_to_list(self.compiler.library_dirs,
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000749 sysconfig.get_config_var("LIBDIR"))
Tarek Ziadé36797272010-07-22 12:50:05 +0000750 add_dir_to_list(self.compiler.include_dirs,
Michael W. Hudson90b8e4d2002-08-02 13:55:50 +0000751 sysconfig.get_config_var("INCLUDEDIR"))
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000752
xdegaye77f51392017-11-25 17:25:30 +0100753 system_lib_dirs = ['/lib64', '/usr/lib64', '/lib', '/usr/lib']
754 system_include_dirs = ['/usr/include']
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +0000755 # lib_dirs and inc_dirs are used to search for files;
756 # if a file is found in one of those directories, it can
757 # be assumed that no additional -I,-L directives are needed.
Victor Stinner4cbea512019-02-28 17:48:38 +0100758 if not CROSS_COMPILING:
Victor Stinner625dbf22019-03-01 15:59:39 +0100759 self.lib_dirs = self.compiler.library_dirs + system_lib_dirs
760 self.inc_dirs = self.compiler.include_dirs + system_include_dirs
Christian Heimesf19529c2012-12-12 12:41:00 +0100761 else:
xdegaye77f51392017-11-25 17:25:30 +0100762 # Add the sysroot paths. 'sysroot' is a compiler option used to
763 # set the logical path of the standard system headers and
764 # libraries.
Victor Stinner625dbf22019-03-01 15:59:39 +0100765 self.lib_dirs = (self.compiler.library_dirs +
766 sysroot_paths(('LDFLAGS', 'CC'), system_lib_dirs))
767 self.inc_dirs = (self.compiler.include_dirs +
768 sysroot_paths(('CPPFLAGS', 'CFLAGS', 'CC'),
769 system_include_dirs))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000770
Brett Cannon4454a1f2005-04-15 20:32:39 +0000771 config_h = sysconfig.get_config_h_filename()
Brett Cannon9f5db072010-10-29 20:19:27 +0000772 with open(config_h) as file:
Victor Stinner5ec33a12019-03-01 16:43:28 +0100773 self.config_h_vars = sysconfig.parse_config_h(file)
Brett Cannon4454a1f2005-04-15 20:32:39 +0000774
Andrew M. Kuchling7883dc82003-10-24 18:26:26 +0000775 # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb)
Victor Stinner4cbea512019-02-28 17:48:38 +0100776 if HOST_PLATFORM in ['osf1', 'unixware7', 'openunix8']:
Victor Stinner625dbf22019-03-01 15:59:39 +0100777 self.lib_dirs += ['/usr/ccs/lib']
Skip Montanaro22e00c42003-05-06 20:43:34 +0000778
Charles-François Natali5739e102012-04-12 19:07:25 +0200779 # HP-UX11iv3 keeps files in lib/hpux folders.
Victor Stinner4cbea512019-02-28 17:48:38 +0100780 if HOST_PLATFORM == 'hp-ux11':
Victor Stinner625dbf22019-03-01 15:59:39 +0100781 self.lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
Charles-François Natali5739e102012-04-12 19:07:25 +0200782
Victor Stinner4cbea512019-02-28 17:48:38 +0100783 if MACOS:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000784 # This should work on any unixy platform ;-)
785 # If the user has bothered specifying additional -I and -L flags
786 # in OPT and LDFLAGS we might as well use them here.
Barry Warsaw807bd0a2010-11-24 20:30:00 +0000787 #
788 # NOTE: using shlex.split would technically be more correct, but
789 # also gives a bootstrap problem. Let's hope nobody uses
790 # directories with whitespace in the name to store libraries.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000791 cflags, ldflags = sysconfig.get_config_vars(
792 'CFLAGS', 'LDFLAGS')
793 for item in cflags.split():
794 if item.startswith('-I'):
Victor Stinner625dbf22019-03-01 15:59:39 +0100795 self.inc_dirs.append(item[2:])
Thomas Wouters477c8d52006-05-27 19:21:47 +0000796
797 for item in ldflags.split():
798 if item.startswith('-L'):
Victor Stinner625dbf22019-03-01 15:59:39 +0100799 self.lib_dirs.append(item[2:])
Thomas Wouters477c8d52006-05-27 19:21:47 +0000800
Victor Stinner5ec33a12019-03-01 16:43:28 +0100801 def detect_simple_extensions(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000802 #
803 # The following modules are all pretty straightforward, and compile
804 # on pretty much any POSIXish platform.
805 #
Fredrik Lundhade711a2001-01-24 08:00:28 +0000806
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000807 # array objects
Victor Stinner8058bda2019-03-01 15:31:45 +0100808 self.add(Extension('array', ['arraymodule.c']))
Martin Panterc9deece2016-02-03 05:19:44 +0000809
Yury Selivanovf23746a2018-01-22 19:11:18 -0500810 # Context Variables
Victor Stinner8058bda2019-03-01 15:31:45 +0100811 self.add(Extension('_contextvars', ['_contextvarsmodule.c']))
Yury Selivanovf23746a2018-01-22 19:11:18 -0500812
Martin Panterc9deece2016-02-03 05:19:44 +0000813 shared_math = 'Modules/_math.o'
Victor Stinnercfe172d2019-03-01 18:21:49 +0100814
815 # math library functions, e.g. sin()
816 self.add(Extension('math', ['mathmodule.c'],
Victor Stinnere9e7d282020-02-12 22:54:42 +0100817 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
Victor Stinner8058bda2019-03-01 15:31:45 +0100818 extra_objects=[shared_math],
819 depends=['_math.h', shared_math],
820 libraries=['m']))
Victor Stinnercfe172d2019-03-01 18:21:49 +0100821
822 # complex math library functions
823 self.add(Extension('cmath', ['cmathmodule.c'],
Victor Stinnere9e7d282020-02-12 22:54:42 +0100824 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
Victor Stinner8058bda2019-03-01 15:31:45 +0100825 extra_objects=[shared_math],
826 depends=['_math.h', shared_math],
827 libraries=['m']))
Victor Stinnere0be4232011-10-25 13:06:09 +0200828
829 # time libraries: librt may be needed for clock_gettime()
830 time_libs = []
831 lib = sysconfig.get_config_var('TIMEMODULE_LIB')
832 if lib:
833 time_libs.append(lib)
834
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000835 # time operations and variables
Victor Stinner8058bda2019-03-01 15:31:45 +0100836 self.add(Extension('time', ['timemodule.c'],
837 libraries=time_libs))
Benjamin Peterson8acaa312017-11-12 20:53:39 -0800838 # libm is needed by delta_new() that uses round() and by accum() that
839 # uses modf().
Victor Stinner8058bda2019-03-01 15:31:45 +0100840 self.add(Extension('_datetime', ['_datetimemodule.c'],
Victor Stinner04fc4f22020-06-16 01:28:07 +0200841 libraries=['m'],
842 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Paul Ganssle62972d92020-05-16 04:20:06 -0400843 # zoneinfo module
Victor Stinner37834132020-10-27 17:12:53 +0100844 self.add(Extension('_zoneinfo', ['_zoneinfo.c'],
845 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Christian Heimesfe337bf2008-03-23 21:54:12 +0000846 # random number generator implemented in C
Victor Stinner9f5fe792020-04-17 19:05:35 +0200847 self.add(Extension("_random", ["_randommodule.c"],
848 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Raymond Hettinger0c410272004-01-05 10:13:35 +0000849 # bisect
Victor Stinner8058bda2019-03-01 15:31:45 +0100850 self.add(Extension("_bisect", ["_bisectmodule.c"]))
Raymond Hettingerb3af1812003-11-08 10:24:38 +0000851 # heapq
Victor Stinnerc45dbe932020-06-22 17:39:32 +0200852 self.add(Extension("_heapq", ["_heapqmodule.c"],
853 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Alexandre Vassalottica2d6102008-06-12 18:26:05 +0000854 # C-optimized pickle replacement
Victor Stinner5c75f372019-04-17 23:02:26 +0200855 self.add(Extension("_pickle", ["_pickle.c"],
Victor Stinner57491342019-04-23 12:26:33 +0200856 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Christian Heimes90540002008-05-08 14:29:10 +0000857 # _json speedups
Victor Stinner8058bda2019-03-01 15:31:45 +0100858 self.add(Extension("_json", ["_json.c"],
Victor Stinner57491342019-04-23 12:26:33 +0200859 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Victor Stinnercfe172d2019-03-01 18:21:49 +0100860
Fred Drake0e474a82007-10-11 18:01:43 +0000861 # profiler (_lsprof is for cProfile.py)
Victor Stinner8058bda2019-03-01 15:31:45 +0100862 self.add(Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000863 # static Unicode character database
Victor Stinner8058bda2019-03-01 15:31:45 +0100864 self.add(Extension('unicodedata', ['unicodedata.c'],
Victor Stinner47e1afd2020-10-26 16:43:47 +0100865 depends=['unicodedata_db.h', 'unicodename_db.h'],
866 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Larry Hastings3a907972013-11-23 14:49:22 -0800867 # _opcode module
Victor Stinner8058bda2019-03-01 15:31:45 +0100868 self.add(Extension('_opcode', ['_opcode.c']))
INADA Naoki9f2ce252016-10-15 15:39:19 +0900869 # asyncio speedups
Chris Jerdonekda742ba2020-05-17 22:47:31 -0700870 self.add(Extension("_asyncio", ["_asynciomodule.c"],
871 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Ivan Levkivskyi03e3c342018-02-18 12:41:58 +0000872 # _abc speedups
Victor Stinner8058bda2019-03-01 15:31:45 +0100873 self.add(Extension("_abc", ["_abc.c"]))
Antoine Pitrou94e16962018-01-16 00:27:16 +0100874 # _queue module
Victor Stinner8058bda2019-03-01 15:31:45 +0100875 self.add(Extension("_queue", ["_queuemodule.c"]))
Dong-hee Na0a18ee42019-08-24 07:20:30 +0900876 # _statistics module
877 self.add(Extension("_statistics", ["_statisticsmodule.c"]))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000878
879 # Modules with some UNIX dependencies -- on by default:
880 # (If you have a really backward UNIX, select and socket may not be
881 # supported...)
882
883 # fcntl(2) and ioctl(2)
Antoine Pitroua3000072010-09-07 14:52:42 +0000884 libs = []
Victor Stinner5ec33a12019-03-01 16:43:28 +0100885 if (self.config_h_vars.get('FLOCK_NEEDS_LIBBSD', False)):
Antoine Pitroua3000072010-09-07 14:52:42 +0000886 # May be necessary on AIX for flock function
887 libs = ['bsd']
Victor Stinner8058bda2019-03-01 15:31:45 +0100888 self.add(Extension('fcntl', ['fcntlmodule.c'],
889 libraries=libs))
Ronald Oussoren94f25282010-05-05 19:11:21 +0000890 # pwd(3)
Victor Stinner8058bda2019-03-01 15:31:45 +0100891 self.add(Extension('pwd', ['pwdmodule.c']))
Ronald Oussoren94f25282010-05-05 19:11:21 +0000892 # grp(3)
pxinwr32f5fdd2019-02-27 19:09:28 +0800893 if not VXWORKS:
Victor Stinner8058bda2019-03-01 15:31:45 +0100894 self.add(Extension('grp', ['grpmodule.c']))
Ronald Oussoren94f25282010-05-05 19:11:21 +0000895 # spwd, shadow passwords
Victor Stinner5ec33a12019-03-01 16:43:28 +0100896 if (self.config_h_vars.get('HAVE_GETSPNAM', False) or
897 self.config_h_vars.get('HAVE_GETSPENT', False)):
Victor Stinner8058bda2019-03-01 15:31:45 +0100898 self.add(Extension('spwd', ['spwdmodule.c']))
Michael Felt08970cb2019-06-21 15:58:00 +0200899 # AIX has shadow passwords, but access is not via getspent(), etc.
900 # module support is not expected so it not 'missing'
901 elif not AIX:
Victor Stinner8058bda2019-03-01 15:31:45 +0100902 self.missing.append('spwd')
Guido van Rossumd8faa362007-04-27 19:54:29 +0000903
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000904 # select(2); not on ancient System V
Victor Stinner8058bda2019-03-01 15:31:45 +0100905 self.add(Extension('select', ['selectmodule.c']))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000906
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000907 # Memory-mapped files (also works on Win32).
Victor Stinner8058bda2019-03-01 15:31:45 +0100908 self.add(Extension('mmap', ['mmapmodule.c']))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000909
Andrew M. Kuchling57269d02004-08-31 13:37:25 +0000910 # Lance Ellinghaus's syslog module
Ronald Oussoren94f25282010-05-05 19:11:21 +0000911 # syslog daemon interface
Victor Stinner8058bda2019-03-01 15:31:45 +0100912 self.add(Extension('syslog', ['syslogmodule.c']))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000913
Eric Snow7f8bfc92018-01-29 18:23:44 -0700914 # Python interface to subinterpreter C-API.
Eric Snowc11183c2019-03-15 16:35:46 -0600915 self.add(Extension('_xxsubinterpreters', ['_xxsubinterpretersmodule.c']))
Eric Snow7f8bfc92018-01-29 18:23:44 -0700916
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000917 #
Andrew M. Kuchling5bbc7b92001-01-18 20:39:34 +0000918 # Here ends the simple stuff. From here on, modules need certain
919 # libraries, are platform-specific, or present other surprises.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000920 #
921
922 # Multimedia modules
923 # These don't work for 64-bit platforms!!!
924 # These represent audio samples or images as strings:
Victor Stinnerdef80722016-04-19 15:58:11 +0200925 #
Neal Norwitz5e4a3b82004-07-19 16:55:07 +0000926 # Operations on audio samples
Tim Petersf9cbf212004-07-23 02:50:10 +0000927 # According to #993173, this one should actually work fine on
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000928 # 64-bit platforms.
Victor Stinnerdef80722016-04-19 15:58:11 +0200929 #
Benjamin Peterson8acaa312017-11-12 20:53:39 -0800930 # audioop needs libm for floor() in multiple functions.
Victor Stinner8058bda2019-03-01 15:31:45 +0100931 self.add(Extension('audioop', ['audioop.c'],
932 libraries=['m']))
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000933
Victor Stinner5ec33a12019-03-01 16:43:28 +0100934 # CSV files
935 self.add(Extension('_csv', ['_csv.c']))
936
937 # POSIX subprocess module helper.
Kyle Evans79925792020-10-13 15:04:44 -0500938 self.add(Extension('_posixsubprocess', ['_posixsubprocess.c'],
939 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Victor Stinner5ec33a12019-03-01 16:43:28 +0100940
Victor Stinnercfe172d2019-03-01 18:21:49 +0100941 def detect_test_extensions(self):
942 # Python C API test module
943 self.add(Extension('_testcapi', ['_testcapimodule.c'],
944 depends=['testcapi_long.h']))
945
Victor Stinner23bace22019-04-18 11:37:26 +0200946 # Python Internal C API test module
947 self.add(Extension('_testinternalcapi', ['_testinternalcapi.c'],
Victor Stinner57491342019-04-23 12:26:33 +0200948 extra_compile_args=['-DPy_BUILD_CORE_MODULE']))
Victor Stinner23bace22019-04-18 11:37:26 +0200949
Victor Stinnercfe172d2019-03-01 18:21:49 +0100950 # Python PEP-3118 (buffer protocol) test module
951 self.add(Extension('_testbuffer', ['_testbuffer.c']))
952
953 # Test loading multiple modules from one compiled file (http://bugs.python.org/issue16421)
954 self.add(Extension('_testimportmultiple', ['_testimportmultiple.c']))
955
956 # Test multi-phase extension module init (PEP 489)
957 self.add(Extension('_testmultiphase', ['_testmultiphase.c']))
958
959 # Fuzz tests.
960 self.add(Extension('_xxtestfuzz',
961 ['_xxtestfuzz/_xxtestfuzz.c',
962 '_xxtestfuzz/fuzzer.c']))
963
Victor Stinner5ec33a12019-03-01 16:43:28 +0100964 def detect_readline_curses(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +0000965 # readline
Victor Stinner625dbf22019-03-01 15:59:39 +0100966 do_readline = self.compiler.find_library_file(self.lib_dirs, 'readline')
Stefan Krah095b2732010-06-08 13:41:44 +0000967 readline_termcap_library = ""
968 curses_library = ""
doko@ubuntu.com58844492012-06-30 18:25:32 +0200969 # Cannot use os.popen here in py3k.
970 tmpfile = os.path.join(self.build_temp, 'readline_termcap_lib')
971 if not os.path.exists(self.build_temp):
972 os.makedirs(self.build_temp)
Stefan Krah095b2732010-06-08 13:41:44 +0000973 # Determine if readline is already linked against curses or tinfo.
doko@ubuntu.com58844492012-06-30 18:25:32 +0200974 if do_readline:
Victor Stinner4cbea512019-02-28 17:48:38 +0100975 if CROSS_COMPILING:
Victor Stinner6b982c22020-04-01 01:10:07 +0200976 ret = run_command("%s -d %s | grep '(NEEDED)' > %s"
doko@ubuntu.com58844492012-06-30 18:25:32 +0200977 % (sysconfig.get_config_var('READELF'),
978 do_readline, tmpfile))
979 elif find_executable('ldd'):
Victor Stinner6b982c22020-04-01 01:10:07 +0200980 ret = run_command("ldd %s > %s" % (do_readline, tmpfile))
doko@ubuntu.com58844492012-06-30 18:25:32 +0200981 else:
Victor Stinner6b982c22020-04-01 01:10:07 +0200982 ret = 1
983 if ret == 0:
Brett Cannon9f5db072010-10-29 20:19:27 +0000984 with open(tmpfile) as fp:
985 for ln in fp:
986 if 'curses' in ln:
987 readline_termcap_library = re.sub(
988 r'.*lib(n?cursesw?)\.so.*', r'\1', ln
989 ).rstrip()
990 break
991 # termcap interface split out from ncurses
992 if 'tinfo' in ln:
993 readline_termcap_library = 'tinfo'
994 break
doko@ubuntu.com4c990712012-06-30 23:28:09 +0200995 if os.path.exists(tmpfile):
996 os.unlink(tmpfile)
Stefan Krah095b2732010-06-08 13:41:44 +0000997 # Issue 7384: If readline is already linked against curses,
998 # use the same library for the readline and curses modules.
999 if 'curses' in readline_termcap_library:
1000 curses_library = readline_termcap_library
Victor Stinner625dbf22019-03-01 15:59:39 +01001001 elif self.compiler.find_library_file(self.lib_dirs, 'ncursesw'):
Stefan Krah095b2732010-06-08 13:41:44 +00001002 curses_library = 'ncursesw'
Michael Felt08970cb2019-06-21 15:58:00 +02001003 # Issue 36210: OSS provided ncurses does not link on AIX
1004 # Use IBM supplied 'curses' for successful build of _curses
1005 elif AIX and self.compiler.find_library_file(self.lib_dirs, 'curses'):
1006 curses_library = 'curses'
Victor Stinner625dbf22019-03-01 15:59:39 +01001007 elif self.compiler.find_library_file(self.lib_dirs, 'ncurses'):
Stefan Krah095b2732010-06-08 13:41:44 +00001008 curses_library = 'ncurses'
Victor Stinner625dbf22019-03-01 15:59:39 +01001009 elif self.compiler.find_library_file(self.lib_dirs, 'curses'):
Stefan Krah095b2732010-06-08 13:41:44 +00001010 curses_library = 'curses'
1011
Victor Stinner4cbea512019-02-28 17:48:38 +01001012 if MACOS:
Ronald Oussoren2efd9242009-09-20 14:53:22 +00001013 os_release = int(os.uname()[2].split('.')[0])
Ronald Oussoren961683a2010-03-08 07:09:59 +00001014 dep_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET')
Ned Deily04cdfa12014-06-25 13:36:14 -07001015 if (dep_target and
FX Coudert52916392020-12-03 04:20:18 +01001016 (tuple(int(n) for n in str(dep_target).split('.')[0:2])
Ned Deily04cdfa12014-06-25 13:36:14 -07001017 < (10, 5) ) ):
Ronald Oussoren961683a2010-03-08 07:09:59 +00001018 os_release = 8
Ronald Oussoren2efd9242009-09-20 14:53:22 +00001019 if os_release < 9:
1020 # MacOSX 10.4 has a broken readline. Don't try to build
1021 # the readline module unless the user has installed a fixed
1022 # readline package
Victor Stinner625dbf22019-03-01 15:59:39 +01001023 if find_file('readline/rlconf.h', self.inc_dirs, []) is None:
Ronald Oussoren2efd9242009-09-20 14:53:22 +00001024 do_readline = False
Jack Jansen81ae2352006-02-23 15:02:23 +00001025 if do_readline:
Victor Stinner4cbea512019-02-28 17:48:38 +01001026 if MACOS and os_release < 9:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001027 # In every directory on the search path search for a dynamic
1028 # library and then a static library, instead of first looking
Fred Drake0af17612007-09-04 19:43:19 +00001029 # for dynamic libraries on the entire path.
Martin Pantere26da7c2016-06-02 10:07:09 +00001030 # This way a statically linked custom readline gets picked up
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001031 # before the (possibly broken) dynamic library in /usr/lib.
Thomas Wouters477c8d52006-05-27 19:21:47 +00001032 readline_extra_link_args = ('-Wl,-search_paths_first',)
1033 else:
1034 readline_extra_link_args = ()
1035
Marc-André Lemburg2efc3232001-01-26 18:23:02 +00001036 readline_libs = ['readline']
Stefan Krah095b2732010-06-08 13:41:44 +00001037 if readline_termcap_library:
1038 pass # Issue 7384: Already linked against curses or tinfo.
1039 elif curses_library:
1040 readline_libs.append(curses_library)
Victor Stinner625dbf22019-03-01 15:59:39 +01001041 elif self.compiler.find_library_file(self.lib_dirs +
Tarek Ziadédd07ebb2009-07-06 13:52:17 +00001042 ['/usr/lib/termcap'],
1043 'termcap'):
Marc-André Lemburg2efc3232001-01-26 18:23:02 +00001044 readline_libs.append('termcap')
Victor Stinner8058bda2019-03-01 15:31:45 +01001045 self.add(Extension('readline', ['readline.c'],
1046 library_dirs=['/usr/lib/termcap'],
1047 extra_link_args=readline_extra_link_args,
1048 libraries=readline_libs))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001049 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001050 self.missing.append('readline')
Guido van Rossumd8faa362007-04-27 19:54:29 +00001051
Victor Stinner5ec33a12019-03-01 16:43:28 +01001052 # Curses support, requiring the System V version of curses, often
1053 # provided by the ncurses library.
1054 curses_defines = []
1055 curses_includes = []
1056 panel_library = 'panel'
1057 if curses_library == 'ncursesw':
1058 curses_defines.append(('HAVE_NCURSESW', '1'))
1059 if not CROSS_COMPILING:
1060 curses_includes.append('/usr/include/ncursesw')
1061 # Bug 1464056: If _curses.so links with ncursesw,
1062 # _curses_panel.so must link with panelw.
1063 panel_library = 'panelw'
1064 if MACOS:
1065 # On OS X, there is no separate /usr/lib/libncursesw nor
1066 # libpanelw. If we are here, we found a locally-supplied
1067 # version of libncursesw. There should also be a
1068 # libpanelw. _XOPEN_SOURCE defines are usually excluded
1069 # for OS X but we need _XOPEN_SOURCE_EXTENDED here for
1070 # ncurses wide char support
1071 curses_defines.append(('_XOPEN_SOURCE_EXTENDED', '1'))
1072 elif MACOS and curses_library == 'ncurses':
1073 # Building with the system-suppied combined libncurses/libpanel
1074 curses_defines.append(('HAVE_NCURSESW', '1'))
1075 curses_defines.append(('_XOPEN_SOURCE_EXTENDED', '1'))
Tim Peters2c60f7a2003-01-29 03:49:43 +00001076
Victor Stinnercfe172d2019-03-01 18:21:49 +01001077 curses_enabled = True
Victor Stinner5ec33a12019-03-01 16:43:28 +01001078 if curses_library.startswith('ncurses'):
1079 curses_libs = [curses_library]
1080 self.add(Extension('_curses', ['_cursesmodule.c'],
Victor Stinner37834132020-10-27 17:12:53 +01001081 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
Victor Stinner5ec33a12019-03-01 16:43:28 +01001082 include_dirs=curses_includes,
1083 define_macros=curses_defines,
1084 libraries=curses_libs))
1085 elif curses_library == 'curses' and not MACOS:
1086 # OSX has an old Berkeley curses, not good enough for
1087 # the _curses module.
1088 if (self.compiler.find_library_file(self.lib_dirs, 'terminfo')):
1089 curses_libs = ['curses', 'terminfo']
1090 elif (self.compiler.find_library_file(self.lib_dirs, 'termcap')):
1091 curses_libs = ['curses', 'termcap']
1092 else:
1093 curses_libs = ['curses']
1094
1095 self.add(Extension('_curses', ['_cursesmodule.c'],
Victor Stinner37834132020-10-27 17:12:53 +01001096 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
Victor Stinner5ec33a12019-03-01 16:43:28 +01001097 define_macros=curses_defines,
1098 libraries=curses_libs))
1099 else:
Victor Stinnercfe172d2019-03-01 18:21:49 +01001100 curses_enabled = False
Victor Stinner5ec33a12019-03-01 16:43:28 +01001101 self.missing.append('_curses')
1102
1103 # If the curses module is enabled, check for the panel module
Michael Felt08970cb2019-06-21 15:58:00 +02001104 # _curses_panel needs some form of ncurses
1105 skip_curses_panel = True if AIX else False
1106 if (curses_enabled and not skip_curses_panel and
1107 self.compiler.find_library_file(self.lib_dirs, panel_library)):
Victor Stinner5ec33a12019-03-01 16:43:28 +01001108 self.add(Extension('_curses_panel', ['_curses_panel.c'],
Michael Felt08970cb2019-06-21 15:58:00 +02001109 include_dirs=curses_includes,
1110 define_macros=curses_defines,
1111 libraries=[panel_library, *curses_libs]))
1112 elif not skip_curses_panel:
Victor Stinner5ec33a12019-03-01 16:43:28 +01001113 self.missing.append('_curses_panel')
1114
1115 def detect_crypt(self):
1116 # crypt module.
pxinwr236d0b72019-04-15 17:02:20 +08001117 if VXWORKS:
1118 # bpo-31904: crypt() function is not provided by VxWorks.
1119 # DES_crypt() OpenSSL provides is too weak to implement
1120 # the encryption.
1121 return
1122
Victor Stinner625dbf22019-03-01 15:59:39 +01001123 if self.compiler.find_library_file(self.lib_dirs, 'crypt'):
Ronald Oussoren94f25282010-05-05 19:11:21 +00001124 libs = ['crypt']
Guido van Rossumd8faa362007-04-27 19:54:29 +00001125 else:
Ronald Oussoren94f25282010-05-05 19:11:21 +00001126 libs = []
pxinwr32f5fdd2019-02-27 19:09:28 +08001127
pxinwr236d0b72019-04-15 17:02:20 +08001128 self.add(Extension('_crypt', ['_cryptmodule.c'],
Victor Stinner8058bda2019-03-01 15:31:45 +01001129 libraries=libs))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001130
Victor Stinner5ec33a12019-03-01 16:43:28 +01001131 def detect_socket(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001132 # socket(2)
Erlend Egeberg Aaslandccdcb202020-11-18 01:08:58 +01001133 kwargs = {'depends': ['socketmodule.h']}
pxinwr00a65682020-11-29 06:14:16 +08001134 if MACOS:
Erlend Egeberg Aaslandccdcb202020-11-18 01:08:58 +01001135 # Issue #35569: Expose RFC 3542 socket options.
1136 kwargs['extra_compile_args'] = ['-D__APPLE_USE_RFC_3542']
Erlend Egeberg Aasland9a45bfe2020-05-17 08:32:46 +02001137
Erlend Egeberg Aaslandccdcb202020-11-18 01:08:58 +01001138 self.add(Extension('_socket', ['socketmodule.c'], **kwargs))
pxinwr32f5fdd2019-02-27 19:09:28 +08001139
Victor Stinner5ec33a12019-03-01 16:43:28 +01001140 def detect_dbm_gdbm(self):
Georg Brandl489cb4f2009-07-11 10:08:49 +00001141 # Modules that provide persistent dictionary-like semantics. You will
1142 # probably want to arrange for at least one of them to be available on
1143 # your machine, though none are defined by default because of library
1144 # dependencies. The Python module dbm/__init__.py provides an
1145 # implementation independent wrapper for these; dbm/dumb.py provides
1146 # similar functionality (but slower of course) implemented in Python.
1147
1148 # Sleepycat^WOracle Berkeley DB interface.
1149 # http://www.oracle.com/database/berkeley-db/db/index.html
1150 #
1151 # This requires the Sleepycat^WOracle DB code. The supported versions
1152 # are set below. Visit the URL above to download
1153 # a release. Most open source OSes come with one or more
1154 # versions of BerkeleyDB already installed.
1155
doko@ubuntu.com15bac0f2012-07-01 10:35:54 +02001156 max_db_ver = (5, 3)
Georg Brandl489cb4f2009-07-11 10:08:49 +00001157 min_db_ver = (3, 3)
1158 db_setup_debug = False # verbose debug prints from this script?
1159
1160 def allow_db_ver(db_ver):
1161 """Returns a boolean if the given BerkeleyDB version is acceptable.
1162
1163 Args:
1164 db_ver: A tuple of the version to verify.
1165 """
1166 if not (min_db_ver <= db_ver <= max_db_ver):
1167 return False
1168 return True
1169
1170 def gen_db_minor_ver_nums(major):
1171 if major == 4:
1172 for x in range(max_db_ver[1]+1):
1173 if allow_db_ver((4, x)):
1174 yield x
1175 elif major == 3:
1176 for x in (3,):
1177 if allow_db_ver((3, x)):
1178 yield x
1179 else:
1180 raise ValueError("unknown major BerkeleyDB version", major)
1181
1182 # construct a list of paths to look for the header file in on
1183 # top of the normal inc_dirs.
1184 db_inc_paths = [
1185 '/usr/include/db4',
1186 '/usr/local/include/db4',
1187 '/opt/sfw/include/db4',
1188 '/usr/include/db3',
1189 '/usr/local/include/db3',
1190 '/opt/sfw/include/db3',
1191 # Fink defaults (http://fink.sourceforge.net/)
1192 '/sw/include/db4',
1193 '/sw/include/db3',
1194 ]
1195 # 4.x minor number specific paths
1196 for x in gen_db_minor_ver_nums(4):
1197 db_inc_paths.append('/usr/include/db4%d' % x)
1198 db_inc_paths.append('/usr/include/db4.%d' % x)
1199 db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x)
1200 db_inc_paths.append('/usr/local/include/db4%d' % x)
1201 db_inc_paths.append('/pkg/db-4.%d/include' % x)
1202 db_inc_paths.append('/opt/db-4.%d/include' % x)
1203 # MacPorts default (http://www.macports.org/)
1204 db_inc_paths.append('/opt/local/include/db4%d' % x)
1205 # 3.x minor number specific paths
1206 for x in gen_db_minor_ver_nums(3):
1207 db_inc_paths.append('/usr/include/db3%d' % x)
1208 db_inc_paths.append('/usr/local/BerkeleyDB.3.%d/include' % x)
1209 db_inc_paths.append('/usr/local/include/db3%d' % x)
1210 db_inc_paths.append('/pkg/db-3.%d/include' % x)
1211 db_inc_paths.append('/opt/db-3.%d/include' % x)
1212
Victor Stinner4cbea512019-02-28 17:48:38 +01001213 if CROSS_COMPILING:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001214 db_inc_paths = []
1215
Georg Brandl489cb4f2009-07-11 10:08:49 +00001216 # Add some common subdirectories for Sleepycat DB to the list,
1217 # based on the standard include directories. This way DB3/4 gets
1218 # picked up when it is installed in a non-standard prefix and
1219 # the user has added that prefix into inc_dirs.
1220 std_variants = []
Victor Stinner625dbf22019-03-01 15:59:39 +01001221 for dn in self.inc_dirs:
Georg Brandl489cb4f2009-07-11 10:08:49 +00001222 std_variants.append(os.path.join(dn, 'db3'))
1223 std_variants.append(os.path.join(dn, 'db4'))
1224 for x in gen_db_minor_ver_nums(4):
1225 std_variants.append(os.path.join(dn, "db4%d"%x))
1226 std_variants.append(os.path.join(dn, "db4.%d"%x))
1227 for x in gen_db_minor_ver_nums(3):
1228 std_variants.append(os.path.join(dn, "db3%d"%x))
1229 std_variants.append(os.path.join(dn, "db3.%d"%x))
1230
1231 db_inc_paths = std_variants + db_inc_paths
1232 db_inc_paths = [p for p in db_inc_paths if os.path.exists(p)]
1233
1234 db_ver_inc_map = {}
1235
Victor Stinner4cbea512019-02-28 17:48:38 +01001236 if MACOS:
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001237 sysroot = macosx_sdk_root()
1238
Georg Brandl489cb4f2009-07-11 10:08:49 +00001239 class db_found(Exception): pass
1240 try:
1241 # See whether there is a Sleepycat header in the standard
1242 # search path.
Victor Stinner625dbf22019-03-01 15:59:39 +01001243 for d in self.inc_dirs + db_inc_paths:
Georg Brandl489cb4f2009-07-11 10:08:49 +00001244 f = os.path.join(d, "db.h")
Victor Stinner4cbea512019-02-28 17:48:38 +01001245 if MACOS and is_macosx_sdk_path(d):
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001246 f = os.path.join(sysroot, d[1:], "db.h")
1247
Georg Brandl489cb4f2009-07-11 10:08:49 +00001248 if db_setup_debug: print("db: looking for db.h in", f)
1249 if os.path.exists(f):
Brett Cannon9f5db072010-10-29 20:19:27 +00001250 with open(f, 'rb') as file:
1251 f = file.read()
Benjamin Peterson019f3612009-08-12 18:18:03 +00001252 m = re.search(br"#define\WDB_VERSION_MAJOR\W(\d+)", f)
Georg Brandl489cb4f2009-07-11 10:08:49 +00001253 if m:
1254 db_major = int(m.group(1))
Benjamin Peterson019f3612009-08-12 18:18:03 +00001255 m = re.search(br"#define\WDB_VERSION_MINOR\W(\d+)", f)
Georg Brandl489cb4f2009-07-11 10:08:49 +00001256 db_minor = int(m.group(1))
1257 db_ver = (db_major, db_minor)
1258
1259 # Avoid 4.6 prior to 4.6.21 due to a BerkeleyDB bug
1260 if db_ver == (4, 6):
Benjamin Peterson019f3612009-08-12 18:18:03 +00001261 m = re.search(br"#define\WDB_VERSION_PATCH\W(\d+)", f)
Georg Brandl489cb4f2009-07-11 10:08:49 +00001262 db_patch = int(m.group(1))
1263 if db_patch < 21:
1264 print("db.h:", db_ver, "patch", db_patch,
1265 "being ignored (4.6.x must be >= 4.6.21)")
1266 continue
1267
1268 if ( (db_ver not in db_ver_inc_map) and
1269 allow_db_ver(db_ver) ):
1270 # save the include directory with the db.h version
1271 # (first occurrence only)
1272 db_ver_inc_map[db_ver] = d
1273 if db_setup_debug:
1274 print("db.h: found", db_ver, "in", d)
1275 else:
1276 # we already found a header for this library version
1277 if db_setup_debug: print("db.h: ignoring", d)
1278 else:
1279 # ignore this header, it didn't contain a version number
1280 if db_setup_debug:
1281 print("db.h: no version number version in", d)
1282
1283 db_found_vers = list(db_ver_inc_map.keys())
1284 db_found_vers.sort()
1285
1286 while db_found_vers:
1287 db_ver = db_found_vers.pop()
1288 db_incdir = db_ver_inc_map[db_ver]
1289
1290 # check lib directories parallel to the location of the header
1291 db_dirs_to_check = [
1292 db_incdir.replace("include", 'lib64'),
1293 db_incdir.replace("include", 'lib'),
1294 ]
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001295
Victor Stinner4cbea512019-02-28 17:48:38 +01001296 if not MACOS:
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001297 db_dirs_to_check = list(filter(os.path.isdir, db_dirs_to_check))
1298
1299 else:
1300 # Same as other branch, but takes OSX SDK into account
1301 tmp = []
1302 for dn in db_dirs_to_check:
1303 if is_macosx_sdk_path(dn):
1304 if os.path.isdir(os.path.join(sysroot, dn[1:])):
1305 tmp.append(dn)
1306 else:
1307 if os.path.isdir(dn):
1308 tmp.append(dn)
Ronald Oussorendc969e52010-06-27 12:37:46 +00001309 db_dirs_to_check = tmp
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001310
1311 db_dirs_to_check = tmp
Georg Brandl489cb4f2009-07-11 10:08:49 +00001312
Ezio Melotti42da6632011-03-15 05:18:48 +02001313 # Look for a version specific db-X.Y before an ambiguous dbX
Georg Brandl489cb4f2009-07-11 10:08:49 +00001314 # XXX should we -ever- look for a dbX name? Do any
1315 # systems really not name their library by version and
1316 # symlink to more general names?
1317 for dblib in (('db-%d.%d' % db_ver),
1318 ('db%d%d' % db_ver),
1319 ('db%d' % db_ver[0])):
1320 dblib_file = self.compiler.find_library_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01001321 db_dirs_to_check + self.lib_dirs, dblib )
Georg Brandl489cb4f2009-07-11 10:08:49 +00001322 if dblib_file:
1323 dblib_dir = [ os.path.abspath(os.path.dirname(dblib_file)) ]
1324 raise db_found
1325 else:
1326 if db_setup_debug: print("db lib: ", dblib, "not found")
1327
1328 except db_found:
1329 if db_setup_debug:
1330 print("bsddb using BerkeleyDB lib:", db_ver, dblib)
1331 print("bsddb lib dir:", dblib_dir, " inc dir:", db_incdir)
Georg Brandl489cb4f2009-07-11 10:08:49 +00001332 dblibs = [dblib]
doko@ubuntu.coma3818a32014-04-17 17:52:48 +02001333 # Only add the found library and include directories if they aren't
1334 # already being searched. This avoids an explicit runtime library
1335 # dependency.
Victor Stinner625dbf22019-03-01 15:59:39 +01001336 if db_incdir in self.inc_dirs:
doko@ubuntu.coma3818a32014-04-17 17:52:48 +02001337 db_incs = None
1338 else:
1339 db_incs = [db_incdir]
Victor Stinner625dbf22019-03-01 15:59:39 +01001340 if dblib_dir[0] in self.lib_dirs:
doko@ubuntu.coma3818a32014-04-17 17:52:48 +02001341 dblib_dir = None
Georg Brandl489cb4f2009-07-11 10:08:49 +00001342 else:
1343 if db_setup_debug: print("db: no appropriate library found")
1344 db_incs = None
1345 dblibs = []
1346 dblib_dir = None
1347
Victor Stinner5ec33a12019-03-01 16:43:28 +01001348 dbm_setup_debug = False # verbose debug prints from this script?
1349 dbm_order = ['gdbm']
1350 # The standard Unix dbm module:
1351 if not CYGWIN:
1352 config_args = [arg.strip("'")
1353 for arg in sysconfig.get_config_var("CONFIG_ARGS").split()]
1354 dbm_args = [arg for arg in config_args
1355 if arg.startswith('--with-dbmliborder=')]
1356 if dbm_args:
1357 dbm_order = [arg.split('=')[-1] for arg in dbm_args][-1].split(":")
1358 else:
1359 dbm_order = "ndbm:gdbm:bdb".split(":")
1360 dbmext = None
1361 for cand in dbm_order:
1362 if cand == "ndbm":
1363 if find_file("ndbm.h", self.inc_dirs, []) is not None:
1364 # Some systems have -lndbm, others have -lgdbm_compat,
1365 # others don't have either
1366 if self.compiler.find_library_file(self.lib_dirs,
1367 'ndbm'):
1368 ndbm_libs = ['ndbm']
1369 elif self.compiler.find_library_file(self.lib_dirs,
1370 'gdbm_compat'):
1371 ndbm_libs = ['gdbm_compat']
1372 else:
1373 ndbm_libs = []
1374 if dbm_setup_debug: print("building dbm using ndbm")
1375 dbmext = Extension('_dbm', ['_dbmmodule.c'],
1376 define_macros=[
1377 ('HAVE_NDBM_H',None),
1378 ],
1379 libraries=ndbm_libs)
1380 break
1381
1382 elif cand == "gdbm":
1383 if self.compiler.find_library_file(self.lib_dirs, 'gdbm'):
1384 gdbm_libs = ['gdbm']
1385 if self.compiler.find_library_file(self.lib_dirs,
1386 'gdbm_compat'):
1387 gdbm_libs.append('gdbm_compat')
1388 if find_file("gdbm/ndbm.h", self.inc_dirs, []) is not None:
1389 if dbm_setup_debug: print("building dbm using gdbm")
1390 dbmext = Extension(
1391 '_dbm', ['_dbmmodule.c'],
1392 define_macros=[
1393 ('HAVE_GDBM_NDBM_H', None),
1394 ],
1395 libraries = gdbm_libs)
1396 break
1397 if find_file("gdbm-ndbm.h", self.inc_dirs, []) is not None:
1398 if dbm_setup_debug: print("building dbm using gdbm")
1399 dbmext = Extension(
1400 '_dbm', ['_dbmmodule.c'],
1401 define_macros=[
1402 ('HAVE_GDBM_DASH_NDBM_H', None),
1403 ],
1404 libraries = gdbm_libs)
1405 break
1406 elif cand == "bdb":
1407 if dblibs:
1408 if dbm_setup_debug: print("building dbm using bdb")
1409 dbmext = Extension('_dbm', ['_dbmmodule.c'],
1410 library_dirs=dblib_dir,
1411 runtime_library_dirs=dblib_dir,
1412 include_dirs=db_incs,
1413 define_macros=[
1414 ('HAVE_BERKDB_H', None),
1415 ('DB_DBM_HSEARCH', None),
1416 ],
1417 libraries=dblibs)
1418 break
1419 if dbmext is not None:
1420 self.add(dbmext)
1421 else:
1422 self.missing.append('_dbm')
1423
1424 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
1425 if ('gdbm' in dbm_order and
1426 self.compiler.find_library_file(self.lib_dirs, 'gdbm')):
1427 self.add(Extension('_gdbm', ['_gdbmmodule.c'],
1428 libraries=['gdbm']))
1429 else:
1430 self.missing.append('_gdbm')
1431
1432 def detect_sqlite(self):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001433 # The sqlite interface
Thomas Wouters89f507f2006-12-13 04:49:30 +00001434 sqlite_setup_debug = False # verbose debug prints from this script?
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001435
1436 # We hunt for #define SQLITE_VERSION "n.n.n"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001437 sqlite_incdir = sqlite_libdir = None
1438 sqlite_inc_paths = [ '/usr/include',
1439 '/usr/include/sqlite',
1440 '/usr/include/sqlite3',
1441 '/usr/local/include',
1442 '/usr/local/include/sqlite',
1443 '/usr/local/include/sqlite3',
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001444 ]
Victor Stinner4cbea512019-02-28 17:48:38 +01001445 if CROSS_COMPILING:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001446 sqlite_inc_paths = []
Erlend Egeberg Aaslandcf0b2392021-01-06 01:02:43 +01001447 MIN_SQLITE_VERSION_NUMBER = (3, 7, 15) # Issue 40810
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001448 MIN_SQLITE_VERSION = ".".join([str(x)
1449 for x in MIN_SQLITE_VERSION_NUMBER])
Thomas Wouters477c8d52006-05-27 19:21:47 +00001450
1451 # Scan the default include directories before the SQLite specific
1452 # ones. This allows one to override the copy of sqlite on OSX,
1453 # where /usr/include contains an old version of sqlite.
Victor Stinner4cbea512019-02-28 17:48:38 +01001454 if MACOS:
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001455 sysroot = macosx_sdk_root()
1456
Victor Stinner625dbf22019-03-01 15:59:39 +01001457 for d_ in self.inc_dirs + sqlite_inc_paths:
Ned Deily9b635832012-08-05 15:13:33 -07001458 d = d_
Victor Stinner4cbea512019-02-28 17:48:38 +01001459 if MACOS and is_macosx_sdk_path(d):
Ned Deily9b635832012-08-05 15:13:33 -07001460 d = os.path.join(sysroot, d[1:])
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001461
Ned Deily9b635832012-08-05 15:13:33 -07001462 f = os.path.join(d, "sqlite3.h")
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001463 if os.path.exists(f):
Guido van Rossum452bf512007-02-09 05:32:43 +00001464 if sqlite_setup_debug: print("sqlite: found %s"%f)
Brett Cannon9f5db072010-10-29 20:19:27 +00001465 with open(f) as file:
1466 incf = file.read()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001467 m = re.search(
Petri Lehtinened909bc2013-02-23 17:05:28 +01001468 r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"([\d\.]*)"', incf)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001469 if m:
1470 sqlite_version = m.group(1)
1471 sqlite_version_tuple = tuple([int(x)
1472 for x in sqlite_version.split(".")])
1473 if sqlite_version_tuple >= MIN_SQLITE_VERSION_NUMBER:
1474 # we win!
Thomas Wouters89f507f2006-12-13 04:49:30 +00001475 if sqlite_setup_debug:
Guido van Rossum452bf512007-02-09 05:32:43 +00001476 print("%s/sqlite3.h: version %s"%(d, sqlite_version))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001477 sqlite_incdir = d
1478 break
1479 else:
1480 if sqlite_setup_debug:
Charles Pigottad0daf52019-04-26 16:38:12 +01001481 print("%s: version %s is too old, need >= %s"%(d,
Guido van Rossum452bf512007-02-09 05:32:43 +00001482 sqlite_version, MIN_SQLITE_VERSION))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001483 elif sqlite_setup_debug:
Guido van Rossum452bf512007-02-09 05:32:43 +00001484 print("sqlite: %s had no SQLITE_VERSION"%(f,))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001485
1486 if sqlite_incdir:
1487 sqlite_dirs_to_check = [
1488 os.path.join(sqlite_incdir, '..', 'lib64'),
1489 os.path.join(sqlite_incdir, '..', 'lib'),
1490 os.path.join(sqlite_incdir, '..', '..', 'lib64'),
1491 os.path.join(sqlite_incdir, '..', '..', 'lib'),
1492 ]
Tarek Ziadé36797272010-07-22 12:50:05 +00001493 sqlite_libfile = self.compiler.find_library_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01001494 sqlite_dirs_to_check + self.lib_dirs, 'sqlite3')
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001495 if sqlite_libfile:
1496 sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001497
1498 if sqlite_incdir and sqlite_libdir:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001499 sqlite_srcs = ['_sqlite/cache.c',
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001500 '_sqlite/connection.c',
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001501 '_sqlite/cursor.c',
1502 '_sqlite/microprotocols.c',
1503 '_sqlite/module.c',
1504 '_sqlite/prepare_protocol.c',
1505 '_sqlite/row.c',
1506 '_sqlite/statement.c',
1507 '_sqlite/util.c', ]
1508
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001509 sqlite_defines = []
Victor Stinner4cbea512019-02-28 17:48:38 +01001510 if not MS_WINDOWS:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001511 sqlite_defines.append(('MODULE_NAME', '"sqlite3"'))
1512 else:
1513 sqlite_defines.append(('MODULE_NAME', '\\"sqlite3\\"'))
1514
Benjamin Peterson076ed002010-10-31 17:11:02 +00001515 # Enable support for loadable extensions in the sqlite3 module
1516 # if --enable-loadable-sqlite-extensions configure option is used.
1517 if '--enable-loadable-sqlite-extensions' not in sysconfig.get_config_var("CONFIG_ARGS"):
1518 sqlite_defines.append(("SQLITE_OMIT_LOAD_EXTENSION", "1"))
Thomas Wouters477c8d52006-05-27 19:21:47 +00001519
Victor Stinner4cbea512019-02-28 17:48:38 +01001520 if MACOS:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001521 # In every directory on the search path search for a dynamic
1522 # library and then a static library, instead of first looking
Ezio Melotti13925002011-03-16 11:05:33 +02001523 # for dynamic libraries on the entire path.
1524 # This way a statically linked custom sqlite gets picked up
Thomas Wouters477c8d52006-05-27 19:21:47 +00001525 # before the dynamic library in /usr/lib.
1526 sqlite_extra_link_args = ('-Wl,-search_paths_first',)
1527 else:
1528 sqlite_extra_link_args = ()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001529
Brett Cannonc5011fe2011-06-06 20:09:10 -07001530 include_dirs = ["Modules/_sqlite"]
1531 # Only include the directory where sqlite was found if it does
1532 # not already exist in set include directories, otherwise you
1533 # can end up with a bad search path order.
1534 if sqlite_incdir not in self.compiler.include_dirs:
1535 include_dirs.append(sqlite_incdir)
doko@ubuntu.coma3818a32014-04-17 17:52:48 +02001536 # avoid a runtime library path for a system library dir
Victor Stinner625dbf22019-03-01 15:59:39 +01001537 if sqlite_libdir and sqlite_libdir[0] in self.lib_dirs:
doko@ubuntu.coma3818a32014-04-17 17:52:48 +02001538 sqlite_libdir = None
Victor Stinner8058bda2019-03-01 15:31:45 +01001539 self.add(Extension('_sqlite3', sqlite_srcs,
1540 define_macros=sqlite_defines,
1541 include_dirs=include_dirs,
1542 library_dirs=sqlite_libdir,
1543 extra_link_args=sqlite_extra_link_args,
1544 libraries=["sqlite3",]))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001545 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001546 self.missing.append('_sqlite3')
Skip Montanaro22e00c42003-05-06 20:43:34 +00001547
Victor Stinner5ec33a12019-03-01 16:43:28 +01001548 def detect_platform_specific_exts(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001549 # Unix-only modules
Victor Stinner4cbea512019-02-28 17:48:38 +01001550 if not MS_WINDOWS:
pxinwr32f5fdd2019-02-27 19:09:28 +08001551 if not VXWORKS:
1552 # Steen Lumholt's termios module
Victor Stinner8058bda2019-03-01 15:31:45 +01001553 self.add(Extension('termios', ['termios.c']))
pxinwr32f5fdd2019-02-27 19:09:28 +08001554 # Jeremy Hylton's rlimit interface
Victor Stinner8058bda2019-03-01 15:31:45 +01001555 self.add(Extension('resource', ['resource.c']))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001556 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001557 self.missing.extend(['resource', 'termios'])
Christian Heimes29a7df72018-01-26 23:28:46 +01001558
Victor Stinner5ec33a12019-03-01 16:43:28 +01001559 # Platform-specific libraries
1560 if HOST_PLATFORM.startswith(('linux', 'freebsd', 'gnukfreebsd')):
1561 self.add(Extension('ossaudiodev', ['ossaudiodev.c']))
Michael Felt08970cb2019-06-21 15:58:00 +02001562 elif not AIX:
Victor Stinner5ec33a12019-03-01 16:43:28 +01001563 self.missing.append('ossaudiodev')
Fredrik Lundhade711a2001-01-24 08:00:28 +00001564
Victor Stinner5ec33a12019-03-01 16:43:28 +01001565 if MACOS:
Ned Deily951ab582020-05-18 11:31:21 -04001566 self.add(Extension('_scproxy', ['_scproxy.c'],
Victor Stinner5ec33a12019-03-01 16:43:28 +01001567 extra_link_args=[
1568 '-framework', 'SystemConfiguration',
Ned Deily951ab582020-05-18 11:31:21 -04001569 '-framework', 'CoreFoundation']))
Fredrik Lundhade711a2001-01-24 08:00:28 +00001570
Victor Stinner5ec33a12019-03-01 16:43:28 +01001571 def detect_compress_exts(self):
Barry Warsaw259b1e12002-08-13 20:09:26 +00001572 # Andrew Kuchling's zlib module. Note that some versions of zlib
1573 # 1.1.3 have security problems. See CERT Advisory CA-2002-07:
1574 # http://www.cert.org/advisories/CA-2002-07.html
1575 #
1576 # zlib 1.1.4 is fixed, but at least one vendor (RedHat) has decided to
1577 # patch its zlib 1.1.3 package instead of upgrading to 1.1.4. For
1578 # now, we still accept 1.1.3, because we think it's difficult to
1579 # exploit this in Python, and we'd rather make it RedHat's problem
1580 # than our problem <wink>.
1581 #
1582 # You can upgrade zlib to version 1.1.4 yourself by going to
1583 # http://www.gzip.org/zlib/
Victor Stinner625dbf22019-03-01 15:59:39 +01001584 zlib_inc = find_file('zlib.h', [], self.inc_dirs)
Christian Heimes1dc54002008-03-24 02:19:29 +00001585 have_zlib = False
Guido van Rossume6970912001-04-15 15:16:12 +00001586 if zlib_inc is not None:
1587 zlib_h = zlib_inc[0] + '/zlib.h'
1588 version = '"0.0.0"'
Barry Warsaw259b1e12002-08-13 20:09:26 +00001589 version_req = '"1.1.3"'
Victor Stinner4cbea512019-02-28 17:48:38 +01001590 if MACOS and is_macosx_sdk_path(zlib_h):
Ned Deily507c5912013-10-18 21:32:00 -07001591 zlib_h = os.path.join(macosx_sdk_root(), zlib_h[1:])
Brett Cannon9f5db072010-10-29 20:19:27 +00001592 with open(zlib_h) as fp:
1593 while 1:
1594 line = fp.readline()
1595 if not line:
1596 break
1597 if line.startswith('#define ZLIB_VERSION'):
1598 version = line.split()[2]
1599 break
Guido van Rossume6970912001-04-15 15:16:12 +00001600 if version >= version_req:
Victor Stinner625dbf22019-03-01 15:59:39 +01001601 if (self.compiler.find_library_file(self.lib_dirs, 'z')):
Victor Stinner4cbea512019-02-28 17:48:38 +01001602 if MACOS:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001603 zlib_extra_link_args = ('-Wl,-search_paths_first',)
1604 else:
1605 zlib_extra_link_args = ()
Victor Stinner8058bda2019-03-01 15:31:45 +01001606 self.add(Extension('zlib', ['zlibmodule.c'],
1607 libraries=['z'],
1608 extra_link_args=zlib_extra_link_args))
Christian Heimes1dc54002008-03-24 02:19:29 +00001609 have_zlib = True
Guido van Rossumd8faa362007-04-27 19:54:29 +00001610 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001611 self.missing.append('zlib')
Guido van Rossumd8faa362007-04-27 19:54:29 +00001612 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001613 self.missing.append('zlib')
Guido van Rossumd8faa362007-04-27 19:54:29 +00001614 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001615 self.missing.append('zlib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001616
Christian Heimes1dc54002008-03-24 02:19:29 +00001617 # Helper module for various ascii-encoders. Uses zlib for an optimized
1618 # crc32 if we have it. Otherwise binascii uses its own.
1619 if have_zlib:
1620 extra_compile_args = ['-DUSE_ZLIB_CRC32']
1621 libraries = ['z']
1622 extra_link_args = zlib_extra_link_args
1623 else:
1624 extra_compile_args = []
1625 libraries = []
1626 extra_link_args = []
Victor Stinner8058bda2019-03-01 15:31:45 +01001627 self.add(Extension('binascii', ['binascii.c'],
1628 extra_compile_args=extra_compile_args,
1629 libraries=libraries,
1630 extra_link_args=extra_link_args))
Christian Heimes1dc54002008-03-24 02:19:29 +00001631
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +00001632 # Gustavo Niemeyer's bz2 module.
Victor Stinner625dbf22019-03-01 15:59:39 +01001633 if (self.compiler.find_library_file(self.lib_dirs, 'bz2')):
Victor Stinner4cbea512019-02-28 17:48:38 +01001634 if MACOS:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001635 bz2_extra_link_args = ('-Wl,-search_paths_first',)
1636 else:
1637 bz2_extra_link_args = ()
Victor Stinner8058bda2019-03-01 15:31:45 +01001638 self.add(Extension('_bz2', ['_bz2module.c'],
1639 libraries=['bz2'],
1640 extra_link_args=bz2_extra_link_args))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001641 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001642 self.missing.append('_bz2')
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +00001643
Nadeem Vawda3ff069e2011-11-30 00:25:06 +02001644 # LZMA compression support.
Victor Stinner625dbf22019-03-01 15:59:39 +01001645 if self.compiler.find_library_file(self.lib_dirs, 'lzma'):
Victor Stinner8058bda2019-03-01 15:31:45 +01001646 self.add(Extension('_lzma', ['_lzmamodule.c'],
1647 libraries=['lzma']))
Nadeem Vawda3ff069e2011-11-30 00:25:06 +02001648 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001649 self.missing.append('_lzma')
Nadeem Vawda3ff069e2011-11-30 00:25:06 +02001650
Victor Stinner5ec33a12019-03-01 16:43:28 +01001651 def detect_expat_elementtree(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001652 # Interface to the Expat XML parser
1653 #
Benjamin Petersona28e7022010-01-09 18:53:06 +00001654 # Expat was written by James Clark and is now maintained by a group of
1655 # developers on SourceForge; see www.libexpat.org for more information.
1656 # The pyexpat module was written by Paul Prescod after a prototype by
1657 # Jack Jansen. The Expat source is included in Modules/expat/. Usage
1658 # of a system shared libexpat.so is possible with --with-system-expat
Benjamin Petersonc73206c2010-10-31 16:38:19 +00001659 # configure option.
Fred Drakefc8341d2002-06-17 17:55:30 +00001660 #
1661 # More information on Expat can be found at www.libexpat.org.
1662 #
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001663 if '--with-system-expat' in sysconfig.get_config_var("CONFIG_ARGS"):
1664 expat_inc = []
1665 define_macros = []
Stefan Krah9e1e6f52017-08-25 14:07:50 +02001666 extra_compile_args = []
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001667 expat_lib = ['expat']
1668 expat_sources = []
Christian Heimesd489c7a2013-02-09 17:02:06 +01001669 expat_depends = []
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001670 else:
Victor Stinner625dbf22019-03-01 15:59:39 +01001671 expat_inc = [os.path.join(self.srcdir, 'Modules', 'expat')]
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001672 define_macros = [
1673 ('HAVE_EXPAT_CONFIG_H', '1'),
Victor Stinner93d0cb52017-08-18 23:43:54 +02001674 # bpo-30947: Python uses best available entropy sources to
1675 # call XML_SetHashSalt(), expat entropy sources are not needed
1676 ('XML_POOR_ENTROPY', '1'),
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001677 ]
Stefan Krah9e1e6f52017-08-25 14:07:50 +02001678 extra_compile_args = []
Benjamin Petersonb2d90462009-12-31 03:23:10 +00001679 expat_lib = []
1680 expat_sources = ['expat/xmlparse.c',
1681 'expat/xmlrole.c',
1682 'expat/xmltok.c']
Christian Heimesd489c7a2013-02-09 17:02:06 +01001683 expat_depends = ['expat/ascii.h',
1684 'expat/asciitab.h',
1685 'expat/expat.h',
1686 'expat/expat_config.h',
1687 'expat/expat_external.h',
1688 'expat/internal.h',
1689 'expat/latin1tab.h',
1690 'expat/utf8tab.h',
1691 'expat/xmlrole.h',
1692 'expat/xmltok.h',
1693 'expat/xmltok_impl.h'
1694 ]
Thomas Wouters477c8d52006-05-27 19:21:47 +00001695
Stefan Krah9e1e6f52017-08-25 14:07:50 +02001696 cc = sysconfig.get_config_var('CC').split()[0]
Victor Stinner6b982c22020-04-01 01:10:07 +02001697 ret = run_command(
Benjamin Peterson95da3102019-06-29 16:00:22 -07001698 '"%s" -Werror -Wno-unreachable-code -E -xc /dev/null >/dev/null 2>&1' % cc)
Victor Stinner6b982c22020-04-01 01:10:07 +02001699 if ret == 0:
Benjamin Peterson95da3102019-06-29 16:00:22 -07001700 extra_compile_args.append('-Wno-unreachable-code')
Stefan Krah9e1e6f52017-08-25 14:07:50 +02001701
Victor Stinner8058bda2019-03-01 15:31:45 +01001702 self.add(Extension('pyexpat',
1703 define_macros=define_macros,
1704 extra_compile_args=extra_compile_args,
1705 include_dirs=expat_inc,
1706 libraries=expat_lib,
1707 sources=['pyexpat.c'] + expat_sources,
1708 depends=expat_depends))
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001709
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001710 # Fredrik Lundh's cElementTree module. Note that this also
1711 # uses expat (via the CAPI hook in pyexpat).
1712
Victor Stinner625dbf22019-03-01 15:59:39 +01001713 if os.path.isfile(os.path.join(self.srcdir, 'Modules', '_elementtree.c')):
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001714 define_macros.append(('USE_PYEXPAT_CAPI', None))
Victor Stinner8058bda2019-03-01 15:31:45 +01001715 self.add(Extension('_elementtree',
1716 define_macros=define_macros,
1717 include_dirs=expat_inc,
1718 libraries=expat_lib,
1719 sources=['_elementtree.c'],
1720 depends=['pyexpat.c', *expat_sources,
1721 *expat_depends]))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001722 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001723 self.missing.append('_elementtree')
Fredrik Lundh4c86ec62005-12-14 18:46:16 +00001724
Victor Stinner5ec33a12019-03-01 16:43:28 +01001725 def detect_multibytecodecs(self):
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001726 # Hye-Shik Chang's CJKCodecs modules.
Victor Stinner8058bda2019-03-01 15:31:45 +01001727 self.add(Extension('_multibytecodec',
1728 ['cjkcodecs/multibytecodec.c']))
Walter Dörwalde9eaab42007-05-22 16:02:13 +00001729 for loc in ('kr', 'jp', 'cn', 'tw', 'hk', 'iso2022'):
Victor Stinner8058bda2019-03-01 15:31:45 +01001730 self.add(Extension('_codecs_%s' % loc,
1731 ['cjkcodecs/_codecs_%s.c' % loc]))
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001732
Victor Stinner5ec33a12019-03-01 16:43:28 +01001733 def detect_multiprocessing(self):
Benjamin Petersone711caf2008-06-11 16:44:04 +00001734 # Richard Oudkerk's multiprocessing module
Victor Stinner4cbea512019-02-28 17:48:38 +01001735 if MS_WINDOWS:
Victor Stinnerc991f242019-03-01 17:19:04 +01001736 multiprocessing_srcs = ['_multiprocessing/multiprocessing.c',
1737 '_multiprocessing/semaphore.c']
Benjamin Petersone711caf2008-06-11 16:44:04 +00001738
1739 else:
Victor Stinnerc991f242019-03-01 17:19:04 +01001740 multiprocessing_srcs = ['_multiprocessing/multiprocessing.c']
Mark Dickinsona614f042009-11-28 12:48:43 +00001741 if (sysconfig.get_config_var('HAVE_SEM_OPEN') and not
1742 sysconfig.get_config_var('POSIX_SEMAPHORES_NOT_ENABLED')):
Benjamin Petersone711caf2008-06-11 16:44:04 +00001743 multiprocessing_srcs.append('_multiprocessing/semaphore.c')
Neil Schemenauer5741c452019-02-08 10:48:46 -08001744 if (sysconfig.get_config_var('HAVE_SHM_OPEN') and
1745 sysconfig.get_config_var('HAVE_SHM_UNLINK')):
Victor Stinnerc991f242019-03-01 17:19:04 +01001746 posixshmem_srcs = ['_multiprocessing/posixshmem.c']
Davin Pottse5ef45b2019-02-01 22:52:23 -06001747 libs = []
Neil Schemenauer5741c452019-02-08 10:48:46 -08001748 if sysconfig.get_config_var('SHM_NEEDS_LIBRT'):
1749 # need to link with librt to get shm_open()
Davin Pottse5ef45b2019-02-01 22:52:23 -06001750 libs.append('rt')
Victor Stinner8058bda2019-03-01 15:31:45 +01001751 self.add(Extension('_posixshmem', posixshmem_srcs,
1752 define_macros={},
1753 libraries=libs,
1754 include_dirs=["Modules/_multiprocessing"]))
Benjamin Petersone711caf2008-06-11 16:44:04 +00001755
Victor Stinner8058bda2019-03-01 15:31:45 +01001756 self.add(Extension('_multiprocessing', multiprocessing_srcs,
Victor Stinner8058bda2019-03-01 15:31:45 +01001757 include_dirs=["Modules/_multiprocessing"]))
Guido van Rossuma9e20242007-03-08 00:43:48 +00001758
Victor Stinner5ec33a12019-03-01 16:43:28 +01001759 def detect_uuid(self):
Antoine Pitroua106aec2017-09-28 23:03:06 +02001760 # Build the _uuid module if possible
Victor Stinner625dbf22019-03-01 15:59:39 +01001761 uuid_incs = find_file("uuid.h", self.inc_dirs, ["/usr/include/uuid"])
Nick Coghlan53efbf32017-11-26 13:04:46 +10001762 if uuid_incs is not None:
Victor Stinner625dbf22019-03-01 15:59:39 +01001763 if self.compiler.find_library_file(self.lib_dirs, 'uuid'):
Antoine Pitroua106aec2017-09-28 23:03:06 +02001764 uuid_libs = ['uuid']
1765 else:
1766 uuid_libs = []
Victor Stinnercfe172d2019-03-01 18:21:49 +01001767 self.add(Extension('_uuid', ['_uuidmodule.c'],
1768 libraries=uuid_libs,
1769 include_dirs=uuid_incs))
Antoine Pitroua106aec2017-09-28 23:03:06 +02001770 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01001771 self.missing.append('_uuid')
Antoine Pitroua106aec2017-09-28 23:03:06 +02001772
Victor Stinner5ec33a12019-03-01 16:43:28 +01001773 def detect_modules(self):
Victor Stinnercfe172d2019-03-01 18:21:49 +01001774 self.configure_compiler()
Victor Stinner5ec33a12019-03-01 16:43:28 +01001775 self.init_inc_lib_dirs()
1776
1777 self.detect_simple_extensions()
Victor Stinnercfe172d2019-03-01 18:21:49 +01001778 if TEST_EXTENSIONS:
1779 self.detect_test_extensions()
Victor Stinner5ec33a12019-03-01 16:43:28 +01001780 self.detect_readline_curses()
1781 self.detect_crypt()
1782 self.detect_socket()
1783 self.detect_openssl_hashlib()
xdegaye2ee077f2019-04-09 17:20:08 +02001784 self.detect_hash_builtins()
Victor Stinner5ec33a12019-03-01 16:43:28 +01001785 self.detect_dbm_gdbm()
1786 self.detect_sqlite()
1787 self.detect_platform_specific_exts()
1788 self.detect_nis()
1789 self.detect_compress_exts()
1790 self.detect_expat_elementtree()
1791 self.detect_multibytecodecs()
1792 self.detect_decimal()
1793 self.detect_ctypes()
1794 self.detect_multiprocessing()
1795 if not self.detect_tkinter():
1796 self.missing.append('_tkinter')
1797 self.detect_uuid()
1798
Ned Deilycd3d8fb2013-08-01 23:51:27 -07001799## # Uncomment these lines if you want to play with xxmodule.c
Victor Stinnercfe172d2019-03-01 18:21:49 +01001800## self.add(Extension('xx', ['xxmodule.c']))
Ned Deilycd3d8fb2013-08-01 23:51:27 -07001801
Xavier de Gaye13f1c332016-12-10 16:45:53 +01001802 if 'd' not in sysconfig.get_config_var('ABIFLAGS'):
Petr Viktorinc168b502020-12-08 17:36:53 +01001803 # Non-debug mode: Build xxlimited with limited API
Victor Stinnercfe172d2019-03-01 18:21:49 +01001804 self.add(Extension('xxlimited', ['xxlimited.c'],
Petr Viktorinc168b502020-12-08 17:36:53 +01001805 define_macros=[('Py_LIMITED_API', '0x03100000')]))
1806 self.add(Extension('xxlimited_35', ['xxlimited_35.c'],
Victor Stinnercfe172d2019-03-01 18:21:49 +01001807 define_macros=[('Py_LIMITED_API', '0x03050000')]))
Petr Viktorinc168b502020-12-08 17:36:53 +01001808 else:
1809 # Debug mode: Build xxlimited with the full API
1810 # (which is compatible with the limited one)
1811 self.add(Extension('xxlimited', ['xxlimited.c']))
1812 self.add(Extension('xxlimited_35', ['xxlimited_35.c']))
Ned Deilycd3d8fb2013-08-01 23:51:27 -07001813
Ned Deilyd819b932013-09-06 01:07:05 -07001814 def detect_tkinter_explicitly(self):
1815 # Build _tkinter using explicit locations for Tcl/Tk.
1816 #
1817 # This is enabled when both arguments are given to ./configure:
1818 #
1819 # --with-tcltk-includes="-I/path/to/tclincludes \
1820 # -I/path/to/tkincludes"
1821 # --with-tcltk-libs="-L/path/to/tcllibs -ltclm.n \
1822 # -L/path/to/tklibs -ltkm.n"
1823 #
Martin Pantere26da7c2016-06-02 10:07:09 +00001824 # These values can also be specified or overridden via make:
Ned Deilyd819b932013-09-06 01:07:05 -07001825 # make TCLTK_INCLUDES="..." TCLTK_LIBS="..."
1826 #
1827 # This can be useful for building and testing tkinter with multiple
1828 # versions of Tcl/Tk. Note that a build of Tk depends on a particular
1829 # build of Tcl so you need to specify both arguments and use care when
1830 # overriding.
1831
1832 # The _TCLTK variables are created in the Makefile sharedmods target.
1833 tcltk_includes = os.environ.get('_TCLTK_INCLUDES')
1834 tcltk_libs = os.environ.get('_TCLTK_LIBS')
1835 if not (tcltk_includes and tcltk_libs):
1836 # Resume default configuration search.
Victor Stinner4cbea512019-02-28 17:48:38 +01001837 return False
Ned Deilyd819b932013-09-06 01:07:05 -07001838
1839 extra_compile_args = tcltk_includes.split()
1840 extra_link_args = tcltk_libs.split()
Victor Stinnercfe172d2019-03-01 18:21:49 +01001841 self.add(Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
1842 define_macros=[('WITH_APPINIT', 1)],
1843 extra_compile_args = extra_compile_args,
1844 extra_link_args = extra_link_args))
Victor Stinner4cbea512019-02-28 17:48:38 +01001845 return True
Ned Deilyd819b932013-09-06 01:07:05 -07001846
Victor Stinner625dbf22019-03-01 15:59:39 +01001847 def detect_tkinter_darwin(self):
Ned Deily1731d6d2020-05-18 04:32:38 -04001848 # Build default _tkinter on macOS using Tcl and Tk frameworks.
1849 #
1850 # The macOS native Tk (AKA Aqua Tk) and Tcl are most commonly
1851 # built and installed as macOS framework bundles. However,
1852 # for several reasons, we cannot take full advantage of the
1853 # Apple-supplied compiler chain's -framework options here.
1854 # Instead, we need to find and pass to the compiler the
1855 # absolute paths of the Tcl and Tk headers files we want to use
1856 # and the absolute path to the directory containing the Tcl
1857 # and Tk frameworks for linking.
1858 #
1859 # We want to handle here two common use cases on macOS:
1860 # 1. Build and link with system-wide third-party or user-built
1861 # Tcl and Tk frameworks installed in /Library/Frameworks.
1862 # 2. Build and link using a user-specified macOS SDK so that the
1863 # built Python can be exported to other systems. In this case,
1864 # search only the SDK's /Library/Frameworks (normally empty)
1865 # and /System/Library/Frameworks.
1866 #
1867 # Any other use case should be able to be handled explicitly by
1868 # using the options described above in detect_tkinter_explicitly().
1869 # In particular it would be good to handle here the case where
1870 # you want to build and link with a framework build of Tcl and Tk
1871 # that is not in /Library/Frameworks, say, in your private
1872 # $HOME/Library/Frameworks directory or elsewhere. It turns
Manan Kumar Garg619f9802020-10-05 02:58:43 +05301873 # out to be difficult to make that work automatically here
Ned Deily1731d6d2020-05-18 04:32:38 -04001874 # without bringing into play more tools and magic. That case
Manan Kumar Garg619f9802020-10-05 02:58:43 +05301875 # can be handled using a recipe with the right arguments
Ned Deily1731d6d2020-05-18 04:32:38 -04001876 # to detect_tkinter_explicitly().
1877 #
1878 # Note also that the fallback case here is to try to use the
1879 # Apple-supplied Tcl and Tk frameworks in /System/Library but
1880 # be forewarned that they are deprecated by Apple and typically
1881 # out-of-date and buggy; their use should be avoided if at
1882 # all possible by installing a newer version of Tcl and Tk in
Manan Kumar Garg619f9802020-10-05 02:58:43 +05301883 # /Library/Frameworks before building Python without
Ned Deily1731d6d2020-05-18 04:32:38 -04001884 # an explicit SDK or by configuring build arguments explicitly.
1885
Jack Jansen0b06be72002-06-21 14:48:38 +00001886 from os.path import join, exists
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001887
Ned Deily1731d6d2020-05-18 04:32:38 -04001888 sysroot = macosx_sdk_root() # path to the SDK or '/'
Ronald Oussoren2c12ab12010-06-03 14:42:25 +00001889
Ned Deily1731d6d2020-05-18 04:32:38 -04001890 if macosx_sdk_specified():
1891 # Use case #2: an SDK other than '/' was specified.
1892 # Only search there.
1893 framework_dirs = [
1894 join(sysroot, 'Library', 'Frameworks'),
1895 join(sysroot, 'System', 'Library', 'Frameworks'),
1896 ]
1897 else:
1898 # Use case #1: no explicit SDK selected.
1899 # Search the local system-wide /Library/Frameworks,
Manan Kumar Garg619f9802020-10-05 02:58:43 +05301900 # not the one in the default SDK, otherwise fall back to
Ned Deily1731d6d2020-05-18 04:32:38 -04001901 # /System/Library/Frameworks whose header files may be in
1902 # the default SDK or, on older systems, actually installed.
1903 framework_dirs = [
1904 join('/', 'Library', 'Frameworks'),
1905 join(sysroot, 'System', 'Library', 'Frameworks'),
1906 ]
1907
1908 # Find the directory that contains the Tcl.framework and
1909 # Tk.framework bundles.
Jack Jansen0b06be72002-06-21 14:48:38 +00001910 for F in framework_dirs:
Tim Peters2c60f7a2003-01-29 03:49:43 +00001911 # both Tcl.framework and Tk.framework should be present
Jack Jansen0b06be72002-06-21 14:48:38 +00001912 for fw in 'Tcl', 'Tk':
Ned Deily1731d6d2020-05-18 04:32:38 -04001913 if not exists(join(F, fw + '.framework')):
1914 break
Jack Jansen0b06be72002-06-21 14:48:38 +00001915 else:
Manan Kumar Garg619f9802020-10-05 02:58:43 +05301916 # ok, F is now directory with both frameworks. Continue
Jack Jansen0b06be72002-06-21 14:48:38 +00001917 # building
1918 break
1919 else:
1920 # Tk and Tcl frameworks not found. Normal "unix" tkinter search
1921 # will now resume.
Victor Stinner4cbea512019-02-28 17:48:38 +01001922 return False
Tim Peters2c60f7a2003-01-29 03:49:43 +00001923
Jack Jansen0b06be72002-06-21 14:48:38 +00001924 include_dirs = [
Tim Peters2c60f7a2003-01-29 03:49:43 +00001925 join(F, fw + '.framework', H)
Nick Coghlan650f0d02007-04-15 12:05:43 +00001926 for fw in ('Tcl', 'Tk')
Ned Deily1731d6d2020-05-18 04:32:38 -04001927 for H in ('Headers',)
Jack Jansen0b06be72002-06-21 14:48:38 +00001928 ]
1929
Ned Deily1731d6d2020-05-18 04:32:38 -04001930 # Add the base framework directory as well
1931 compile_args = ['-F', F]
Jack Jansen0b06be72002-06-21 14:48:38 +00001932
Ned Deily1731d6d2020-05-18 04:32:38 -04001933 # Do not build tkinter for archs that this Tk was not built with.
Georg Brandlfcaf9102008-07-16 02:17:56 +00001934 cflags = sysconfig.get_config_vars('CFLAGS')[0]
R David Murray44b548d2016-09-08 13:59:53 -04001935 archs = re.findall(r'-arch\s+(\w+)', cflags)
Georg Brandlfcaf9102008-07-16 02:17:56 +00001936
Ronald Oussorend097efe2009-09-15 19:07:58 +00001937 tmpfile = os.path.join(self.build_temp, 'tk.arch')
1938 if not os.path.exists(self.build_temp):
1939 os.makedirs(self.build_temp)
1940
Ned Deily1731d6d2020-05-18 04:32:38 -04001941 run_command(
1942 "file {}/Tk.framework/Tk | grep 'for architecture' > {}".format(F, tmpfile)
1943 )
Brett Cannon9f5db072010-10-29 20:19:27 +00001944 with open(tmpfile) as fp:
1945 detected_archs = []
1946 for ln in fp:
1947 a = ln.split()[-1]
1948 if a in archs:
1949 detected_archs.append(ln.split()[-1])
Ronald Oussorend097efe2009-09-15 19:07:58 +00001950 os.unlink(tmpfile)
1951
Ned Deily1731d6d2020-05-18 04:32:38 -04001952 arch_args = []
Ronald Oussorend097efe2009-09-15 19:07:58 +00001953 for a in detected_archs:
Ned Deily1731d6d2020-05-18 04:32:38 -04001954 arch_args.append('-arch')
1955 arch_args.append(a)
1956
1957 compile_args += arch_args
1958 link_args = [','.join(['-Wl', '-F', F, '-framework', 'Tcl', '-framework', 'Tk']), *arch_args]
1959
1960 # The X11/xlib.h file bundled in the Tk sources can cause function
1961 # prototype warnings from the compiler. Since we cannot easily fix
1962 # that, suppress the warnings here instead.
1963 if '-Wstrict-prototypes' in cflags.split():
1964 compile_args.append('-Wno-strict-prototypes')
Georg Brandlfcaf9102008-07-16 02:17:56 +00001965
Victor Stinnercfe172d2019-03-01 18:21:49 +01001966 self.add(Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
1967 define_macros=[('WITH_APPINIT', 1)],
1968 include_dirs=include_dirs,
1969 libraries=[],
Ned Deily1731d6d2020-05-18 04:32:38 -04001970 extra_compile_args=compile_args,
1971 extra_link_args=link_args))
Victor Stinner4cbea512019-02-28 17:48:38 +01001972 return True
Jack Jansen0b06be72002-06-21 14:48:38 +00001973
Victor Stinner625dbf22019-03-01 15:59:39 +01001974 def detect_tkinter(self):
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00001975 # The _tkinter module.
Michael W. Hudson5b109102002-01-23 15:04:41 +00001976
Ned Deilyd819b932013-09-06 01:07:05 -07001977 # Check whether --with-tcltk-includes and --with-tcltk-libs were
1978 # configured or passed into the make target. If so, use these values
1979 # to build tkinter and bypass the searches for Tcl and TK in standard
1980 # locations.
1981 if self.detect_tkinter_explicitly():
Victor Stinner5ec33a12019-03-01 16:43:28 +01001982 return True
Ned Deilyd819b932013-09-06 01:07:05 -07001983
Jack Jansen0b06be72002-06-21 14:48:38 +00001984 # Rather than complicate the code below, detecting and building
1985 # AquaTk is a separate method. Only one Tkinter will be built on
1986 # Darwin - either AquaTk, if it is found, or X11 based Tk.
Victor Stinner5ec33a12019-03-01 16:43:28 +01001987 if (MACOS and self.detect_tkinter_darwin()):
1988 return True
Jack Jansen0b06be72002-06-21 14:48:38 +00001989
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001990 # Assume we haven't found any of the libraries or include files
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +00001991 # The versions with dots are used on Unix, and the versions without
1992 # dots on Windows, for detection by cygwin.
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00001993 tcllib = tklib = tcl_includes = tk_includes = None
Guilherme Polo5d377bd2009-08-16 14:44:14 +00001994 for version in ['8.6', '86', '8.5', '85', '8.4', '84', '8.3', '83',
1995 '8.2', '82', '8.1', '81', '8.0', '80']:
Victor Stinner625dbf22019-03-01 15:59:39 +01001996 tklib = self.compiler.find_library_file(self.lib_dirs,
Tarek Ziadédd07ebb2009-07-06 13:52:17 +00001997 'tk' + version)
Victor Stinner625dbf22019-03-01 15:59:39 +01001998 tcllib = self.compiler.find_library_file(self.lib_dirs,
Tarek Ziadédd07ebb2009-07-06 13:52:17 +00001999 'tcl' + version)
Michael W. Hudson5b109102002-01-23 15:04:41 +00002000 if tklib and tcllib:
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002001 # Exit the loop when we've found the Tcl/Tk libraries
2002 break
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002003
Fredrik Lundhade711a2001-01-24 08:00:28 +00002004 # Now check for the header files
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002005 if tklib and tcllib:
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00002006 # Check for the include files on Debian and {Free,Open}BSD, where
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002007 # they're put in /usr/include/{tcl,tk}X.Y
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00002008 dotversion = version
Victor Stinner4cbea512019-02-28 17:48:38 +01002009 if '.' not in dotversion and "bsd" in HOST_PLATFORM.lower():
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00002010 # OpenBSD and FreeBSD use Tcl/Tk library names like libtcl83.a,
2011 # but the include subdirs are named like .../include/tcl8.3.
2012 dotversion = dotversion[:-1] + '.' + dotversion[-1]
2013 tcl_include_sub = []
2014 tk_include_sub = []
Victor Stinner625dbf22019-03-01 15:59:39 +01002015 for dir in self.inc_dirs:
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00002016 tcl_include_sub += [dir + os.sep + "tcl" + dotversion]
2017 tk_include_sub += [dir + os.sep + "tk" + dotversion]
2018 tk_include_sub += tcl_include_sub
Victor Stinner625dbf22019-03-01 15:59:39 +01002019 tcl_includes = find_file('tcl.h', self.inc_dirs, tcl_include_sub)
2020 tk_includes = find_file('tk.h', self.inc_dirs, tk_include_sub)
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002021
Martin v. Löwise86a59a2003-05-03 08:45:51 +00002022 if (tcllib is None or tklib is None or
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002023 tcl_includes is None or tk_includes is None):
Andrew M. Kuchling3c0aa7e2004-03-21 18:57:35 +00002024 self.announce("INFO: Can't locate Tcl/Tk libs and/or headers", 2)
Victor Stinner5ec33a12019-03-01 16:43:28 +01002025 return False
Fredrik Lundhade711a2001-01-24 08:00:28 +00002026
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002027 # OK... everything seems to be present for Tcl/Tk.
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002028
Victor Stinnercfe172d2019-03-01 18:21:49 +01002029 include_dirs = []
2030 libs = []
2031 defs = []
2032 added_lib_dirs = []
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002033 for dir in tcl_includes + tk_includes:
2034 if dir not in include_dirs:
2035 include_dirs.append(dir)
Fredrik Lundhade711a2001-01-24 08:00:28 +00002036
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002037 # Check for various platform-specific directories
Victor Stinner4cbea512019-02-28 17:48:38 +01002038 if HOST_PLATFORM == 'sunos5':
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002039 include_dirs.append('/usr/openwin/include')
2040 added_lib_dirs.append('/usr/openwin/lib')
2041 elif os.path.exists('/usr/X11R6/include'):
2042 include_dirs.append('/usr/X11R6/include')
Martin v. Löwisfba73692004-11-13 11:13:35 +00002043 added_lib_dirs.append('/usr/X11R6/lib64')
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002044 added_lib_dirs.append('/usr/X11R6/lib')
2045 elif os.path.exists('/usr/X11R5/include'):
2046 include_dirs.append('/usr/X11R5/include')
2047 added_lib_dirs.append('/usr/X11R5/lib')
2048 else:
Fredrik Lundhade711a2001-01-24 08:00:28 +00002049 # Assume default location for X11
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002050 include_dirs.append('/usr/X11/include')
2051 added_lib_dirs.append('/usr/X11/lib')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002052
Jason Tishler9181c942003-02-05 15:16:17 +00002053 # If Cygwin, then verify that X is installed before proceeding
Victor Stinner4cbea512019-02-28 17:48:38 +01002054 if CYGWIN:
Jason Tishler9181c942003-02-05 15:16:17 +00002055 x11_inc = find_file('X11/Xlib.h', [], include_dirs)
2056 if x11_inc is None:
Victor Stinner5ec33a12019-03-01 16:43:28 +01002057 return False
Jason Tishler9181c942003-02-05 15:16:17 +00002058
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002059 # Check for BLT extension
Victor Stinner625dbf22019-03-01 15:59:39 +01002060 if self.compiler.find_library_file(self.lib_dirs + added_lib_dirs,
Tarek Ziadédd07ebb2009-07-06 13:52:17 +00002061 'BLT8.0'):
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002062 defs.append( ('WITH_BLT', 1) )
2063 libs.append('BLT8.0')
Victor Stinner625dbf22019-03-01 15:59:39 +01002064 elif self.compiler.find_library_file(self.lib_dirs + added_lib_dirs,
Tarek Ziadédd07ebb2009-07-06 13:52:17 +00002065 'BLT'):
Martin v. Löwis427a2902002-12-12 20:23:38 +00002066 defs.append( ('WITH_BLT', 1) )
2067 libs.append('BLT')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002068
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002069 # Add the Tcl/Tk libraries
Jason Tishlercccac1a2003-02-05 15:06:46 +00002070 libs.append('tk'+ version)
2071 libs.append('tcl'+ version)
Fredrik Lundhade711a2001-01-24 08:00:28 +00002072
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +00002073 # Finally, link with the X11 libraries (not appropriate on cygwin)
Victor Stinner4cbea512019-02-28 17:48:38 +01002074 if not CYGWIN:
Martin v. Löwis3db5b8c2001-07-24 06:54:01 +00002075 libs.append('X11')
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002076
Andrew M. Kuchlingfbe73762001-01-18 18:44:20 +00002077 # XXX handle these, but how to detect?
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002078 # *** Uncomment and edit for PIL (TkImaging) extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00002079 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002080 # *** Uncomment and edit for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00002081 # -DWITH_TOGL togl.c \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002082 # *** Uncomment these for TOGL extension only:
Fredrik Lundhade711a2001-01-24 08:00:28 +00002083 # -lGL -lGLU -lXext -lXmu \
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002084
Victor Stinnercfe172d2019-03-01 18:21:49 +01002085 self.add(Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
2086 define_macros=[('WITH_APPINIT', 1)] + defs,
2087 include_dirs=include_dirs,
2088 libraries=libs,
2089 library_dirs=added_lib_dirs))
Victor Stinner5ec33a12019-03-01 16:43:28 +01002090 return True
2091
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002092 def configure_ctypes(self, ext):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002093 return True
2094
Victor Stinner625dbf22019-03-01 15:59:39 +01002095 def detect_ctypes(self):
Victor Stinner5ec33a12019-03-01 16:43:28 +01002096 # Thomas Heller's _ctypes module
Ronald Oussoren41761932020-11-08 10:05:27 +01002097
2098 if (not sysconfig.get_config_var("LIBFFI_INCLUDEDIR") and MACOS):
2099 self.use_system_libffi = True
2100 else:
2101 self.use_system_libffi = '--with-system-ffi' in sysconfig.get_config_var("CONFIG_ARGS")
2102
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002103 include_dirs = []
Victor Stinner1ae035b2020-04-17 17:47:20 +02002104 extra_compile_args = ['-DPy_BUILD_CORE_MODULE']
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002105 extra_link_args = []
Thomas Hellercf567c12006-03-08 19:51:58 +00002106 sources = ['_ctypes/_ctypes.c',
2107 '_ctypes/callbacks.c',
2108 '_ctypes/callproc.c',
2109 '_ctypes/stgdict.c',
Thomas Heller864cc672010-08-08 17:58:53 +00002110 '_ctypes/cfield.c']
Thomas Hellercf567c12006-03-08 19:51:58 +00002111 depends = ['_ctypes/ctypes.h']
2112
Victor Stinner4cbea512019-02-28 17:48:38 +01002113 if MACOS:
Ronald Oussoren2decf222010-09-05 18:25:59 +00002114 sources.append('_ctypes/malloc_closure.c')
Ronald Oussoren41761932020-11-08 10:05:27 +01002115 extra_compile_args.append('-DUSING_MALLOC_CLOSURE_DOT_C=1')
Christian Heimes78644762008-03-04 23:39:23 +00002116 extra_compile_args.append('-DMACOSX')
Thomas Hellercf567c12006-03-08 19:51:58 +00002117 include_dirs.append('_ctypes/darwin')
Thomas Hellercf567c12006-03-08 19:51:58 +00002118
Victor Stinner4cbea512019-02-28 17:48:38 +01002119 elif HOST_PLATFORM == 'sunos5':
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002120 # XXX This shouldn't be necessary; it appears that some
2121 # of the assembler code is non-PIC (i.e. it has relocations
2122 # when it shouldn't. The proper fix would be to rewrite
2123 # the assembler code to be PIC.
2124 # This only works with GCC; the Sun compiler likely refuses
2125 # this option. If you want to compile ctypes with the Sun
2126 # compiler, please research a proper solution, instead of
2127 # finding some -z option for the Sun compiler.
2128 extra_link_args.append('-mimpure-text')
2129
Victor Stinner4cbea512019-02-28 17:48:38 +01002130 elif HOST_PLATFORM.startswith('hp-ux'):
Thomas Heller3eaaeb42008-05-23 17:26:46 +00002131 extra_link_args.append('-fPIC')
2132
Thomas Hellercf567c12006-03-08 19:51:58 +00002133 ext = Extension('_ctypes',
2134 include_dirs=include_dirs,
2135 extra_compile_args=extra_compile_args,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002136 extra_link_args=extra_link_args,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002137 libraries=[],
Thomas Hellercf567c12006-03-08 19:51:58 +00002138 sources=sources,
2139 depends=depends)
Victor Stinnercfe172d2019-03-01 18:21:49 +01002140 self.add(ext)
2141 if TEST_EXTENSIONS:
2142 # function my_sqrt() needs libm for sqrt()
2143 self.add(Extension('_ctypes_test',
2144 sources=['_ctypes/_ctypes_test.c'],
2145 libraries=['m']))
Thomas Hellercf567c12006-03-08 19:51:58 +00002146
Ronald Oussoren41761932020-11-08 10:05:27 +01002147 ffi_inc = sysconfig.get_config_var("LIBFFI_INCLUDEDIR")
2148 ffi_lib = None
2149
Victor Stinner625dbf22019-03-01 15:59:39 +01002150 ffi_inc_dirs = self.inc_dirs.copy()
Victor Stinner4cbea512019-02-28 17:48:38 +01002151 if MACOS:
Ronald Oussoren41761932020-11-08 10:05:27 +01002152 ffi_in_sdk = os.path.join(macosx_sdk_root(), "usr/include/ffi")
Christian Heimes78644762008-03-04 23:39:23 +00002153
Ronald Oussoren41761932020-11-08 10:05:27 +01002154 if not ffi_inc:
2155 if os.path.exists(ffi_in_sdk):
2156 ext.extra_compile_args.append("-DUSING_APPLE_OS_LIBFFI=1")
2157 ffi_inc = ffi_in_sdk
2158 ffi_lib = 'ffi'
2159 else:
2160 # OS X 10.5 comes with libffi.dylib; the include files are
2161 # in /usr/include/ffi
2162 ffi_inc_dirs.append('/usr/include/ffi')
2163
2164 if not ffi_inc:
2165 found = find_file('ffi.h', [], ffi_inc_dirs)
2166 if found:
2167 ffi_inc = found[0]
2168 if ffi_inc:
2169 ffi_h = ffi_inc + '/ffi.h'
Shlomi Fish6d51b872017-09-06 23:19:19 +03002170 if not os.path.exists(ffi_h):
2171 ffi_inc = None
2172 print('Header file {} does not exist'.format(ffi_h))
Ronald Oussoren41761932020-11-08 10:05:27 +01002173 if ffi_lib is None and ffi_inc:
doko@ubuntu.comae683652016-06-05 01:38:29 +02002174 for lib_name in ('ffi', 'ffi_pic'):
Victor Stinner625dbf22019-03-01 15:59:39 +01002175 if (self.compiler.find_library_file(self.lib_dirs, lib_name)):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002176 ffi_lib = lib_name
2177 break
2178
2179 if ffi_inc and ffi_lib:
Ronald Oussoren41761932020-11-08 10:05:27 +01002180 ffi_headers = glob(os.path.join(ffi_inc, '*.h'))
2181 if grep_headers_for('ffi_prep_cif_var', ffi_headers):
2182 ext.extra_compile_args.append("-DHAVE_FFI_PREP_CIF_VAR=1")
2183 if grep_headers_for('ffi_prep_closure_loc', ffi_headers):
2184 ext.extra_compile_args.append("-DHAVE_FFI_PREP_CLOSURE_LOC=1")
2185 if grep_headers_for('ffi_closure_alloc', ffi_headers):
2186 ext.extra_compile_args.append("-DHAVE_FFI_CLOSURE_ALLOC=1")
2187
2188 ext.include_dirs.append(ffi_inc)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002189 ext.libraries.append(ffi_lib)
2190 self.use_system_libffi = True
2191
Christian Heimes5bb96922018-02-25 10:22:14 +01002192 if sysconfig.get_config_var('HAVE_LIBDL'):
2193 # for dlopen, see bpo-32647
2194 ext.libraries.append('dl')
2195
Victor Stinner5ec33a12019-03-01 16:43:28 +01002196 def detect_decimal(self):
2197 # Stefan Krah's _decimal module
Stefan Krah60187b52012-03-23 19:06:27 +01002198 extra_compile_args = []
Stefan Kraha10e2fb2012-09-01 14:21:22 +02002199 undef_macros = []
Stefan Krah60187b52012-03-23 19:06:27 +01002200 if '--with-system-libmpdec' in sysconfig.get_config_var("CONFIG_ARGS"):
2201 include_dirs = []
Stefan Krah45059eb2013-11-24 19:44:57 +01002202 libraries = [':libmpdec.so.2']
Stefan Krah60187b52012-03-23 19:06:27 +01002203 sources = ['_decimal/_decimal.c']
2204 depends = ['_decimal/docstrings.h']
2205 else:
Victor Stinner625dbf22019-03-01 15:59:39 +01002206 include_dirs = [os.path.abspath(os.path.join(self.srcdir,
Ned Deily458a6fb2012-04-01 02:30:46 -07002207 'Modules',
2208 '_decimal',
2209 'libmpdec'))]
Stefan Krahbd4ed772017-12-06 18:24:17 +01002210 libraries = ['m']
Stefan Krah60187b52012-03-23 19:06:27 +01002211 sources = [
2212 '_decimal/_decimal.c',
2213 '_decimal/libmpdec/basearith.c',
2214 '_decimal/libmpdec/constants.c',
2215 '_decimal/libmpdec/context.c',
2216 '_decimal/libmpdec/convolute.c',
2217 '_decimal/libmpdec/crt.c',
2218 '_decimal/libmpdec/difradix2.c',
2219 '_decimal/libmpdec/fnt.c',
2220 '_decimal/libmpdec/fourstep.c',
2221 '_decimal/libmpdec/io.c',
Stefan Krahf117d872019-07-10 18:27:38 +02002222 '_decimal/libmpdec/mpalloc.c',
Stefan Krah60187b52012-03-23 19:06:27 +01002223 '_decimal/libmpdec/mpdecimal.c',
2224 '_decimal/libmpdec/numbertheory.c',
2225 '_decimal/libmpdec/sixstep.c',
2226 '_decimal/libmpdec/transpose.c',
2227 ]
2228 depends = [
2229 '_decimal/docstrings.h',
2230 '_decimal/libmpdec/basearith.h',
2231 '_decimal/libmpdec/bits.h',
2232 '_decimal/libmpdec/constants.h',
2233 '_decimal/libmpdec/convolute.h',
2234 '_decimal/libmpdec/crt.h',
2235 '_decimal/libmpdec/difradix2.h',
2236 '_decimal/libmpdec/fnt.h',
2237 '_decimal/libmpdec/fourstep.h',
2238 '_decimal/libmpdec/io.h',
Stefan Krah8d013a82016-04-26 16:34:41 +02002239 '_decimal/libmpdec/mpalloc.h',
Stefan Krah60187b52012-03-23 19:06:27 +01002240 '_decimal/libmpdec/mpdecimal.h',
2241 '_decimal/libmpdec/numbertheory.h',
2242 '_decimal/libmpdec/sixstep.h',
2243 '_decimal/libmpdec/transpose.h',
2244 '_decimal/libmpdec/typearith.h',
2245 '_decimal/libmpdec/umodarith.h',
2246 ]
2247
Stefan Krah1919b7e2012-03-21 18:25:23 +01002248 config = {
2249 'x64': [('CONFIG_64','1'), ('ASM','1')],
2250 'uint128': [('CONFIG_64','1'), ('ANSI','1'), ('HAVE_UINT128_T','1')],
2251 'ansi64': [('CONFIG_64','1'), ('ANSI','1')],
2252 'ppro': [('CONFIG_32','1'), ('PPRO','1'), ('ASM','1')],
2253 'ansi32': [('CONFIG_32','1'), ('ANSI','1')],
2254 'ansi-legacy': [('CONFIG_32','1'), ('ANSI','1'),
2255 ('LEGACY_COMPILER','1')],
2256 'universal': [('UNIVERSAL','1')]
2257 }
2258
Stefan Krah1919b7e2012-03-21 18:25:23 +01002259 cc = sysconfig.get_config_var('CC')
2260 sizeof_size_t = sysconfig.get_config_var('SIZEOF_SIZE_T')
2261 machine = os.environ.get('PYTHON_DECIMAL_WITH_MACHINE')
2262
2263 if machine:
2264 # Override automatic configuration to facilitate testing.
2265 define_macros = config[machine]
Victor Stinner4cbea512019-02-28 17:48:38 +01002266 elif MACOS:
Stefan Krah1919b7e2012-03-21 18:25:23 +01002267 # Universal here means: build with the same options Python
2268 # was built with.
2269 define_macros = config['universal']
2270 elif sizeof_size_t == 8:
2271 if sysconfig.get_config_var('HAVE_GCC_ASM_FOR_X64'):
2272 define_macros = config['x64']
2273 elif sysconfig.get_config_var('HAVE_GCC_UINT128_T'):
2274 define_macros = config['uint128']
2275 else:
2276 define_macros = config['ansi64']
2277 elif sizeof_size_t == 4:
2278 ppro = sysconfig.get_config_var('HAVE_GCC_ASM_FOR_X87')
2279 if ppro and ('gcc' in cc or 'clang' in cc) and \
Victor Stinner4cbea512019-02-28 17:48:38 +01002280 not 'sunos' in HOST_PLATFORM:
Stefan Krah1919b7e2012-03-21 18:25:23 +01002281 # solaris: problems with register allocation.
2282 # icc >= 11.0 works as well.
2283 define_macros = config['ppro']
Stefan Krahce23dbc2012-09-30 21:12:53 +02002284 extra_compile_args.append('-Wno-unknown-pragmas')
Stefan Krah1919b7e2012-03-21 18:25:23 +01002285 else:
2286 define_macros = config['ansi32']
2287 else:
2288 raise DistutilsError("_decimal: unsupported architecture")
2289
2290 # Workarounds for toolchain bugs:
2291 if sysconfig.get_config_var('HAVE_IPA_PURE_CONST_BUG'):
2292 # Some versions of gcc miscompile inline asm:
2293 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46491
2294 # http://gcc.gnu.org/ml/gcc/2010-11/msg00366.html
2295 extra_compile_args.append('-fno-ipa-pure-const')
2296 if sysconfig.get_config_var('HAVE_GLIBC_MEMMOVE_BUG'):
2297 # _FORTIFY_SOURCE wrappers for memmove and bcopy are incorrect:
2298 # http://sourceware.org/ml/libc-alpha/2010-12/msg00009.html
2299 undef_macros.append('_FORTIFY_SOURCE')
2300
Stefan Krah1919b7e2012-03-21 18:25:23 +01002301 # Uncomment for extra functionality:
2302 #define_macros.append(('EXTRA_FUNCTIONALITY', 1))
Victor Stinner8058bda2019-03-01 15:31:45 +01002303 self.add(Extension('_decimal',
2304 include_dirs=include_dirs,
2305 libraries=libraries,
2306 define_macros=define_macros,
2307 undef_macros=undef_macros,
2308 extra_compile_args=extra_compile_args,
2309 sources=sources,
2310 depends=depends))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002311
Victor Stinner5ec33a12019-03-01 16:43:28 +01002312 def detect_openssl_hashlib(self):
2313 # Detect SSL support for the socket module (via _ssl)
Christian Heimesff5be6e2018-01-20 13:19:21 +01002314 config_vars = sysconfig.get_config_vars()
2315
2316 def split_var(name, sep):
2317 # poor man's shlex, the re module is not available yet.
2318 value = config_vars.get(name)
2319 if not value:
2320 return ()
2321 # This trick works because ax_check_openssl uses --libs-only-L,
2322 # --libs-only-l, and --cflags-only-I.
2323 value = ' ' + value
2324 sep = ' ' + sep
2325 return [v.strip() for v in value.split(sep) if v.strip()]
2326
2327 openssl_includes = split_var('OPENSSL_INCLUDES', '-I')
2328 openssl_libdirs = split_var('OPENSSL_LDFLAGS', '-L')
2329 openssl_libs = split_var('OPENSSL_LIBS', '-l')
2330 if not openssl_libs:
2331 # libssl and libcrypto not found
Christian Heimes8abc3f42019-04-09 18:40:12 +02002332 self.missing.extend(['_ssl', '_hashlib'])
Christian Heimesff5be6e2018-01-20 13:19:21 +01002333 return None, None
2334
2335 # Find OpenSSL includes
2336 ssl_incs = find_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01002337 'openssl/ssl.h', self.inc_dirs, openssl_includes
Christian Heimesff5be6e2018-01-20 13:19:21 +01002338 )
2339 if ssl_incs is None:
Christian Heimes8abc3f42019-04-09 18:40:12 +02002340 self.missing.extend(['_ssl', '_hashlib'])
Christian Heimesff5be6e2018-01-20 13:19:21 +01002341 return None, None
2342
2343 # OpenSSL 1.0.2 uses Kerberos for KRB5 ciphers
2344 krb5_h = find_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01002345 'krb5.h', self.inc_dirs,
Christian Heimesff5be6e2018-01-20 13:19:21 +01002346 ['/usr/kerberos/include']
2347 )
2348 if krb5_h:
2349 ssl_incs.extend(krb5_h)
2350
Christian Heimes61d478c2018-01-27 15:51:38 +01002351 if config_vars.get("HAVE_X509_VERIFY_PARAM_SET1_HOST"):
Christian Heimesc7f70692019-05-31 11:44:05 +02002352 self.add(Extension(
2353 '_ssl', ['_ssl.c'],
2354 include_dirs=openssl_includes,
2355 library_dirs=openssl_libdirs,
2356 libraries=openssl_libs,
2357 depends=['socketmodule.h', '_ssl/debughelpers.c'])
2358 )
Christian Heimes61d478c2018-01-27 15:51:38 +01002359 else:
Victor Stinner8058bda2019-03-01 15:31:45 +01002360 self.missing.append('_ssl')
Christian Heimesff5be6e2018-01-20 13:19:21 +01002361
Victor Stinner8058bda2019-03-01 15:31:45 +01002362 self.add(Extension('_hashlib', ['_hashopenssl.c'],
2363 depends=['hashlib.h'],
2364 include_dirs=openssl_includes,
2365 library_dirs=openssl_libdirs,
2366 libraries=openssl_libs))
Christian Heimesff5be6e2018-01-20 13:19:21 +01002367
xdegaye2ee077f2019-04-09 17:20:08 +02002368 def detect_hash_builtins(self):
Christian Heimes9b60e552020-05-15 23:54:53 +02002369 # By default we always compile these even when OpenSSL is available
2370 # (issue #14693). It's harmless and the object code is tiny
2371 # (40-50 KiB per module, only loaded when actually used). Modules can
2372 # be disabled via the --with-builtin-hashlib-hashes configure flag.
2373 supported = {"md5", "sha1", "sha256", "sha512", "sha3", "blake2"}
Victor Stinner5ec33a12019-03-01 16:43:28 +01002374
Christian Heimes9b60e552020-05-15 23:54:53 +02002375 configured = sysconfig.get_config_var("PY_BUILTIN_HASHLIB_HASHES")
2376 configured = configured.strip('"').lower()
2377 configured = {
2378 m.strip() for m in configured.split(",")
2379 }
Victor Stinner5ec33a12019-03-01 16:43:28 +01002380
Christian Heimes9b60e552020-05-15 23:54:53 +02002381 self.disabled_configure.extend(
2382 sorted(supported.difference(configured))
2383 )
Victor Stinner5ec33a12019-03-01 16:43:28 +01002384
Christian Heimes9b60e552020-05-15 23:54:53 +02002385 if "sha256" in configured:
2386 self.add(Extension(
2387 '_sha256', ['sha256module.c'],
2388 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
2389 depends=['hashlib.h']
2390 ))
2391
2392 if "sha512" in configured:
2393 self.add(Extension(
2394 '_sha512', ['sha512module.c'],
2395 extra_compile_args=['-DPy_BUILD_CORE_MODULE'],
2396 depends=['hashlib.h']
2397 ))
2398
2399 if "md5" in configured:
2400 self.add(Extension(
2401 '_md5', ['md5module.c'],
2402 depends=['hashlib.h']
2403 ))
2404
2405 if "sha1" in configured:
2406 self.add(Extension(
2407 '_sha1', ['sha1module.c'],
2408 depends=['hashlib.h']
2409 ))
2410
2411 if "blake2" in configured:
2412 blake2_deps = glob(
Serhiy Storchaka93558682020-06-20 11:10:31 +03002413 os.path.join(escape(self.srcdir), 'Modules/_blake2/impl/*')
Christian Heimes9b60e552020-05-15 23:54:53 +02002414 )
2415 blake2_deps.append('hashlib.h')
2416 self.add(Extension(
2417 '_blake2',
2418 [
2419 '_blake2/blake2module.c',
2420 '_blake2/blake2b_impl.c',
2421 '_blake2/blake2s_impl.c'
2422 ],
2423 depends=blake2_deps
2424 ))
2425
2426 if "sha3" in configured:
2427 sha3_deps = glob(
Serhiy Storchaka93558682020-06-20 11:10:31 +03002428 os.path.join(escape(self.srcdir), 'Modules/_sha3/kcp/*')
Christian Heimes9b60e552020-05-15 23:54:53 +02002429 )
2430 sha3_deps.append('hashlib.h')
2431 self.add(Extension(
2432 '_sha3',
2433 ['_sha3/sha3module.c'],
2434 depends=sha3_deps
2435 ))
Victor Stinner5ec33a12019-03-01 16:43:28 +01002436
2437 def detect_nis(self):
Victor Stinner4cbea512019-02-28 17:48:38 +01002438 if MS_WINDOWS or CYGWIN or HOST_PLATFORM == 'qnx6':
Victor Stinner8058bda2019-03-01 15:31:45 +01002439 self.missing.append('nis')
2440 return
Christian Heimes29a7df72018-01-26 23:28:46 +01002441
2442 libs = []
2443 library_dirs = []
2444 includes_dirs = []
2445
2446 # bpo-32521: glibc has deprecated Sun RPC for some time. Fedora 28
2447 # moved headers and libraries to libtirpc and libnsl. The headers
2448 # are in tircp and nsl sub directories.
2449 rpcsvc_inc = find_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01002450 'rpcsvc/yp_prot.h', self.inc_dirs,
2451 [os.path.join(inc_dir, 'nsl') for inc_dir in self.inc_dirs]
Christian Heimes29a7df72018-01-26 23:28:46 +01002452 )
2453 rpc_inc = find_file(
Victor Stinner625dbf22019-03-01 15:59:39 +01002454 'rpc/rpc.h', self.inc_dirs,
2455 [os.path.join(inc_dir, 'tirpc') for inc_dir in self.inc_dirs]
Christian Heimes29a7df72018-01-26 23:28:46 +01002456 )
2457 if rpcsvc_inc is None or rpc_inc is None:
2458 # not found
Victor Stinner8058bda2019-03-01 15:31:45 +01002459 self.missing.append('nis')
2460 return
Christian Heimes29a7df72018-01-26 23:28:46 +01002461 includes_dirs.extend(rpcsvc_inc)
2462 includes_dirs.extend(rpc_inc)
2463
Victor Stinner625dbf22019-03-01 15:59:39 +01002464 if self.compiler.find_library_file(self.lib_dirs, 'nsl'):
Christian Heimes29a7df72018-01-26 23:28:46 +01002465 libs.append('nsl')
2466 else:
2467 # libnsl-devel: check for libnsl in nsl/ subdirectory
Victor Stinner625dbf22019-03-01 15:59:39 +01002468 nsl_dirs = [os.path.join(lib_dir, 'nsl') for lib_dir in self.lib_dirs]
Christian Heimes29a7df72018-01-26 23:28:46 +01002469 libnsl = self.compiler.find_library_file(nsl_dirs, 'nsl')
2470 if libnsl is not None:
2471 library_dirs.append(os.path.dirname(libnsl))
2472 libs.append('nsl')
2473
Victor Stinner625dbf22019-03-01 15:59:39 +01002474 if self.compiler.find_library_file(self.lib_dirs, 'tirpc'):
Christian Heimes29a7df72018-01-26 23:28:46 +01002475 libs.append('tirpc')
2476
Victor Stinner8058bda2019-03-01 15:31:45 +01002477 self.add(Extension('nis', ['nismodule.c'],
2478 libraries=libs,
2479 library_dirs=library_dirs,
2480 include_dirs=includes_dirs))
Christian Heimes29a7df72018-01-26 23:28:46 +01002481
Christian Heimesff5be6e2018-01-20 13:19:21 +01002482
Andrew M. Kuchlingf52d27e2001-05-21 20:29:27 +00002483class PyBuildInstall(install):
2484 # Suppress the warning about installation into the lib_dynload
2485 # directory, which is not in sys.path when running Python during
2486 # installation:
2487 def initialize_options (self):
2488 install.initialize_options(self)
2489 self.warn_dir=0
Michael W. Hudson5b109102002-01-23 15:04:41 +00002490
Éric Araujoe6792c12011-06-09 14:07:02 +02002491 # Customize subcommands to not install an egg-info file for Python
2492 sub_commands = [('install_lib', install.has_lib),
2493 ('install_headers', install.has_headers),
2494 ('install_scripts', install.has_scripts),
2495 ('install_data', install.has_data)]
2496
2497
Michael W. Hudson529a5052002-12-17 16:47:17 +00002498class PyBuildInstallLib(install_lib):
2499 # Do exactly what install_lib does but make sure correct access modes get
2500 # set on installed directories and files. All installed files with get
2501 # mode 644 unless they are a shared library in which case they will get
2502 # mode 755. All installed directories will get mode 755.
2503
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002504 # this is works for EXT_SUFFIX too, which ends with SHLIB_SUFFIX
2505 shlib_suffix = sysconfig.get_config_var("SHLIB_SUFFIX")
Michael W. Hudson529a5052002-12-17 16:47:17 +00002506
2507 def install(self):
2508 outfiles = install_lib.install(self)
Guido van Rossumcd16bf62007-06-13 18:07:49 +00002509 self.set_file_modes(outfiles, 0o644, 0o755)
2510 self.set_dir_modes(self.install_dir, 0o755)
Michael W. Hudson529a5052002-12-17 16:47:17 +00002511 return outfiles
2512
2513 def set_file_modes(self, files, defaultMode, sharedLibMode):
Michael W. Hudson529a5052002-12-17 16:47:17 +00002514 if not files: return
2515
2516 for filename in files:
2517 if os.path.islink(filename): continue
2518 mode = defaultMode
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002519 if filename.endswith(self.shlib_suffix): mode = sharedLibMode
Michael W. Hudson529a5052002-12-17 16:47:17 +00002520 log.info("changing mode of %s to %o", filename, mode)
2521 if not self.dry_run: os.chmod(filename, mode)
2522
2523 def set_dir_modes(self, dirname, mode):
Amaury Forgeot d'Arc321e5332009-07-02 23:08:45 +00002524 for dirpath, dirnames, fnames in os.walk(dirname):
2525 if os.path.islink(dirpath):
2526 continue
2527 log.info("changing mode of %s to %o", dirpath, mode)
2528 if not self.dry_run: os.chmod(dirpath, mode)
Michael W. Hudson529a5052002-12-17 16:47:17 +00002529
Victor Stinnerc991f242019-03-01 17:19:04 +01002530
Georg Brandlff52f762010-12-28 09:51:43 +00002531class PyBuildScripts(build_scripts):
2532 def copy_scripts(self):
2533 outfiles, updated_files = build_scripts.copy_scripts(self)
2534 fullversion = '-{0[0]}.{0[1]}'.format(sys.version_info)
2535 minoronly = '.{0[1]}'.format(sys.version_info)
2536 newoutfiles = []
2537 newupdated_files = []
2538 for filename in outfiles:
Brett Cannona8c34242018-04-20 14:15:40 -07002539 if filename.endswith('2to3'):
Georg Brandlff52f762010-12-28 09:51:43 +00002540 newfilename = filename + fullversion
2541 else:
2542 newfilename = filename + minoronly
Vinay Sajipdd917f82016-08-31 08:22:29 +01002543 log.info('renaming %s to %s', filename, newfilename)
Georg Brandlff52f762010-12-28 09:51:43 +00002544 os.rename(filename, newfilename)
2545 newoutfiles.append(newfilename)
2546 if filename in updated_files:
2547 newupdated_files.append(newfilename)
2548 return newoutfiles, newupdated_files
2549
Guido van Rossum14ee89c2003-02-20 02:52:04 +00002550
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002551def main():
Victor Stinnerc991f242019-03-01 17:19:04 +01002552 set_compiler_flags('CFLAGS', 'PY_CFLAGS_NODIST')
2553 set_compiler_flags('LDFLAGS', 'PY_LDFLAGS_NODIST')
2554
2555 class DummyProcess:
2556 """Hack for parallel build"""
2557 ProcessPoolExecutor = None
2558
2559 sys.modules['concurrent.futures.process'] = DummyProcess
Paul Ganssle62972d92020-05-16 04:20:06 -04002560 validate_tzpath()
Victor Stinnerc991f242019-03-01 17:19:04 +01002561
Andrew M. Kuchling62686692001-05-21 20:48:09 +00002562 # turn off warnings when deprecated modules are imported
2563 import warnings
2564 warnings.filterwarnings("ignore",category=DeprecationWarning)
Guido van Rossum14ee89c2003-02-20 02:52:04 +00002565 setup(# PyPI Metadata (PEP 301)
2566 name = "Python",
2567 version = sys.version.split()[0],
Serhiy Storchaka885bdc42016-02-11 13:10:36 +02002568 url = "http://www.python.org/%d.%d" % sys.version_info[:2],
Guido van Rossum14ee89c2003-02-20 02:52:04 +00002569 maintainer = "Guido van Rossum and the Python community",
2570 maintainer_email = "python-dev@python.org",
2571 description = "A high-level object-oriented programming language",
2572 long_description = SUMMARY.strip(),
2573 license = "PSF license",
Guido van Rossumc1f779c2007-07-03 08:25:58 +00002574 classifiers = [x for x in CLASSIFIERS.split("\n") if x],
Guido van Rossum14ee89c2003-02-20 02:52:04 +00002575 platforms = ["Many"],
2576
2577 # Build info
Georg Brandlff52f762010-12-28 09:51:43 +00002578 cmdclass = {'build_ext': PyBuildExt,
2579 'build_scripts': PyBuildScripts,
2580 'install': PyBuildInstall,
2581 'install_lib': PyBuildInstallLib},
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002582 # The struct module is defined here, because build_ext won't be
2583 # called unless there's at least one extension module defined.
Thomas Wouters477c8d52006-05-27 19:21:47 +00002584 ext_modules=[Extension('_struct', ['_struct.c'])],
Andrew M. Kuchlingaece4272001-02-28 20:56:49 +00002585
Georg Brandlff52f762010-12-28 09:51:43 +00002586 # If you change the scripts installed here, you also need to
2587 # check the PyBuildScripts command above, and change the links
2588 # created by the bininstall target in Makefile.pre.in
Benjamin Petersondfea1922009-05-23 17:13:14 +00002589 scripts = ["Tools/scripts/pydoc3", "Tools/scripts/idle3",
Brett Cannona8c34242018-04-20 14:15:40 -07002590 "Tools/scripts/2to3"]
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002591 )
Fredrik Lundhade711a2001-01-24 08:00:28 +00002592
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002593# --install-platlib
2594if __name__ == '__main__':
Andrew M. Kuchling00e0f212001-01-17 15:23:23 +00002595 main()