mirror of
https://github.com/python/cpython.git
synced 2025-12-09 02:35:14 +00:00
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79082 | collin.winter | 2010-03-18 17:00:30 -0700 (Thu, 18 Mar 2010) | 1 line Add a separate python-config make target, useful for testing changes to Misc/python-config.in. ........ r79084 | collin.winter | 2010-03-18 17:08:44 -0700 (Thu, 18 Mar 2010) | 1 line Make python-config support multiple option flags on the same command line, rather than requiring one invocation per flag. ........
56 lines
1.6 KiB
Text
56 lines
1.6 KiB
Text
#!@EXENAME@
|
|
|
|
import sys
|
|
import os
|
|
import getopt
|
|
from distutils import sysconfig
|
|
|
|
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
|
|
'ldflags', 'help']
|
|
|
|
def exit_with_usage(code=1):
|
|
print("Usage: {0} [{1}]".format(
|
|
sys.argv[0], '|'.join('--'+opt for opt in valid_opts)), file=sys.stderr)
|
|
sys.exit(code)
|
|
|
|
try:
|
|
opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
|
|
except getopt.error:
|
|
exit_with_usage()
|
|
|
|
if not opts:
|
|
exit_with_usage()
|
|
|
|
pyver = sysconfig.get_config_var('VERSION')
|
|
getvar = sysconfig.get_config_var
|
|
|
|
opt_flags = [flag for (flag, val) in opts]
|
|
|
|
if '--help' in opt_flags:
|
|
exit_with_usage(code=0)
|
|
|
|
for opt in opt_flags:
|
|
if opt == '--prefix':
|
|
print(sysconfig.PREFIX)
|
|
|
|
elif opt == '--exec-prefix':
|
|
print(sysconfig.EXEC_PREFIX)
|
|
|
|
elif opt in ('--includes', '--cflags'):
|
|
flags = ['-I' + sysconfig.get_python_inc(),
|
|
'-I' + sysconfig.get_python_inc(plat_specific=True)]
|
|
if opt == '--cflags':
|
|
flags.extend(getvar('CFLAGS').split())
|
|
print(' '.join(flags))
|
|
|
|
elif opt in ('--libs', '--ldflags'):
|
|
libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
|
|
libs.append('-lpython'+pyver)
|
|
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
|
|
# shared library in prefix/lib/.
|
|
if opt == '--ldflags':
|
|
if not getvar('Py_ENABLE_SHARED'):
|
|
libs.insert(0, '-L' + getvar('LIBPL'))
|
|
libs.extend(getvar('LINKFORSHARED').split())
|
|
print(' '.join(libs))
|
|
|