blob: a1452fe16748e9ab7e11def71a0d225b24c2c6e6 [file] [log] [blame]
Fred Drake70b014d2001-07-18 18:39:56 +00001"""Provide access to Python's configuration information. The specific
2configuration variables available depend heavily on the platform and
3configuration. The values may be retrieved using
4get_config_var(name), and the list of variables is available via
5get_config_vars().keys(). Additional convenience functions are also
6available.
Greg Ward1190ee31998-12-18 23:46:33 +00007
8Written by: Fred L. Drake, Jr.
9Email: <fdrake@acm.org>
Greg Ward1190ee31998-12-18 23:46:33 +000010"""
11
Greg Ward9ddaaa11999-01-06 14:46:06 +000012import os
13import re
Tarek Ziadé36797272010-07-22 12:50:05 +000014import sys
Greg Ward1190ee31998-12-18 23:46:33 +000015
Tarek Ziadé36797272010-07-22 12:50:05 +000016from .errors import DistutilsPlatformError
Greg Warda0ca3f22000-02-02 00:05:14 +000017
Tarek Ziadé36797272010-07-22 12:50:05 +000018# These are needed in a couple of spots, so just compute them once.
19PREFIX = os.path.normpath(sys.prefix)
20EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
Vinay Sajip7ded1f02012-05-26 03:45:29 +010021BASE_PREFIX = os.path.normpath(sys.base_prefix)
22BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
Fred Drakec1ee39a2000-03-09 15:54:52 +000023
Tarek Ziadé36797272010-07-22 12:50:05 +000024# Path to the base directory of the project. On Windows the binary may
25# live in project/PCBuild9. If we're dealing with an x64 Windows build,
26# it'll live in project/PCbuild/amd64.
doko@python.org97313302013-01-25 14:33:33 +010027# set for cross builds
28if "_PYTHON_PROJECT_BASE" in os.environ:
29 project_base = os.path.abspath(os.environ["_PYTHON_PROJECT_BASE"])
30else:
31 project_base = os.path.dirname(os.path.abspath(sys.executable))
Tarek Ziadé36797272010-07-22 12:50:05 +000032if os.name == "nt" and "pcbuild" in project_base[-8:].lower():
33 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir))
34# PC/VS7.1
35if os.name == "nt" and "\\pc\\v" in project_base[-10:].lower():
36 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir,
37 os.path.pardir))
38# PC/AMD64
39if os.name == "nt" and "\\pcbuild\\amd64" in project_base[-14:].lower():
40 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir,
41 os.path.pardir))
Tarek Ziadé8b441d02010-01-29 11:46:31 +000042
Tarek Ziadé36797272010-07-22 12:50:05 +000043# python_build: (Boolean) if true, we're either building Python or
44# building an extension with an un-installed Python, so we use
45# different (hard-wired) directories.
46# Setup.local is available for Makefile builds including VPATH builds,
47# Setup.dist is available on Windows
Vinay Sajip7ded1f02012-05-26 03:45:29 +010048def _is_python_source_dir(d):
Tarek Ziadé36797272010-07-22 12:50:05 +000049 for fn in ("Setup.dist", "Setup.local"):
Vinay Sajip7ded1f02012-05-26 03:45:29 +010050 if os.path.isfile(os.path.join(d, "Modules", fn)):
Tarek Ziadé36797272010-07-22 12:50:05 +000051 return True
52 return False
Vinay Sajip7ded1f02012-05-26 03:45:29 +010053_sys_home = getattr(sys, '_home', None)
Vinay Sajip42211422012-05-26 20:36:12 +010054if _sys_home and os.name == 'nt' and \
55 _sys_home.lower().endswith(('pcbuild', 'pcbuild\\amd64')):
Vinay Sajip7ded1f02012-05-26 03:45:29 +010056 _sys_home = os.path.dirname(_sys_home)
Vinay Sajip7e203492012-05-27 17:30:09 +010057 if _sys_home.endswith('pcbuild'): # must be amd64
58 _sys_home = os.path.dirname(_sys_home)
Vinay Sajip7ded1f02012-05-26 03:45:29 +010059def _python_build():
60 if _sys_home:
61 return _is_python_source_dir(_sys_home)
62 return _is_python_source_dir(project_base)
Christian Heimes2202f872008-02-06 14:31:34 +000063python_build = _python_build()
Fred Drakec916cdc2001-08-02 20:03:12 +000064
Barry Warsaw14d98ac2010-11-24 19:43:47 +000065# Calculate the build qualifier flags if they are defined. Adding the flags
66# to the include and lib directories only makes sense for an installation, not
67# an in-source build.
68build_flags = ''
69try:
70 if not python_build:
71 build_flags = sys.abiflags
72except AttributeError:
73 # It's not a configure-based build, so the sys module doesn't have
74 # this attribute, which is fine.
75 pass
76
Tarek Ziadé36797272010-07-22 12:50:05 +000077def get_python_version():
78 """Return a string containing the major and minor Python version,
79 leaving off the patchlevel. Sample return values could be '1.5'
80 or '2.2'.
81 """
82 return sys.version[:3]
Tarek Ziadéedacea32010-01-29 11:41:03 +000083
Tarek Ziadé36797272010-07-22 12:50:05 +000084
85def get_python_inc(plat_specific=0, prefix=None):
86 """Return the directory containing installed Python header files.
Fred Drakec1ee39a2000-03-09 15:54:52 +000087
88 If 'plat_specific' is false (the default), this is the path to the
89 non-platform-specific header files, i.e. Python.h and so on;
90 otherwise, this is the path to platform-specific header files
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +000091 (namely pyconfig.h).
Fred Drakec1ee39a2000-03-09 15:54:52 +000092
Vinay Sajip7ded1f02012-05-26 03:45:29 +010093 If 'prefix' is supplied, use it instead of sys.base_prefix or
94 sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
Fred Drakeb94b8492001-12-06 20:51:35 +000095 """
Tarek Ziadé36797272010-07-22 12:50:05 +000096 if prefix is None:
Vinay Sajip7ded1f02012-05-26 03:45:29 +010097 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
Tarek Ziadé36797272010-07-22 12:50:05 +000098 if os.name == "posix":
99 if python_build:
Vinay Sajipae7d7fa2010-09-20 10:29:54 +0000100 # Assume the executable is in the build directory. The
101 # pyconfig.h file should be in the same directory. Since
102 # the build directory may not be the source directory, we
103 # must use "srcdir" from the makefile to find the "Include"
104 # directory.
doko@python.org97313302013-01-25 14:33:33 +0100105 base = _sys_home or project_base
Vinay Sajipae7d7fa2010-09-20 10:29:54 +0000106 if plat_specific:
107 return base
Vinay Sajip048b0632012-07-16 18:24:55 +0100108 if _sys_home:
109 incdir = os.path.join(_sys_home, get_config_var('AST_H_DIR'))
Vinay Sajipae7d7fa2010-09-20 10:29:54 +0000110 else:
Vinay Sajip048b0632012-07-16 18:24:55 +0100111 incdir = os.path.join(get_config_var('srcdir'), 'Include')
112 return os.path.normpath(incdir)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000113 python_dir = 'python' + get_python_version() + build_flags
114 return os.path.join(prefix, "include", python_dir)
Tarek Ziadé36797272010-07-22 12:50:05 +0000115 elif os.name == "nt":
116 return os.path.join(prefix, "include")
Greg Ward7d73b9e2000-03-09 03:16:05 +0000117 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000118 raise DistutilsPlatformError(
119 "I don't know where Python installs its C header files "
120 "on platform '%s'" % os.name)
Greg Ward7d73b9e2000-03-09 03:16:05 +0000121
122
Tarek Ziadé36797272010-07-22 12:50:05 +0000123def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
124 """Return the directory containing the Python library (standard or
Fred Drakec1ee39a2000-03-09 15:54:52 +0000125 site additions).
Greg Ward7d73b9e2000-03-09 03:16:05 +0000126
Fred Drakec1ee39a2000-03-09 15:54:52 +0000127 If 'plat_specific' is true, return the directory containing
128 platform-specific modules, i.e. any module from a non-pure-Python
129 module distribution; otherwise, return the platform-shared library
130 directory. If 'standard_lib' is true, return the directory
131 containing standard Python library modules; otherwise, return the
132 directory for site-specific modules.
133
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100134 If 'prefix' is supplied, use it instead of sys.base_prefix or
135 sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
Fred Drakec1ee39a2000-03-09 15:54:52 +0000136 """
Tarek Ziadé36797272010-07-22 12:50:05 +0000137 if prefix is None:
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100138 if standard_lib:
139 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
140 else:
141 prefix = plat_specific and EXEC_PREFIX or PREFIX
Tarek Ziadé36797272010-07-22 12:50:05 +0000142
143 if os.name == "posix":
144 libpython = os.path.join(prefix,
145 "lib", "python" + get_python_version())
146 if standard_lib:
147 return libpython
Greg Ward7d73b9e2000-03-09 03:16:05 +0000148 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000149 return os.path.join(libpython, "site-packages")
150 elif os.name == "nt":
151 if standard_lib:
152 return os.path.join(prefix, "Lib")
Marc-André Lemburg2544f512002-01-31 18:56:00 +0000153 else:
Benjamin Petersondf0eb952014-09-06 17:24:12 -0400154 return os.path.join(prefix, "Lib", "site-packages")
Greg Ward7d73b9e2000-03-09 03:16:05 +0000155 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000156 raise DistutilsPlatformError(
157 "I don't know where Python installs its library "
158 "on platform '%s'" % os.name)
159
Ned Deilycbfb9a52012-06-23 16:02:19 -0700160
Tarek Ziadé36797272010-07-22 12:50:05 +0000161
162def customize_compiler(compiler):
163 """Do any platform-specific customization of a CCompiler instance.
164
165 Mainly needed on Unix, so we can plug in the information that
166 varies across Unices and is stored in Python's Makefile.
167 """
168 if compiler.compiler_type == "unix":
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700169 if sys.platform == "darwin":
170 # Perform first-time customization of compiler-related
171 # config vars on OS X now that we know we need a compiler.
172 # This is primarily to support Pythons from binary
173 # installers. The kind and paths to build tools on
174 # the user system may vary significantly from the system
175 # that Python itself was built on. Also the user OS
176 # version and build tools may not support the same set
177 # of CPU architectures for universal builds.
178 global _config_vars
Ned Deily7bc5fb62014-07-06 16:14:33 -0700179 # Use get_config_var() to ensure _config_vars is initialized.
180 if not get_config_var('CUSTOMIZED_OSX_COMPILER'):
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700181 import _osx_support
182 _osx_support.customize_compiler(_config_vars)
183 _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True'
184
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700185 (cc, cxx, opt, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \
Tarek Ziadé36797272010-07-22 12:50:05 +0000186 get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700187 'CCSHARED', 'LDSHARED', 'SHLIB_SUFFIX', 'AR', 'ARFLAGS')
Tarek Ziadé36797272010-07-22 12:50:05 +0000188
189 if 'CC' in os.environ:
Ned Deily97345682013-05-28 16:35:30 -0700190 newcc = os.environ['CC']
191 if (sys.platform == 'darwin'
192 and 'LDSHARED' not in os.environ
193 and ldshared.startswith(cc)):
194 # On OS X, if CC is overridden, use that as the default
195 # command for LDSHARED as well
196 ldshared = newcc + ldshared[len(cc):]
197 cc = newcc
Tarek Ziadé36797272010-07-22 12:50:05 +0000198 if 'CXX' in os.environ:
199 cxx = os.environ['CXX']
200 if 'LDSHARED' in os.environ:
201 ldshared = os.environ['LDSHARED']
202 if 'CPP' in os.environ:
203 cpp = os.environ['CPP']
Andrew M. Kuchling29c86232002-11-04 19:53:24 +0000204 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000205 cpp = cc + " -E" # not always
206 if 'LDFLAGS' in os.environ:
207 ldshared = ldshared + ' ' + os.environ['LDFLAGS']
208 if 'CFLAGS' in os.environ:
209 cflags = opt + ' ' + os.environ['CFLAGS']
210 ldshared = ldshared + ' ' + os.environ['CFLAGS']
211 if 'CPPFLAGS' in os.environ:
212 cpp = cpp + ' ' + os.environ['CPPFLAGS']
213 cflags = cflags + ' ' + os.environ['CPPFLAGS']
214 ldshared = ldshared + ' ' + os.environ['CPPFLAGS']
215 if 'AR' in os.environ:
216 ar = os.environ['AR']
217 if 'ARFLAGS' in os.environ:
218 archiver = ar + ' ' + os.environ['ARFLAGS']
219 else:
220 archiver = ar + ' ' + ar_flags
221
222 cc_cmd = cc + ' ' + cflags
223 compiler.set_executables(
224 preprocessor=cpp,
225 compiler=cc_cmd,
226 compiler_so=cc_cmd + ' ' + ccshared,
227 compiler_cxx=cxx,
228 linker_so=ldshared,
229 linker_exe=cc,
230 archiver=archiver)
231
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700232 compiler.shared_lib_extension = shlib_suffix
Tarek Ziadé36797272010-07-22 12:50:05 +0000233
234
235def get_config_h_filename():
236 """Return full pathname of installed pyconfig.h file."""
237 if python_build:
238 if os.name == "nt":
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100239 inc_dir = os.path.join(_sys_home or project_base, "PC")
Tarek Ziadé36797272010-07-22 12:50:05 +0000240 else:
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100241 inc_dir = _sys_home or project_base
Tarek Ziadé36797272010-07-22 12:50:05 +0000242 else:
243 inc_dir = get_python_inc(plat_specific=1)
Benjamin Petersondf0eb952014-09-06 17:24:12 -0400244
245 return os.path.join(inc_dir, 'pyconfig.h')
Tarek Ziadé36797272010-07-22 12:50:05 +0000246
Greg Ward1190ee31998-12-18 23:46:33 +0000247
Greg Ward9ddaaa11999-01-06 14:46:06 +0000248def get_makefile_filename():
Tarek Ziadé36797272010-07-22 12:50:05 +0000249 """Return full pathname of installed Makefile from the Python build."""
250 if python_build:
doko@python.org97313302013-01-25 14:33:33 +0100251 return os.path.join(_sys_home or project_base, "Makefile")
Éric Araujofea2d042011-10-08 01:56:52 +0200252 lib_dir = get_python_lib(plat_specific=0, standard_lib=1)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000253 config_file = 'config-{}{}'.format(get_python_version(), build_flags)
254 return os.path.join(lib_dir, config_file, 'Makefile')
Greg Ward7d73b9e2000-03-09 03:16:05 +0000255
Tarek Ziadé36797272010-07-22 12:50:05 +0000256
257def parse_config_h(fp, g=None):
258 """Parse a config.h-style file.
259
260 A dictionary containing name/value pairs is returned. If an
261 optional dictionary is passed in as the second argument, it is
262 used instead of a new dictionary.
Fred Drake522af3a1999-01-06 16:28:34 +0000263 """
Tarek Ziadé36797272010-07-22 12:50:05 +0000264 if g is None:
265 g = {}
266 define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n")
267 undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n")
268 #
269 while True:
270 line = fp.readline()
271 if not line:
272 break
273 m = define_rx.match(line)
274 if m:
275 n, v = m.group(1, 2)
276 try: v = int(v)
277 except ValueError: pass
278 g[n] = v
279 else:
280 m = undef_rx.match(line)
281 if m:
282 g[m.group(1)] = 0
283 return g
Greg Ward1190ee31998-12-18 23:46:33 +0000284
Greg Wardd283ce72000-09-17 00:53:02 +0000285
286# Regexes needed for parsing Makefile (and similar syntaxes,
287# like old-style Setup files).
288_variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)")
289_findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)")
290_findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}")
291
Greg Ward3fff8d22000-09-15 00:03:13 +0000292def parse_makefile(fn, g=None):
Tarek Ziadé36797272010-07-22 12:50:05 +0000293 """Parse a Makefile-style file.
Fred Drakec1ee39a2000-03-09 15:54:52 +0000294
295 A dictionary containing name/value pairs is returned. If an
296 optional dictionary is passed in as the second argument, it is
297 used instead of a new dictionary.
Fred Drake522af3a1999-01-06 16:28:34 +0000298 """
Tarek Ziadé36797272010-07-22 12:50:05 +0000299 from distutils.text_file import TextFile
Victor Stinner75d8c5c2010-10-23 17:02:31 +0000300 fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1, errors="surrogateescape")
Tarek Ziadé36797272010-07-22 12:50:05 +0000301
302 if g is None:
303 g = {}
304 done = {}
305 notdone = {}
306
307 while True:
308 line = fp.readline()
309 if line is None: # eof
310 break
311 m = _variable_rx.match(line)
312 if m:
313 n, v = m.group(1, 2)
314 v = v.strip()
315 # `$$' is a literal `$' in make
316 tmpv = v.replace('$$', '')
317
318 if "$" in tmpv:
319 notdone[n] = v
320 else:
321 try:
322 v = int(v)
323 except ValueError:
324 # insert literal `$'
325 done[n] = v.replace('$$', '$')
326 else:
327 done[n] = v
328
Ronald Oussorene8d252d2010-07-23 09:43:17 +0000329 # Variables with a 'PY_' prefix in the makefile. These need to
330 # be made available without that prefix through sysconfig.
331 # Special care is needed to ensure that variable expansion works, even
332 # if the expansion uses the name without a prefix.
333 renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS')
334
Tarek Ziadé36797272010-07-22 12:50:05 +0000335 # do variable interpolation here
336 while notdone:
337 for name in list(notdone):
338 value = notdone[name]
339 m = _findvar1_rx.search(value) or _findvar2_rx.search(value)
340 if m:
341 n = m.group(1)
342 found = True
343 if n in done:
344 item = str(done[n])
345 elif n in notdone:
346 # get it on a subsequent round
347 found = False
348 elif n in os.environ:
349 # do it like make: fall back to environment
350 item = os.environ[n]
Ronald Oussorene8d252d2010-07-23 09:43:17 +0000351
352 elif n in renamed_variables:
353 if name.startswith('PY_') and name[3:] in renamed_variables:
354 item = ""
355
356 elif 'PY_' + n in notdone:
357 found = False
358
359 else:
360 item = str(done['PY_' + n])
Tarek Ziadé36797272010-07-22 12:50:05 +0000361 else:
362 done[n] = item = ""
363 if found:
364 after = value[m.end():]
365 value = value[:m.start()] + item + after
366 if "$" in after:
367 notdone[name] = value
368 else:
369 try: value = int(value)
370 except ValueError:
371 done[name] = value.strip()
372 else:
373 done[name] = value
374 del notdone[name]
Ronald Oussorene8d252d2010-07-23 09:43:17 +0000375
376 if name.startswith('PY_') \
377 and name[3:] in renamed_variables:
378
379 name = name[3:]
380 if name not in done:
381 done[name] = value
Tarek Ziadé36797272010-07-22 12:50:05 +0000382 else:
383 # bogus variable reference; just drop it since we can't deal
384 del notdone[name]
385
386 fp.close()
387
Antoine Pitroudbec7802010-10-10 09:37:12 +0000388 # strip spurious spaces
389 for k, v in done.items():
390 if isinstance(v, str):
391 done[k] = v.strip()
392
Tarek Ziadé36797272010-07-22 12:50:05 +0000393 # save the results in the global dictionary
394 g.update(done)
395 return g
396
Greg Ward1190ee31998-12-18 23:46:33 +0000397
Greg Wardd283ce72000-09-17 00:53:02 +0000398def expand_makefile_vars(s, vars):
Tarek Ziadé36797272010-07-22 12:50:05 +0000399 """Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
Greg Wardd283ce72000-09-17 00:53:02 +0000400 'string' according to 'vars' (a dictionary mapping variable names to
401 values). Variables not present in 'vars' are silently expanded to the
402 empty string. The variable values in 'vars' should not contain further
403 variable expansions; if 'vars' is the output of 'parse_makefile()',
404 you're fine. Returns a variable-expanded version of 's'.
405 """
406
407 # This algorithm does multiple expansion, so if vars['foo'] contains
408 # "${bar}", it will expand ${foo} to ${bar}, and then expand
409 # ${bar}... and so forth. This is fine as long as 'vars' comes from
410 # 'parse_makefile()', which takes care of such expansions eagerly,
411 # according to make's variable expansion semantics.
412
Collin Winter5b7e9d72007-08-30 03:52:21 +0000413 while True:
Greg Wardd283ce72000-09-17 00:53:02 +0000414 m = _findvar1_rx.search(s) or _findvar2_rx.search(s)
415 if m:
Greg Wardd283ce72000-09-17 00:53:02 +0000416 (beg, end) = m.span()
417 s = s[0:beg] + vars.get(m.group(1)) + s[end:]
418 else:
419 break
420 return s
Tarek Ziadé36797272010-07-22 12:50:05 +0000421
422
423_config_vars = None
424
425def _init_posix():
426 """Initialize the module as appropriate for POSIX systems."""
427 g = {}
428 # load the installed Makefile:
429 try:
430 filename = get_makefile_filename()
431 parse_makefile(filename, g)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200432 except OSError as msg:
Tarek Ziadé36797272010-07-22 12:50:05 +0000433 my_msg = "invalid Python installation: unable to open %s" % filename
434 if hasattr(msg, "strerror"):
435 my_msg = my_msg + " (%s)" % msg.strerror
436
437 raise DistutilsPlatformError(my_msg)
438
439 # load the installed pyconfig.h:
440 try:
441 filename = get_config_h_filename()
Brett Cannon5c035c02010-10-29 22:36:08 +0000442 with open(filename) as file:
443 parse_config_h(file, g)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200444 except OSError as msg:
Tarek Ziadé36797272010-07-22 12:50:05 +0000445 my_msg = "invalid Python installation: unable to open %s" % filename
446 if hasattr(msg, "strerror"):
447 my_msg = my_msg + " (%s)" % msg.strerror
448
449 raise DistutilsPlatformError(my_msg)
450
Tarek Ziadé36797272010-07-22 12:50:05 +0000451 # On AIX, there are wrong paths to the linker scripts in the Makefile
452 # -- these paths are relative to the Python source, but when installed
453 # the scripts are in another directory.
454 if python_build:
455 g['LDSHARED'] = g['BLDSHARED']
456
Tarek Ziadé36797272010-07-22 12:50:05 +0000457 global _config_vars
458 _config_vars = g
459
460
461def _init_nt():
462 """Initialize the module as appropriate for NT"""
463 g = {}
464 # set basic install directories
465 g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
466 g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
467
468 # XXX hmmm.. a normal install puts include files here
469 g['INCLUDEPY'] = get_python_inc(plat_specific=0)
470
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700471 g['EXT_SUFFIX'] = '.pyd'
Tarek Ziadé36797272010-07-22 12:50:05 +0000472 g['EXE'] = ".exe"
473 g['VERSION'] = get_python_version().replace(".", "")
474 g['BINDIR'] = os.path.dirname(os.path.abspath(sys.executable))
475
476 global _config_vars
477 _config_vars = g
478
479
Tarek Ziadé36797272010-07-22 12:50:05 +0000480def get_config_vars(*args):
481 """With no arguments, return a dictionary of all configuration
482 variables relevant for the current platform. Generally this includes
483 everything needed to build extensions and install both pure modules and
484 extensions. On Unix, this means every variable defined in Python's
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700485 installed Makefile; on Windows it's a much smaller set.
Tarek Ziadé36797272010-07-22 12:50:05 +0000486
487 With arguments, return a list of values that result from looking up
488 each argument in the configuration variable dictionary.
489 """
490 global _config_vars
491 if _config_vars is None:
492 func = globals().get("_init_" + os.name)
493 if func:
494 func()
495 else:
496 _config_vars = {}
497
498 # Normalized versions of prefix and exec_prefix are handy to have;
499 # in fact, these are the standard versions used most places in the
500 # Distutils.
501 _config_vars['prefix'] = PREFIX
502 _config_vars['exec_prefix'] = EXEC_PREFIX
503
Barry Warsaw9121f8d2013-11-22 15:31:35 -0500504 # For backward compatibility, see issue19555
505 SO = _config_vars.get('EXT_SUFFIX')
506 if SO is not None:
507 _config_vars['SO'] = SO
508
Richard Oudkerk46874ad2012-07-27 12:06:55 +0100509 # Always convert srcdir to an absolute path
510 srcdir = _config_vars.get('srcdir', project_base)
511 if os.name == 'posix':
512 if python_build:
513 # If srcdir is a relative path (typically '.' or '..')
514 # then it should be interpreted relative to the directory
515 # containing Makefile.
516 base = os.path.dirname(get_makefile_filename())
517 srcdir = os.path.join(base, srcdir)
518 else:
519 # srcdir is not meaningful since the installation is
520 # spread about the filesystem. We choose the
521 # directory containing the Makefile since we know it
522 # exists.
523 srcdir = os.path.dirname(get_makefile_filename())
524 _config_vars['srcdir'] = os.path.abspath(os.path.normpath(srcdir))
525
Tarek Ziadé36797272010-07-22 12:50:05 +0000526 # Convert srcdir into an absolute path if it appears necessary.
527 # Normally it is relative to the build directory. However, during
528 # testing, for example, we might be running a non-installed python
529 # from a different directory.
530 if python_build and os.name == "posix":
doko@python.org97313302013-01-25 14:33:33 +0100531 base = project_base
Tarek Ziadé36797272010-07-22 12:50:05 +0000532 if (not os.path.isabs(_config_vars['srcdir']) and
533 base != os.getcwd()):
534 # srcdir is relative and we are not in the same directory
535 # as the executable. Assume executable is in the build
536 # directory and make srcdir absolute.
537 srcdir = os.path.join(base, _config_vars['srcdir'])
538 _config_vars['srcdir'] = os.path.normpath(srcdir)
539
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700540 # OS X platforms require special customization to handle
541 # multi-architecture, multi-os-version installers
Tarek Ziadé36797272010-07-22 12:50:05 +0000542 if sys.platform == 'darwin':
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700543 import _osx_support
544 _osx_support.customize_config_vars(_config_vars)
Ned Deily27471772012-07-15 21:30:03 -0700545
Tarek Ziadé36797272010-07-22 12:50:05 +0000546 if args:
547 vals = []
548 for name in args:
549 vals.append(_config_vars.get(name))
550 return vals
551 else:
552 return _config_vars
553
554def get_config_var(name):
555 """Return the value of a single variable using the dictionary
556 returned by 'get_config_vars()'. Equivalent to
557 get_config_vars().get(name)
558 """
Barry Warsaw9121f8d2013-11-22 15:31:35 -0500559 if name == 'SO':
560 import warnings
Serhiy Storchakaeaec3592013-11-26 17:08:24 +0200561 warnings.warn('SO is deprecated, use EXT_SUFFIX', DeprecationWarning, 2)
Tarek Ziadé36797272010-07-22 12:50:05 +0000562 return get_config_vars().get(name)