Skip to content

Commit 1770224

Browse files
committed
DEV: use python-config when building for 2.7.
Anaconda Python on Linux does not provide `python2.7-config`. Also require target Python and python-config to be at the same path.
1 parent 767d3e1 commit 1770224

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

SConstruct

+9-1
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,16 @@ env.MergeFlags([os.environ.get(n, '') for n in flagnames])
9393
good_python_flags = lambda n : (
9494
not isinstance(n, basestring) or
9595
not re.match(r'(-g|-Wstrict-prototypes|-O\d)$', n))
96+
# Determine python-config script name.
9697
pyversion = pyoutput('import sys; print("%i.%i" % sys.version_info[:2])')
97-
pythonconfig = 'python' + pyversion + '-config'
98+
pythonconfig = 'python%s-config' % (pyversion if pyversion[0] == '3' else '')
99+
# Verify python-config comes from the same path as the target python.
100+
xpython = env.WhereIs(env['python'])
101+
xpythonconfig = env.WhereIs(pythonconfig)
102+
if os.path.dirname(xpython) != os.path.dirname(xpythonconfig):
103+
print("Inconsistent paths of %r and %r" % (xpython, xpythonconfig))
104+
Exit(1)
105+
# Process the python-config flags here.
98106
env.ParseConfig(pythonconfig + " --cflags")
99107
env.Replace(CCFLAGS=filter(good_python_flags, env['CCFLAGS']))
100108
env.Replace(CPPDEFINES='')

0 commit comments

Comments
 (0)