Make python-config support multiple option flags on the same command line, rather than requiring one invocation per flag.

This commit is contained in:
Collin Winter 2010-03-19 00:08:44 +00:00
parent 00dd3f51bc
commit a70f349620
2 changed files with 29 additions and 24 deletions

View file

@ -82,6 +82,8 @@ Tools/Demos
measures the number of UDP packets processed per second depending on the measures the number of UDP packets processed per second depending on the
number of background CPU-bound Python threads. number of background CPU-bound Python threads.
- python-config now supports multiple options on the same command line.
Build Build
----- -----

View file

@ -21,33 +21,36 @@ except getopt.error:
if not opts: if not opts:
exit_with_usage() exit_with_usage()
opt = opts[0][0]
pyver = sysconfig.get_config_var('VERSION') pyver = sysconfig.get_config_var('VERSION')
getvar = sysconfig.get_config_var getvar = sysconfig.get_config_var
if opt == '--help': opt_flags = [flag for (flag, val) in opts]
exit_with_usage(0)
elif opt == '--prefix': if '--help' in opt_flags:
print sysconfig.PREFIX exit_with_usage(code=0)
elif opt == '--exec-prefix': for opt in opt_flags:
print sysconfig.EXEC_PREFIX if opt == '--prefix':
print sysconfig.PREFIX
elif opt in ('--includes', '--cflags'): elif opt == '--exec-prefix':
flags = ['-I' + sysconfig.get_python_inc(), print sysconfig.EXEC_PREFIX
'-I' + sysconfig.get_python_inc(plat_specific=True)]
if opt == '--cflags':
flags.extend(getvar('CFLAGS').split())
print ' '.join(flags)
elif opt in ('--libs', '--ldflags'): elif opt in ('--includes', '--cflags'):
libs = getvar('LIBS').split() + getvar('SYSLIBS').split() flags = ['-I' + sysconfig.get_python_inc(),
libs.append('-lpython'+pyver) '-I' + sysconfig.get_python_inc(plat_specific=True)]
# add the prefix/lib/pythonX.Y/config dir, but only if there is no if opt == '--cflags':
# shared library in prefix/lib/. flags.extend(getvar('CFLAGS').split())
if opt == '--ldflags' and not getvar('Py_ENABLE_SHARED'): print ' '.join(flags)
libs.insert(0, '-L' + getvar('LIBPL'))
print ' '.join(libs) 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)