Fred Drake | 70b014d | 2001-07-18 18:39:56 +0000 | [diff] [blame] | 1 | """Provide access to Python's configuration information. The specific |
| 2 | configuration variables available depend heavily on the platform and |
| 3 | configuration. The values may be retrieved using |
| 4 | get_config_var(name), and the list of variables is available via |
| 5 | get_config_vars().keys(). Additional convenience functions are also |
| 6 | available. |
Greg Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 7 | |
| 8 | Written by: Fred L. Drake, Jr. |
| 9 | Email: <fdrake@acm.org> |
Greg Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 10 | """ |
| 11 | |
Greg Ward | 9ddaaa1 | 1999-01-06 14:46:06 +0000 | [diff] [blame] | 12 | import os |
| 13 | import re |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 14 | import sys |
Greg Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 15 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 16 | from .errors import DistutilsPlatformError |
Greg Ward | a0ca3f2 | 2000-02-02 00:05:14 +0000 | [diff] [blame] | 17 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 18 | # These are needed in a couple of spots, so just compute them once. |
| 19 | PREFIX = os.path.normpath(sys.prefix) |
| 20 | EXEC_PREFIX = os.path.normpath(sys.exec_prefix) |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 21 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 22 | # Path to the base directory of the project. On Windows the binary may |
| 23 | # live in project/PCBuild9. If we're dealing with an x64 Windows build, |
| 24 | # it'll live in project/PCbuild/amd64. |
| 25 | project_base = os.path.dirname(os.path.abspath(sys.executable)) |
| 26 | if os.name == "nt" and "pcbuild" in project_base[-8:].lower(): |
| 27 | project_base = os.path.abspath(os.path.join(project_base, os.path.pardir)) |
| 28 | # PC/VS7.1 |
| 29 | if os.name == "nt" and "\\pc\\v" in project_base[-10:].lower(): |
| 30 | project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, |
| 31 | os.path.pardir)) |
| 32 | # PC/AMD64 |
| 33 | if os.name == "nt" and "\\pcbuild\\amd64" in project_base[-14:].lower(): |
| 34 | project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, |
| 35 | os.path.pardir)) |
Tarek Ziadé | 8b441d0 | 2010-01-29 11:46:31 +0000 | [diff] [blame] | 36 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 37 | # python_build: (Boolean) if true, we're either building Python or |
| 38 | # building an extension with an un-installed Python, so we use |
| 39 | # different (hard-wired) directories. |
| 40 | # Setup.local is available for Makefile builds including VPATH builds, |
| 41 | # Setup.dist is available on Windows |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 42 | def _python_build(): |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 43 | for fn in ("Setup.dist", "Setup.local"): |
| 44 | if os.path.isfile(os.path.join(project_base, "Modules", fn)): |
| 45 | return True |
| 46 | return False |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 47 | python_build = _python_build() |
Fred Drake | c916cdc | 2001-08-02 20:03:12 +0000 | [diff] [blame] | 48 | |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 49 | # Calculate the build qualifier flags if they are defined. Adding the flags |
| 50 | # to the include and lib directories only makes sense for an installation, not |
| 51 | # an in-source build. |
| 52 | build_flags = '' |
| 53 | try: |
| 54 | if not python_build: |
| 55 | build_flags = sys.abiflags |
| 56 | except AttributeError: |
| 57 | # It's not a configure-based build, so the sys module doesn't have |
| 58 | # this attribute, which is fine. |
| 59 | pass |
| 60 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 61 | def get_python_version(): |
| 62 | """Return a string containing the major and minor Python version, |
| 63 | leaving off the patchlevel. Sample return values could be '1.5' |
| 64 | or '2.2'. |
| 65 | """ |
| 66 | return sys.version[:3] |
Tarek Ziadé | edacea3 | 2010-01-29 11:41:03 +0000 | [diff] [blame] | 67 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 68 | |
| 69 | def get_python_inc(plat_specific=0, prefix=None): |
| 70 | """Return the directory containing installed Python header files. |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 71 | |
| 72 | If 'plat_specific' is false (the default), this is the path to the |
| 73 | non-platform-specific header files, i.e. Python.h and so on; |
| 74 | otherwise, this is the path to platform-specific header files |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 75 | (namely pyconfig.h). |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 76 | |
Greg Ward | d38e6f7 | 2000-04-10 01:17:49 +0000 | [diff] [blame] | 77 | If 'prefix' is supplied, use it instead of sys.prefix or |
| 78 | sys.exec_prefix -- i.e., ignore 'plat_specific'. |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 79 | """ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 80 | if prefix is None: |
| 81 | prefix = plat_specific and EXEC_PREFIX or PREFIX |
| 82 | if os.name == "posix": |
| 83 | if python_build: |
Vinay Sajip | ae7d7fa | 2010-09-20 10:29:54 +0000 | [diff] [blame] | 84 | # Assume the executable is in the build directory. The |
| 85 | # pyconfig.h file should be in the same directory. Since |
| 86 | # the build directory may not be the source directory, we |
| 87 | # must use "srcdir" from the makefile to find the "Include" |
| 88 | # directory. |
| 89 | base = os.path.dirname(os.path.abspath(sys.executable)) |
| 90 | if plat_specific: |
| 91 | return base |
| 92 | else: |
| 93 | incdir = os.path.join(get_config_var('srcdir'), 'Include') |
| 94 | return os.path.normpath(incdir) |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 95 | python_dir = 'python' + get_python_version() + build_flags |
| 96 | return os.path.join(prefix, "include", python_dir) |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 97 | elif os.name == "nt": |
| 98 | return os.path.join(prefix, "include") |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 99 | elif os.name == "os2": |
| 100 | return os.path.join(prefix, "Include") |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 101 | else: |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 102 | raise DistutilsPlatformError( |
| 103 | "I don't know where Python installs its C header files " |
| 104 | "on platform '%s'" % os.name) |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 105 | |
| 106 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 107 | def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): |
| 108 | """Return the directory containing the Python library (standard or |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 109 | site additions). |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 110 | |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 111 | If 'plat_specific' is true, return the directory containing |
| 112 | platform-specific modules, i.e. any module from a non-pure-Python |
| 113 | module distribution; otherwise, return the platform-shared library |
| 114 | directory. If 'standard_lib' is true, return the directory |
| 115 | containing standard Python library modules; otherwise, return the |
| 116 | directory for site-specific modules. |
| 117 | |
Greg Ward | d38e6f7 | 2000-04-10 01:17:49 +0000 | [diff] [blame] | 118 | If 'prefix' is supplied, use it instead of sys.prefix or |
| 119 | sys.exec_prefix -- i.e., ignore 'plat_specific'. |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 120 | """ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 121 | if prefix is None: |
| 122 | prefix = plat_specific and EXEC_PREFIX or PREFIX |
| 123 | |
| 124 | if os.name == "posix": |
| 125 | libpython = os.path.join(prefix, |
| 126 | "lib", "python" + get_python_version()) |
| 127 | if standard_lib: |
| 128 | return libpython |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 129 | else: |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 130 | return os.path.join(libpython, "site-packages") |
| 131 | elif os.name == "nt": |
| 132 | if standard_lib: |
| 133 | return os.path.join(prefix, "Lib") |
Marc-André Lemburg | 2544f51 | 2002-01-31 18:56:00 +0000 | [diff] [blame] | 134 | else: |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 135 | if get_python_version() < "2.2": |
| 136 | return prefix |
| 137 | else: |
| 138 | return os.path.join(prefix, "Lib", "site-packages") |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 139 | elif os.name == "os2": |
| 140 | if standard_lib: |
| 141 | return os.path.join(prefix, "Lib") |
| 142 | else: |
| 143 | return os.path.join(prefix, "Lib", "site-packages") |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 144 | else: |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 145 | raise DistutilsPlatformError( |
| 146 | "I don't know where Python installs its library " |
| 147 | "on platform '%s'" % os.name) |
| 148 | |
Ned Deily | 9937748 | 2012-02-10 13:01:08 +0100 | [diff] [blame] | 149 | _USE_CLANG = None |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 150 | |
| 151 | def customize_compiler(compiler): |
| 152 | """Do any platform-specific customization of a CCompiler instance. |
| 153 | |
| 154 | Mainly needed on Unix, so we can plug in the information that |
| 155 | varies across Unices and is stored in Python's Makefile. |
| 156 | """ |
| 157 | if compiler.compiler_type == "unix": |
| 158 | (cc, cxx, opt, cflags, ccshared, ldshared, so_ext, ar, ar_flags) = \ |
| 159 | get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', |
| 160 | 'CCSHARED', 'LDSHARED', 'SO', 'AR', 'ARFLAGS') |
| 161 | |
Ned Deily | 9937748 | 2012-02-10 13:01:08 +0100 | [diff] [blame] | 162 | newcc = None |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 163 | if 'CC' in os.environ: |
Ned Deily | 9937748 | 2012-02-10 13:01:08 +0100 | [diff] [blame] | 164 | newcc = os.environ['CC'] |
| 165 | elif sys.platform == 'darwin' and cc == 'gcc-4.2': |
| 166 | # Issue #13590: |
| 167 | # Since Apple removed gcc-4.2 in Xcode 4.2, we can no |
| 168 | # longer assume it is available for extension module builds. |
| 169 | # If Python was built with gcc-4.2, check first to see if |
| 170 | # it is available on this system; if not, try to use clang |
| 171 | # instead unless the caller explicitly set CC. |
| 172 | global _USE_CLANG |
| 173 | if _USE_CLANG is None: |
| 174 | from distutils import log |
| 175 | from subprocess import Popen, PIPE |
| 176 | p = Popen("! type gcc-4.2 && type clang && exit 2", |
| 177 | shell=True, stdout=PIPE, stderr=PIPE) |
| 178 | p.wait() |
| 179 | if p.returncode == 2: |
| 180 | _USE_CLANG = True |
| 181 | log.warn("gcc-4.2 not found, using clang instead") |
| 182 | else: |
| 183 | _USE_CLANG = False |
| 184 | if _USE_CLANG: |
| 185 | newcc = 'clang' |
| 186 | if newcc: |
| 187 | # On OS X, if CC is overridden, use that as the default |
| 188 | # command for LDSHARED as well |
| 189 | if (sys.platform == 'darwin' |
| 190 | and 'LDSHARED' not in os.environ |
| 191 | and ldshared.startswith(cc)): |
| 192 | ldshared = newcc + ldshared[len(cc):] |
| 193 | cc = newcc |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 194 | if 'CXX' in os.environ: |
| 195 | cxx = os.environ['CXX'] |
| 196 | if 'LDSHARED' in os.environ: |
| 197 | ldshared = os.environ['LDSHARED'] |
| 198 | if 'CPP' in os.environ: |
| 199 | cpp = os.environ['CPP'] |
Andrew M. Kuchling | 29c8623 | 2002-11-04 19:53:24 +0000 | [diff] [blame] | 200 | else: |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 201 | cpp = cc + " -E" # not always |
| 202 | if 'LDFLAGS' in os.environ: |
| 203 | ldshared = ldshared + ' ' + os.environ['LDFLAGS'] |
| 204 | if 'CFLAGS' in os.environ: |
| 205 | cflags = opt + ' ' + os.environ['CFLAGS'] |
| 206 | ldshared = ldshared + ' ' + os.environ['CFLAGS'] |
| 207 | if 'CPPFLAGS' in os.environ: |
| 208 | cpp = cpp + ' ' + os.environ['CPPFLAGS'] |
| 209 | cflags = cflags + ' ' + os.environ['CPPFLAGS'] |
| 210 | ldshared = ldshared + ' ' + os.environ['CPPFLAGS'] |
| 211 | if 'AR' in os.environ: |
| 212 | ar = os.environ['AR'] |
| 213 | if 'ARFLAGS' in os.environ: |
| 214 | archiver = ar + ' ' + os.environ['ARFLAGS'] |
| 215 | else: |
| 216 | archiver = ar + ' ' + ar_flags |
| 217 | |
| 218 | cc_cmd = cc + ' ' + cflags |
| 219 | compiler.set_executables( |
| 220 | preprocessor=cpp, |
| 221 | compiler=cc_cmd, |
| 222 | compiler_so=cc_cmd + ' ' + ccshared, |
| 223 | compiler_cxx=cxx, |
| 224 | linker_so=ldshared, |
| 225 | linker_exe=cc, |
| 226 | archiver=archiver) |
| 227 | |
| 228 | compiler.shared_lib_extension = so_ext |
| 229 | |
| 230 | |
| 231 | def get_config_h_filename(): |
| 232 | """Return full pathname of installed pyconfig.h file.""" |
| 233 | if python_build: |
| 234 | if os.name == "nt": |
| 235 | inc_dir = os.path.join(project_base, "PC") |
| 236 | else: |
| 237 | inc_dir = project_base |
| 238 | else: |
| 239 | inc_dir = get_python_inc(plat_specific=1) |
| 240 | if get_python_version() < '2.2': |
| 241 | config_h = 'config.h' |
| 242 | else: |
| 243 | # The name of the config.h file changed in 2.2 |
| 244 | config_h = 'pyconfig.h' |
| 245 | return os.path.join(inc_dir, config_h) |
| 246 | |
Greg Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 247 | |
Greg Ward | 9ddaaa1 | 1999-01-06 14:46:06 +0000 | [diff] [blame] | 248 | def get_makefile_filename(): |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 249 | """Return full pathname of installed Makefile from the Python build.""" |
| 250 | if python_build: |
| 251 | return os.path.join(os.path.dirname(sys.executable), "Makefile") |
Éric Araujo | fea2d04 | 2011-10-08 01:56:52 +0200 | [diff] [blame] | 252 | lib_dir = get_python_lib(plat_specific=0, standard_lib=1) |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 253 | config_file = 'config-{}{}'.format(get_python_version(), build_flags) |
| 254 | return os.path.join(lib_dir, config_file, 'Makefile') |
Greg Ward | 7d73b9e | 2000-03-09 03:16:05 +0000 | [diff] [blame] | 255 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 256 | |
| 257 | def 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 Drake | 522af3a | 1999-01-06 16:28:34 +0000 | [diff] [blame] | 263 | """ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 264 | 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 Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 284 | |
Greg Ward | d283ce7 | 2000-09-17 00:53:02 +0000 | [diff] [blame] | 285 | |
| 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 Ward | 3fff8d2 | 2000-09-15 00:03:13 +0000 | [diff] [blame] | 292 | def parse_makefile(fn, g=None): |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 293 | """Parse a Makefile-style file. |
Fred Drake | c1ee39a | 2000-03-09 15:54:52 +0000 | [diff] [blame] | 294 | |
| 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 Drake | 522af3a | 1999-01-06 16:28:34 +0000 | [diff] [blame] | 298 | """ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 299 | from distutils.text_file import TextFile |
Victor Stinner | 75d8c5c | 2010-10-23 17:02:31 +0000 | [diff] [blame] | 300 | fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1, errors="surrogateescape") |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 301 | |
| 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 Oussoren | e8d252d | 2010-07-23 09:43:17 +0000 | [diff] [blame] | 329 | # 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é | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 335 | # 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 Oussoren | e8d252d | 2010-07-23 09:43:17 +0000 | [diff] [blame] | 351 | |
| 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é | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 361 | 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 Oussoren | e8d252d | 2010-07-23 09:43:17 +0000 | [diff] [blame] | 375 | |
| 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é | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 382 | else: |
| 383 | # bogus variable reference; just drop it since we can't deal |
| 384 | del notdone[name] |
| 385 | |
| 386 | fp.close() |
| 387 | |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 388 | # strip spurious spaces |
| 389 | for k, v in done.items(): |
| 390 | if isinstance(v, str): |
| 391 | done[k] = v.strip() |
| 392 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 393 | # save the results in the global dictionary |
| 394 | g.update(done) |
| 395 | return g |
| 396 | |
Greg Ward | 1190ee3 | 1998-12-18 23:46:33 +0000 | [diff] [blame] | 397 | |
Greg Ward | d283ce7 | 2000-09-17 00:53:02 +0000 | [diff] [blame] | 398 | def expand_makefile_vars(s, vars): |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 399 | """Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in |
Greg Ward | d283ce7 | 2000-09-17 00:53:02 +0000 | [diff] [blame] | 400 | '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 Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 413 | while True: |
Greg Ward | d283ce7 | 2000-09-17 00:53:02 +0000 | [diff] [blame] | 414 | m = _findvar1_rx.search(s) or _findvar2_rx.search(s) |
| 415 | if m: |
Greg Ward | d283ce7 | 2000-09-17 00:53:02 +0000 | [diff] [blame] | 416 | (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é | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 421 | |
| 422 | |
| 423 | _config_vars = None |
| 424 | |
| 425 | def _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) |
| 432 | except IOError as msg: |
| 433 | 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 Cannon | 5c035c0 | 2010-10-29 22:36:08 +0000 | [diff] [blame] | 442 | with open(filename) as file: |
| 443 | parse_config_h(file, g) |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 444 | except IOError as msg: |
| 445 | 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é | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 451 | # 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 | |
| 457 | elif get_python_version() < '2.1': |
| 458 | # The following two branches are for 1.5.2 compatibility. |
| 459 | if sys.platform == 'aix4': # what about AIX 3.x ? |
| 460 | # Linker script is in the config directory, not in Modules as the |
| 461 | # Makefile says. |
| 462 | python_lib = get_python_lib(standard_lib=1) |
| 463 | ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix') |
| 464 | python_exp = os.path.join(python_lib, 'config', 'python.exp') |
| 465 | |
| 466 | g['LDSHARED'] = "%s %s -bI:%s" % (ld_so_aix, g['CC'], python_exp) |
| 467 | |
| 468 | global _config_vars |
| 469 | _config_vars = g |
| 470 | |
| 471 | |
| 472 | def _init_nt(): |
| 473 | """Initialize the module as appropriate for NT""" |
| 474 | g = {} |
| 475 | # set basic install directories |
| 476 | g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1) |
| 477 | g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1) |
| 478 | |
| 479 | # XXX hmmm.. a normal install puts include files here |
| 480 | g['INCLUDEPY'] = get_python_inc(plat_specific=0) |
| 481 | |
| 482 | g['SO'] = '.pyd' |
| 483 | g['EXE'] = ".exe" |
| 484 | g['VERSION'] = get_python_version().replace(".", "") |
| 485 | g['BINDIR'] = os.path.dirname(os.path.abspath(sys.executable)) |
| 486 | |
| 487 | global _config_vars |
| 488 | _config_vars = g |
| 489 | |
| 490 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame] | 491 | def _init_os2(): |
| 492 | """Initialize the module as appropriate for OS/2""" |
| 493 | g = {} |
| 494 | # set basic install directories |
| 495 | g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1) |
| 496 | g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1) |
| 497 | |
| 498 | # XXX hmmm.. a normal install puts include files here |
| 499 | g['INCLUDEPY'] = get_python_inc(plat_specific=0) |
| 500 | |
| 501 | g['SO'] = '.pyd' |
| 502 | g['EXE'] = ".exe" |
| 503 | |
| 504 | global _config_vars |
| 505 | _config_vars = g |
| 506 | |
| 507 | |
| 508 | def get_config_vars(*args): |
| 509 | """With no arguments, return a dictionary of all configuration |
| 510 | variables relevant for the current platform. Generally this includes |
| 511 | everything needed to build extensions and install both pure modules and |
| 512 | extensions. On Unix, this means every variable defined in Python's |
| 513 | installed Makefile; on Windows and Mac OS it's a much smaller set. |
| 514 | |
| 515 | With arguments, return a list of values that result from looking up |
| 516 | each argument in the configuration variable dictionary. |
| 517 | """ |
| 518 | global _config_vars |
| 519 | if _config_vars is None: |
| 520 | func = globals().get("_init_" + os.name) |
| 521 | if func: |
| 522 | func() |
| 523 | else: |
| 524 | _config_vars = {} |
| 525 | |
| 526 | # Normalized versions of prefix and exec_prefix are handy to have; |
| 527 | # in fact, these are the standard versions used most places in the |
| 528 | # Distutils. |
| 529 | _config_vars['prefix'] = PREFIX |
| 530 | _config_vars['exec_prefix'] = EXEC_PREFIX |
| 531 | |
| 532 | # Convert srcdir into an absolute path if it appears necessary. |
| 533 | # Normally it is relative to the build directory. However, during |
| 534 | # testing, for example, we might be running a non-installed python |
| 535 | # from a different directory. |
| 536 | if python_build and os.name == "posix": |
| 537 | base = os.path.dirname(os.path.abspath(sys.executable)) |
| 538 | if (not os.path.isabs(_config_vars['srcdir']) and |
| 539 | base != os.getcwd()): |
| 540 | # srcdir is relative and we are not in the same directory |
| 541 | # as the executable. Assume executable is in the build |
| 542 | # directory and make srcdir absolute. |
| 543 | srcdir = os.path.join(base, _config_vars['srcdir']) |
| 544 | _config_vars['srcdir'] = os.path.normpath(srcdir) |
| 545 | |
| 546 | if sys.platform == 'darwin': |
| 547 | kernel_version = os.uname()[2] # Kernel version (8.4.3) |
| 548 | major_version = int(kernel_version.split('.')[0]) |
| 549 | |
| 550 | if major_version < 8: |
| 551 | # On Mac OS X before 10.4, check if -arch and -isysroot |
| 552 | # are in CFLAGS or LDFLAGS and remove them if they are. |
| 553 | # This is needed when building extensions on a 10.3 system |
| 554 | # using a universal build of python. |
| 555 | for key in ('LDFLAGS', 'BASECFLAGS', |
| 556 | # a number of derived variables. These need to be |
| 557 | # patched up as well. |
| 558 | 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): |
| 559 | flags = _config_vars[key] |
| 560 | flags = re.sub('-arch\s+\w+\s', ' ', flags, re.ASCII) |
| 561 | flags = re.sub('-isysroot [^ \t]*', ' ', flags) |
| 562 | _config_vars[key] = flags |
| 563 | |
| 564 | else: |
| 565 | |
| 566 | # Allow the user to override the architecture flags using |
| 567 | # an environment variable. |
| 568 | # NOTE: This name was introduced by Apple in OSX 10.5 and |
| 569 | # is used by several scripting languages distributed with |
| 570 | # that OS release. |
| 571 | |
| 572 | if 'ARCHFLAGS' in os.environ: |
| 573 | arch = os.environ['ARCHFLAGS'] |
| 574 | for key in ('LDFLAGS', 'BASECFLAGS', |
| 575 | # a number of derived variables. These need to be |
| 576 | # patched up as well. |
| 577 | 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): |
| 578 | |
| 579 | flags = _config_vars[key] |
| 580 | flags = re.sub('-arch\s+\w+\s', ' ', flags) |
| 581 | flags = flags + ' ' + arch |
| 582 | _config_vars[key] = flags |
| 583 | |
| 584 | if args: |
| 585 | vals = [] |
| 586 | for name in args: |
| 587 | vals.append(_config_vars.get(name)) |
| 588 | return vals |
| 589 | else: |
| 590 | return _config_vars |
| 591 | |
| 592 | def get_config_var(name): |
| 593 | """Return the value of a single variable using the dictionary |
| 594 | returned by 'get_config_vars()'. Equivalent to |
| 595 | get_config_vars().get(name) |
| 596 | """ |
| 597 | return get_config_vars().get(name) |