We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc7dd8 commit f306012Copy full SHA for f306012
tools/FindPythonLibsNew.cmake
@@ -127,10 +127,11 @@ if USE_SYSCONFIG:
127
scheme = 'posix_prefix'
128
print(s.get_path('platinclude', scheme))
129
print(s.get_path('platlib'))
130
+ print(s.get_config_var('EXT_SUFFIX') or s.get_config_var('SO'))
131
else:
132
print(ds.get_python_inc(plat_specific=True));
133
print(ds.get_python_lib(plat_specific=True));
-print(s.get_config_var('EXT_SUFFIX') or s.get_config_var('SO'));
134
+ print(ds.get_config_var('EXT_SUFFIX') or ds.get_config_var('SO'));
135
print(hasattr(sys, 'gettotalrefcount')+0);
136
print(struct.calcsize('@P'));
137
print(s.get_config_var('LDVERSION') or s.get_config_var('VERSION'));
0 commit comments