We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a67faed commit 8b6eb32Copy full SHA for 8b6eb32
Tools/build/generate-build-details.py
@@ -55,6 +55,9 @@ def generate_data(schema_version):
55
56
data['implementation'] = vars(sys.implementation)
57
data['implementation']['version'] = version_info_to_dict(sys.implementation.version)
58
+ # Fix cross-compilation
59
+ if '_multiarch' in data['implementation']:
60
+ data['implementation']['_multiarch'] = sysconfig.get_config_var('MULTIARCH')
61
62
data['abi']['flags'] = list(sys.abiflags)
63
0 commit comments