File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,16 @@ env.MergeFlags([os.environ.get(n, '') for n in flagnames])
93
93
good_python_flags = lambda n : (
94
94
not isinstance (n , basestring ) or
95
95
not re .match (r'(-g|-Wstrict-prototypes|-O\d)$' , n ))
96
+ # Determine python-config script name.
96
97
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.
98
106
env .ParseConfig (pythonconfig + " --cflags" )
99
107
env .Replace (CCFLAGS = filter (good_python_flags , env ['CCFLAGS' ]))
100
108
env .Replace (CPPDEFINES = '' )
You can’t perform that action at this time.
0 commit comments