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 d1d46cb commit d8177b8Copy full SHA for d8177b8
cpython-windows/build.py
@@ -1330,13 +1330,14 @@ def build_cpython(pgo=False):
1330
log('built-in extension should not have a build entry: %s' % ext)
1331
sys.exit(1)
1332
1333
- build_info['extensions'][ext] = {
+ build_info['extensions'][ext] = [{
1334
'in_core': True,
1335
'objs': [],
1336
'init_fn': init_fn,
1337
'links': [],
1338
'static_lib': None,
1339
- }
+ 'variant': 'default',
1340
+ }]
1341
1342
# Copy OpenSSL libraries as a one-off.
1343
for lib in ('crypto', 'ssl'):
0 commit comments