blob: e0215a2695874e4a2f45a709f2937533102adc84 [file] [log] [blame]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001#!@EXENAME@
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002
3import sys
4import os
5import getopt
6from distutils import sysconfig
7
8valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
9 'ldflags', 'help']
10
11def exit_with_usage(code=1):
12 print >>sys.stderr, "Usage: %s [%s]" % (sys.argv[0],
13 '|'.join('--'+opt for opt in valid_opts))
14 sys.exit(code)
15
16try:
17 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
18except getopt.error:
19 exit_with_usage()
20
21if not opts:
22 exit_with_usage()
23
24opt = opts[0][0]
25
26pyver = sysconfig.get_config_var('VERSION')
27getvar = sysconfig.get_config_var
28
29if opt == '--help':
30 exit_with_usage(0)
31
32elif opt == '--prefix':
33 print sysconfig.PREFIX
34
35elif opt == '--exec-prefix':
36 print sysconfig.EXEC_PREFIX
37
38elif opt in ('--includes', '--cflags'):
Thomas Wouters0e3f5912006-08-11 14:57:12 +000039 flags = ['-I' + sysconfig.get_python_inc(),
40 '-I' + sysconfig.get_python_inc(plat_specific=True)]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041 if opt == '--cflags':
42 flags.extend(getvar('CFLAGS').split())
43 print ' '.join(flags)
44
45elif opt in ('--libs', '--ldflags'):
Thomas Wouters0e3f5912006-08-11 14:57:12 +000046 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000047 libs.append('-lpython'+pyver)
48 if opt == '--ldflags':
49 libs.insert(0, '-L' + getvar('LIBPL'))
50 print ' '.join(libs)
51