pyo3-build-config 0.29.2

Build configuration for the PyO3 ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
#[cfg(test)]
use std::cell::RefCell;
use std::{
    collections::{HashMap, HashSet},
    env,
    ffi::{OsStr, OsString},
    fmt::Display,
    fs::{self, DirEntry},
    io::{BufRead, BufReader, Read, Write},
    path::{Path, PathBuf},
    process::{Command, Stdio},
    str::{self, FromStr},
};

pub use target_lexicon::Triple;

use target_lexicon::{Architecture, Environment, OperatingSystem, Vendor};

use crate::{
    bail, ensure,
    errors::{Context, Error, Result},
    warn,
};

/// Minimum Python version PyO3 supports.
pub(crate) const MINIMUM_SUPPORTED_VERSION: PythonVersion = PythonVersion { major: 3, minor: 8 };

pub(crate) const MINIMUM_SUPPORTED_VERSION_ABI3T: PythonVersion = PythonVersion {
    major: 3,
    minor: 15,
};

/// GraalPy may implement the same CPython version over multiple releases.
const MINIMUM_SUPPORTED_VERSION_GRAALPY: PythonVersion = PythonVersion {
    major: 25,
    minor: 0,
};

/// Maximum Python version that can be used as minimum required Python version with abi3.
pub(crate) const STABLE_ABI_MAX_MINOR: u8 = 15;

#[cfg(test)]
thread_local! {
    static READ_ENV_VARS: RefCell<Vec<String>> = const { RefCell::new(Vec::new()) };
}

/// Gets an environment variable owned by cargo.
///
/// Environment variables set by cargo are expected to be valid UTF8.
pub fn cargo_env_var(var: &str) -> Option<String> {
    env::var_os(var).map(|os_string| os_string.to_str().unwrap().into())
}

/// Gets an external environment variable, and registers the build script to rerun if
/// the variable changes.
pub fn env_var(var: &str) -> Option<OsString> {
    println!("cargo:rerun-if-env-changed={var}");
    #[cfg(test)]
    {
        READ_ENV_VARS.with(|env_vars| {
            env_vars.borrow_mut().push(var.to_owned());
        });
    }
    env::var_os(var)
}

/// Gets the compilation target triple from environment variables set by Cargo.
///
/// Must be called from a crate build script.
pub fn target_triple_from_env() -> Triple {
    env::var("TARGET")
        .expect("target_triple_from_env() must be called from a build script")
        .parse()
        .expect("Unrecognized TARGET environment variable value")
}

fn sanitize_stable_abi_version(
    stable_abi_version: Option<PythonVersion>,
    version: PythonVersion,
) -> Result<PythonVersion> {
    if let Some(min_version) = stable_abi_version {
        ensure!(
            min_version <= version,
            "cannot set a minimum Python version {} higher than the interpreter version {} \
             (the minimum Python version is implied by the abi3-py3{} feature)",
            min_version,
            version,
            min_version.minor
        );
        Ok(min_version)
    } else {
        Ok(version)
    }
}

/// Selects which stable ABI (kind and minimum version) from the `abi3-py3*`
/// and `abi3t-py3*` features (if any) applies to the given interpreter.
///
/// Interpreters which cannot target the requested stable ABI (e.g.
/// free-threaded CPython before 3.15) get a version-specific build instead.
/// A bare `abi3`/`abi3t` feature request resolves to the interpreter version.
fn applicable_stable_abi(
    implementation: PythonImplementation,
    version: PythonVersion,
    gil_disabled: bool,
    abi3_version: Option<StableAbiVersion>,
    abi3t_version: Option<StableAbiVersion>,
) -> Option<(StableAbi, PythonVersion)> {
    let exact = |requested: StableAbiVersion| match requested {
        StableAbiVersion::Current => version,
        StableAbiVersion::Target(target) => target,
    };
    let abi3 = abi3_version.map(|v| (StableAbi::Abi3, exact(v)));
    let abi3t = abi3t_version.map(|v| (StableAbi::Abi3t, exact(v)));
    let selected = if version >= MINIMUM_SUPPORTED_VERSION_ABI3T {
        match gil_disabled {
            false => abi3t.or(abi3),
            true => abi3t,
        }
    } else {
        match gil_disabled {
            false => abi3,
            true => None,
        }
    };
    match implementation {
        PythonImplementation::PyPy | PythonImplementation::GraalPy => {
            selected.map(|(kind, _)| (kind, version))
        }
        _ => selected,
    }
}

/// Like [`applicable_stable_abi`], but reads the `abi3-py3*`/`abi3t-py3*`
/// cargo features and keeps the interpreter version rather than the feature
/// minimum, so that `lib_name` matches the real libpython;
/// `apply_build_env` lowers the ABI to the feature minimum afterwards.
fn applicable_stable_abi_at_interpreter_version(
    implementation: PythonImplementation,
    version: PythonVersion,
    gil_disabled: bool,
) -> Option<(StableAbi, PythonVersion)> {
    applicable_stable_abi(
        implementation,
        version,
        gil_disabled,
        get_abi3_version(),
        get_abi3t_version(),
    )
    .map(|(kind, _)| (kind, version))
}

/// Configuration needed by PyO3 to build for the correct Python implementation.
///
/// The version and implementation fields correspond to the interpreter
/// used to host a build. These need not be the same as the implementation and
/// version fields set for the build target in the `target_abi` field.
///
/// Usually this is queried directly from the Python interpreter, or overridden using the
/// `PYO3_CONFIG_FILE` environment variable.
///
/// When the `PYO3_NO_PYTHON` variable is set, or during cross compile situations, then alternative
/// strategies are used to populate this type.
#[cfg_attr(test, derive(Debug, PartialEq, Eq))]
pub struct InterpreterConfig {
    /// The host Python implementation flavor.
    ///
    /// Serialized to `implementation`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.implementation()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub implementation: PythonImplementation,

    /// The host Python `X.Y` version. e.g. `3.9`.
    ///
    /// Serialized to `version`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.version()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub version: PythonVersion,

    /// Whether link library is shared.
    ///
    /// Serialized to `shared`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.shared()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub shared: bool,

    target_abi: PythonAbi,

    /// Serialized to `abi3`.
    #[deprecated(since = "0.29.0", note = "please match against target_abi instead")]
    pub abi3: bool,

    /// The name of the link library defining Python.
    ///
    /// This effectively controls the `cargo:rustc-link-lib=<name>` value to
    /// control how libpython is linked. Values should not contain the `lib`
    /// prefix.
    ///
    /// Serialized to `lib_name`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.lib_name()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub lib_name: Option<String>,

    /// The directory containing the Python library to link against.
    ///
    /// The effectively controls the `cargo:rustc-link-search=native=<path>` value
    /// to add an additional library search path for the linker.
    ///
    /// Serialized to `lib_dir`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.lib_dir()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub lib_dir: Option<String>,

    /// Path of host `python` executable.
    ///
    /// This is a valid executable capable of running on the host/building machine.
    /// For configurations derived by invoking a Python interpreter, it was the
    /// executable invoked.
    ///
    /// Serialized to `executable`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.executable()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub executable: Option<String>,

    /// Width in bits of pointers on the target machine.
    ///
    /// Serialized to `pointer_width`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.pointer_width()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub pointer_width: Option<u32>,

    /// Additional relevant Python build flags / configuration settings.
    ///
    /// Serialized to `build_flags`.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.build_flags()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub build_flags: BuildFlags,

    /// Whether to suppress emitting of `cargo:rustc-link-*` lines from the build script.
    ///
    /// Typically, `pyo3`'s build script will emit `cargo:rustc-link-lib=` and
    /// `cargo:rustc-link-search=` lines derived from other fields in this struct. In
    /// advanced building configurations, the default logic to derive these lines may not
    /// be sufficient. This field can be set to `Some(true)` to suppress the emission
    /// of these lines.
    ///
    /// If suppression is enabled, `extra_build_script_lines` should contain equivalent
    /// functionality or else a build failure is likely.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.suppress_build_script_link_lines()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub suppress_build_script_link_lines: bool,

    /// Additional lines to `println!()` from Cargo build scripts.
    ///
    /// This field can be populated to enable the `pyo3` crate to emit additional lines from its
    /// its Cargo build script.
    ///
    /// This crate doesn't populate this field itself. Rather, it is intended to be used with
    /// externally provided config files to give them significant control over how the crate
    /// is build/configured.
    ///
    /// Serialized to multiple `extra_build_script_line` values.
    #[deprecated(
        since = "0.29.0",
        note = "please use `.extra_build_script_lines()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub extra_build_script_lines: Vec<String>,
    /// macOS Python3.framework requires special rpath handling
    #[deprecated(
        since = "0.29.0",
        note = "please use `.python_framework_prefix()` getter or `InterpreterConfigBuilder` instead"
    )]
    pub python_framework_prefix: Option<String>,
}

// Should no longer be deprecated once the internal fields are private
#[expect(deprecated, reason = "this impl block touches the internal fields")]
impl InterpreterConfig {
    /// The Python implementation flavor.
    ///
    /// Serialized to `implementation`.
    pub fn implementation(&self) -> PythonImplementation {
        self.implementation
    }

    /// Python `X.Y` version. e.g. `3.9`.
    ///
    /// Serialized to `version`.
    pub fn version(&self) -> PythonVersion {
        self.version
    }

    /// Whether link library is shared.
    ///
    /// Serialized to `shared`.
    pub fn shared(&self) -> bool {
        self.shared
    }

    /// The ABI to use for the compilation target.
    /// See the documentation for the PythonAbi enum for more details.
    ///
    /// Serialized to `target_abi`.
    pub fn target_abi(&self) -> PythonAbi {
        self.target_abi
    }

    /// Whether linking against the stable/limited Python 3 API.
    ///
    #[deprecated(since = "0.29.0", note = "please use `target_abi()` instead")]
    pub fn abi3(&self) -> bool {
        matches!(self.target_abi.kind, PythonAbiKind::Stable(StableAbi::Abi3))
    }

    /// The name of the link library defining Python.
    ///
    /// This effectively controls the `cargo:rustc-link-lib=<name>` value to
    /// control how libpython is linked. Values should not contain the `lib`
    /// prefix.
    ///
    /// Serialized to `lib_name`.
    pub fn lib_name(&self) -> Option<&str> {
        self.lib_name.as_deref()
    }

    /// The directory containing the Python library to link against.
    ///
    /// The effectively controls the `cargo:rustc-link-search=native=<path>` value
    /// to add an additional library search path for the linker.
    ///
    /// Serialized to `lib_dir`.
    pub fn lib_dir(&self) -> Option<&str> {
        self.lib_dir.as_deref()
    }

    /// Path of host `python` executable.
    ///
    /// This is a valid executable capable of running on the host/building machine.
    /// For configurations derived by invoking a Python interpreter, it was the
    /// executable invoked.
    ///
    /// Serialized to `executable`.
    pub fn executable(&self) -> Option<&str> {
        self.executable.as_deref()
    }

    /// Width in bits of pointers on the target machine.
    ///
    /// Serialized to `pointer_width`.
    pub fn pointer_width(&self) -> Option<u32> {
        self.pointer_width
    }

    /// Additional relevant Python build flags / configuration settings.
    ///
    /// Serialized to `build_flags`.
    pub fn build_flags(&self) -> &BuildFlags {
        &self.build_flags
    }

    /// Whether to suppress emitting of `cargo:rustc-link-*` lines from the build script.
    pub fn suppress_build_script_link_lines(&self) -> bool {
        self.suppress_build_script_link_lines
    }

    /// Additional lines to `println!()` from Cargo build scripts.
    ///
    /// Serialized to multiple `extra_build_script_line` values.
    pub fn extra_build_script_lines(&self) -> &[String] {
        &self.extra_build_script_lines
    }

    /// macOS Python3.framework prefix used for special rpath handling.
    pub fn python_framework_prefix(&self) -> Option<&str> {
        self.python_framework_prefix.as_deref()
    }

    #[doc(hidden)]
    pub fn build_script_outputs(&self) -> Vec<String> {
        // This should have been checked during pyo3-build-config build time.
        assert!(self.target_abi.version() >= MINIMUM_SUPPORTED_VERSION);

        let mut out = vec![];

        for i in MINIMUM_SUPPORTED_VERSION.minor..=self.target_abi.version().minor {
            out.push(format!("cargo:rustc-cfg=Py_3_{i}"));
        }

        match self.target_abi.implementation() {
            PythonImplementation::CPython => {}
            PythonImplementation::PyPy => out.push("cargo:rustc-cfg=PyPy".to_owned()),
            PythonImplementation::GraalPy => out.push("cargo:rustc-cfg=GraalPy".to_owned()),
            PythonImplementation::RustPython => out.push("cargo:rustc-cfg=RustPython".to_owned()),
        }

        match self.target_abi.kind() {
            PythonAbiKind::Stable(kind) => {
                out.push("cargo:rustc-cfg=Py_LIMITED_API".to_owned());
                if kind == StableAbi::Abi3t {
                    out.push("cargo:rustc-cfg=Py_GIL_DISABLED".to_owned());
                }
            }
            PythonAbiKind::VersionSpecific(kind) => match kind {
                GilUsed::FreeThreaded => {
                    out.push("cargo:rustc-cfg=Py_GIL_DISABLED".to_owned());
                }
                GilUsed::GilEnabled => {}
            },
        }
        for flag in &self.build_flags.0 {
            match flag {
                // already handled by target ABI logic above
                BuildFlag::Py_GIL_DISABLED => continue,
                flag => out.push(format!("cargo:rustc-cfg=py_sys_config=\"{flag}\"")),
            }
        }
        out
    }

    fn from_interpreter(
        interpreter: impl AsRef<Path>,
        abi3_version: Option<StableAbiVersion>,
        abi3t_version: Option<StableAbiVersion>,
    ) -> Result<Self> {
        const SCRIPT: &str = r#"
# Allow the script to run on Python 2, so that nicer error can be printed later.
from __future__ import print_function

import os.path
import platform
import struct
import sys
from sysconfig import get_config_var, get_platform

PYPY = platform.python_implementation() == "PyPy"
GRAALPY = platform.python_implementation() == "GraalVM"

if GRAALPY:
    graalpy_ver = map(int, __graalpython__.get_graalvm_version().split('.'));
    print("graalpy_major", next(graalpy_ver))
    print("graalpy_minor", next(graalpy_ver))

# sys.base_prefix is missing on Python versions older than 3.3; this allows the script to continue
# so that the version mismatch can be reported in a nicer way later.
base_prefix = getattr(sys, "base_prefix", None)

if base_prefix:
    # Anaconda based python distributions have a static python executable, but include
    # the shared library. Use the shared library for embedding to avoid rust trying to
    # LTO the static library (and failing with newer gcc's, because it is old).
    ANACONDA = os.path.exists(os.path.join(base_prefix, "conda-meta"))
else:
    ANACONDA = False

def print_if_set(varname, value):
    if value is not None:
        print(varname, value)

# Windows always uses shared linking
WINDOWS = platform.system() == "Windows"

# macOS framework packages use shared linking
FRAMEWORK = bool(get_config_var("PYTHONFRAMEWORK"))
FRAMEWORK_PREFIX = get_config_var("PYTHONFRAMEWORKPREFIX")

# unix-style shared library enabled
SHARED = bool(get_config_var("Py_ENABLE_SHARED"))

print("implementation", platform.python_implementation())
print("version_major", sys.version_info[0])
print("version_minor", sys.version_info[1])
print("shared", PYPY or GRAALPY or ANACONDA or WINDOWS or FRAMEWORK or SHARED)
print("python_framework_prefix", FRAMEWORK_PREFIX)
print_if_set("ld_version", get_config_var("LDVERSION"))
print_if_set("libdir", get_config_var("LIBDIR"))
print_if_set("base_prefix", base_prefix)
print("executable", sys.executable)
print("calcsize_pointer", struct.calcsize("P"))
print("mingw", get_platform().startswith("mingw"))
print("cygwin", get_platform().startswith("cygwin"))
print("ext_suffix", get_config_var("EXT_SUFFIX"))
print("gil_disabled", get_config_var("Py_GIL_DISABLED"))
"#;
        let output = run_python_script(interpreter.as_ref(), SCRIPT)?;
        let map: HashMap<String, String> = parse_script_output(&output);

        ensure!(
            !map.is_empty(),
            "broken Python interpreter: {}",
            interpreter.as_ref().display()
        );

        if let Some(value) = map.get("graalpy_major") {
            let graalpy_version = PythonVersion {
                major: value
                    .parse()
                    .context("failed to parse GraalPy major version")?,
                minor: map["graalpy_minor"]
                    .parse()
                    .context("failed to parse GraalPy minor version")?,
            };
            ensure!(
                graalpy_version >= MINIMUM_SUPPORTED_VERSION_GRAALPY,
                "At least GraalPy version {} needed, got {}",
                MINIMUM_SUPPORTED_VERSION_GRAALPY,
                graalpy_version
            );
        };

        let shared = map["shared"].as_str() == "True";
        let python_framework_prefix = map.get("python_framework_prefix").cloned();

        let version = PythonVersion {
            major: map["version_major"]
                .parse()
                .context("failed to parse major version")?,
            minor: map["version_minor"]
                .parse()
                .context("failed to parse minor version")?,
        };

        let implementation = map["implementation"].parse()?;

        let gil_disabled = match map["gil_disabled"].as_str() {
            "1" => true,
            "0" => false,
            "None" => false,
            _ => panic!("Unknown Py_GIL_DISABLED value"),
        };

        let stable_abi = applicable_stable_abi(
            implementation,
            version,
            gil_disabled,
            abi3_version,
            abi3t_version,
        );

        let target_abi =
            PythonAbi::from_stable_abi(implementation, version, stable_abi, gil_disabled)?;

        let cygwin = map["cygwin"].as_str() == "True";

        let lib_name = if cfg!(windows) {
            default_lib_name_windows(
                target_abi,
                map["mingw"].as_str() == "True",
                // This is the best heuristic currently available to detect debug build
                // on Windows from sysconfig - e.g. ext_suffix may be
                // `_d.cp312-win_amd64.pyd` for 3.12 debug build
                map["ext_suffix"].starts_with("_d."),
            )?
        } else {
            default_lib_name_unix(
                target_abi,
                cygwin,
                map.get("ld_version").map(String::as_str),
            )?
        };

        let lib_dir = if cfg!(windows) {
            map.get("base_prefix")
                .map(|base_prefix| format!("{base_prefix}\\libs"))
        } else {
            map.get("libdir").cloned()
        };

        // The reason we don't use platform.architecture() here is that it's not
        // reliable on macOS. See https://stackoverflow.com/a/1405971/823869.
        // Similarly, sys.maxsize is not reliable on Windows. See
        // https://stackoverflow.com/questions/1405913/how-do-i-determine-if-my-python-shell-is-executing-in-32bit-or-64bit-mode-on-os/1405971#comment6209952_1405971
        // and https://stackoverflow.com/a/3411134/823869.
        let calcsize_pointer: u32 = map["calcsize_pointer"]
            .parse()
            .context("failed to parse calcsize_pointer")?;

        InterpreterConfigBuilder::new(implementation, version)
            .target_abi(target_abi)
            .shared(shared)
            .lib_name(lib_name)
            .lib_dir(lib_dir)
            .executable(map["executable"].clone())
            .pointer_width(calcsize_pointer * 8)
            .build_flags(BuildFlags::from_interpreter(interpreter)?)
            .python_framework_prefix(python_framework_prefix)
            .finalize()
    }

    /// Generate from parsed sysconfigdata file
    ///
    /// Use [`parse_sysconfigdata`] to generate a hash map of configuration values which may be
    /// used to build an [`InterpreterConfig`].
    pub fn from_sysconfigdata(sysconfigdata: &Sysconfigdata) -> Result<Self> {
        macro_rules! get_key {
            ($sysconfigdata:expr, $key:literal) => {
                $sysconfigdata
                    .get_value($key)
                    .ok_or(concat!($key, " not found in sysconfigdata file"))
            };
        }

        macro_rules! parse_key {
            ($sysconfigdata:expr, $key:literal) => {
                get_key!($sysconfigdata, $key)?
                    .parse()
                    .context(concat!("could not parse value of ", $key))
            };
        }

        let soabi = get_key!(sysconfigdata, "SOABI")?;
        let implementation = PythonImplementation::from_soabi(soabi)?;
        let version = parse_key!(sysconfigdata, "VERSION")?;
        let shared = match sysconfigdata.get_value("Py_ENABLE_SHARED") {
            Some("1") | Some("true") | Some("True") => true,
            Some("0") | Some("false") | Some("False") => false,
            _ => bail!("expected a bool (1/true/True or 0/false/False) for Py_ENABLE_SHARED"),
        };
        // macOS framework packages use shared linking (PYTHONFRAMEWORK is the framework name, hence the empty check)
        let framework = match sysconfigdata.get_value("PYTHONFRAMEWORK") {
            Some(s) => !s.is_empty(),
            _ => false,
        };
        let python_framework_prefix = sysconfigdata
            .get_value("PYTHONFRAMEWORKPREFIX")
            .map(str::to_string);
        let lib_dir = get_key!(sysconfigdata, "LIBDIR").ok().map(str::to_string);
        let gil_disabled = match sysconfigdata.get_value("Py_GIL_DISABLED") {
            Some(value) => value == "1",
            None => false,
        };
        let cygwin = soabi.ends_with("cygwin");
        let stable_abi =
            applicable_stable_abi_at_interpreter_version(implementation, version, gil_disabled);
        let target_abi =
            PythonAbi::from_stable_abi(implementation, version, stable_abi, gil_disabled)?;
        let lib_name =
            default_lib_name_unix(target_abi, cygwin, sysconfigdata.get_value("LDVERSION"))?;
        let pointer_width = parse_key!(sysconfigdata, "SIZEOF_VOID_P")
            .map(|bytes_width: u32| bytes_width * 8)
            .ok();
        let build_flags = BuildFlags::from_sysconfigdata(sysconfigdata);

        InterpreterConfigBuilder::new(implementation, version)
            .target_abi(target_abi)
            .shared(shared || framework)
            .pointer_width(pointer_width)
            .lib_name(lib_name)
            .lib_dir(lib_dir)
            .python_framework_prefix(python_framework_prefix)
            .build_flags(build_flags)
            .finalize()
    }

    /// Import an externally-provided config file.
    ///
    /// The `abi3` features, if set, may apply an `abi3` constraint to the Python version.
    pub(super) fn from_pyo3_config_file_env(target: &Triple) -> Option<Result<Self>> {
        env_var("PYO3_CONFIG_FILE").map(|path| {
            let path = Path::new(&path);
            println!("cargo:rerun-if-changed={}", path.display());
            // Absolute path is necessary because this build script is run with a cwd different to the
            // original `cargo build` instruction.
            ensure!(
                path.is_absolute(),
                "PYO3_CONFIG_FILE must be an absolute path"
            );

            let mut config = InterpreterConfig::from_path(path)
                .context("failed to parse contents of PYO3_CONFIG_FILE")?
                .apply_build_env()?;

            // For config files which don't apply a lib name, apply a default which we can use
            // for linking.
            if config.lib_name.is_none() {
                config.lib_name = Some(default_lib_name_for_target(config.target_abi, target));
            }

            Ok(config)
        })
    }

    fn from_path(path: impl AsRef<Path>) -> Result<Self> {
        let path = path.as_ref();
        let config_file = std::fs::File::open(path)
            .with_context(|| format!("failed to open PyO3 config file at {}", path.display()))?;
        let reader = std::io::BufReader::new(config_file);
        InterpreterConfig::from_reader(reader)
    }

    /// Environment variable populated via pyo3-ffi's build script
    pub(crate) const PYO3_FFI_CONFIG_ENV_VAR: &str = "DEP_PYTHON_PYO3_CONFIG";
    /// Environment variable populated via pyo3's build script by forwarding the value from pyo3-ffi
    pub(crate) const PYO3_CONFIG_ENV_VAR: &str = "DEP_PYO3_PYTHON_PYO3_CONFIG";

    pub(crate) fn from_cargo_dep_env() -> Option<Result<Self>> {
        cargo_env_var(Self::PYO3_FFI_CONFIG_ENV_VAR)
            .or_else(|| cargo_env_var(Self::PYO3_CONFIG_ENV_VAR))
            .map(|buf| InterpreterConfig::from_reader(&*unescape(&buf)))
    }

    fn from_reader(reader: impl Read) -> Result<Self> {
        let reader = BufReader::new(reader);
        let lines = reader.lines();

        macro_rules! parse_value {
            ($variable:ident, $value:ident) => {
                $variable = Some($value.trim().parse().context(format!(
                    concat!(
                        "failed to parse ",
                        stringify!($variable),
                        " from config value '{}'"
                    ),
                    $value
                ))?)
            };
        }

        let mut implementation = None;
        let mut version = None;
        let mut shared = None;
        let mut target_abi = None;
        // deprecated in the struct but we still allow it to support old config files
        let mut abi3 = None;
        let mut lib_name = None;
        let mut lib_dir = None;
        let mut executable = None;
        let mut pointer_width = None;
        let mut build_flags: Option<BuildFlags> = None;
        let mut suppress_build_script_link_lines: Option<bool> = None;
        let mut extra_build_script_lines = vec![];
        let mut python_framework_prefix = None;

        for (i, line) in lines.enumerate() {
            let line = line.context("failed to read line from config")?;
            let mut split = line.splitn(2, '=');
            let (key, value) = (
                split
                    .next()
                    .expect("first splitn value should always be present"),
                split
                    .next()
                    .ok_or_else(|| format!("expected key=value pair on line {}", i + 1))?,
            );
            match key {
                "implementation" => parse_value!(implementation, value),
                "version" => parse_value!(version, value),
                "shared" => parse_value!(shared, value),
                "target_abi" => parse_value!(target_abi, value),
                "abi3" => parse_value!(abi3, value),
                "lib_name" => parse_value!(lib_name, value),
                "lib_dir" => parse_value!(lib_dir, value),
                "executable" => parse_value!(executable, value),
                "pointer_width" => parse_value!(pointer_width, value),
                "build_flags" => parse_value!(build_flags, value),
                "suppress_build_script_link_lines" => {
                    parse_value!(suppress_build_script_link_lines, value)
                }
                "extra_build_script_line" => {
                    extra_build_script_lines.push(value.to_string());
                }
                "python_framework_prefix" => parse_value!(python_framework_prefix, value),
                unknown => warn!("unknown config key `{}`", unknown),
            }
        }

        let version = version.ok_or("missing value for version")?;
        let implementation = implementation.unwrap_or(PythonImplementation::CPython);
        let flags_contains_free_threaded = if let Some(ref flags) = build_flags {
            flags.0.contains(&BuildFlag::Py_GIL_DISABLED)
        } else {
            false
        };
        let target_abi = if let Some(target_abi) = target_abi {
            ensure!(
                abi3.is_none(),
                "Invalid config that sets both target_abi and abi3."
            );
            target_abi
        } else if flags_contains_free_threaded {
            // This fires even if is_abi3() is True for backward compatibility reasons
            PythonAbiBuilder::new(implementation, version)
                .free_threaded()
                .finalize()?
        } else if abi3 == Some(true) {
            warn!("abi3 configuration file option is deprecated since pyo3 0.29, set target_abi instead");
            PythonAbiBuilder::new(implementation, version)
                .stable_abi(StableAbi::Abi3)
                .finalize()?
        } else {
            PythonAbiBuilder::new(implementation, version).finalize()?
        };

        let builder = InterpreterConfigBuilder::new(implementation, version)
            .target_abi(target_abi)
            .shared(shared.unwrap_or(true))
            .lib_name(lib_name)
            .lib_dir(lib_dir)
            .executable(executable)
            .pointer_width(pointer_width)
            .build_flags(build_flags.unwrap_or_default())
            .suppress_build_script_link_lines(suppress_build_script_link_lines.unwrap_or(false))
            .extra_build_script_lines(extra_build_script_lines)
            .python_framework_prefix(python_framework_prefix);

        builder.finalize()
    }

    #[doc(hidden)]
    /// Serialize the `InterpreterConfig` and print it to the environment for Cargo to pass along
    /// to dependent packages during build time.
    ///
    /// NB: writing to the cargo environment requires the
    /// [`links`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#the-links-manifest-key)
    /// manifest key to be set. In this case that means this is called by the `pyo3-ffi` crate and
    /// available for dependent package build scripts in `DEP_PYTHON_PYO3_CONFIG`. See
    /// documentation for the
    /// [`DEP_<name>_<key>`](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts)
    /// environment variable.
    pub fn to_cargo_dep_env(&self) -> Result<()> {
        let mut buf = Vec::new();
        self.to_writer(&mut buf)?;
        // escape newlines in env var
        println!("cargo:PYO3_CONFIG={}", escape(&buf));
        Ok(())
    }

    #[doc(hidden)]
    pub fn to_writer(&self, mut writer: impl Write) -> Result<()> {
        macro_rules! write_line {
            ($value:ident) => {
                writeln!(writer, "{}={}", stringify!($value), self.$value).context(concat!(
                    "failed to write ",
                    stringify!($value),
                    " to config"
                ))
            };
        }

        macro_rules! write_option_line {
            ($value:ident) => {
                if let Some(value) = &self.$value {
                    writeln!(writer, "{}={}", stringify!($value), value).context(concat!(
                        "failed to write ",
                        stringify!($value),
                        " to config"
                    ))
                } else {
                    Ok(())
                }
            };
        }

        write_line!(implementation)?;
        write_line!(version)?;
        write_line!(shared)?;
        write_line!(target_abi)?;
        write_option_line!(lib_name)?;
        write_option_line!(lib_dir)?;
        write_option_line!(executable)?;
        write_option_line!(pointer_width)?;
        write_line!(build_flags)?;
        write_option_line!(python_framework_prefix)?;
        write_line!(suppress_build_script_link_lines)?;
        for line in &self.extra_build_script_lines {
            writeln!(writer, "extra_build_script_line={line}")
                .context("failed to write extra_build_script_line")?;
        }
        Ok(())
    }

    /// Run a python script using the [`InterpreterConfig::executable`].
    ///
    /// # Panics
    ///
    /// This function will panic if the [`executable`](InterpreterConfig::executable) is `None`.
    pub fn run_python_script(&self, script: &str) -> Result<String> {
        run_python_script_with_envs(
            Path::new(self.executable.as_ref().expect("no interpreter executable")),
            script,
            std::iter::empty::<(&str, &str)>(),
        )
    }

    /// Run a python script using the [`InterpreterConfig::executable`] with additional
    /// environment variables (e.g. PYTHONPATH) set.
    ///
    /// # Panics
    ///
    /// This function will panic if the [`executable`](InterpreterConfig::executable) is `None`.
    pub fn run_python_script_with_envs<I, K, V>(&self, script: &str, envs: I) -> Result<String>
    where
        I: IntoIterator<Item = (K, V)>,
        K: AsRef<OsStr>,
        V: AsRef<OsStr>,
    {
        run_python_script_with_envs(
            Path::new(self.executable.as_ref().expect("no interpreter executable")),
            script,
            envs,
        )
    }

    pub fn is_free_threaded(&self) -> bool {
        self.target_abi.kind().is_free_threaded()
    }

    fn apply_build_env(mut self) -> Result<InterpreterConfig> {
        // the host `implementation` may differ from the `target_abi`
        // implementation; the recomputed ABI must stay on the target
        let implementation = self.target_abi.implementation;
        let gil_disabled = self.target_abi.kind().is_free_threaded();
        let stable_abi = applicable_stable_abi(
            implementation,
            self.version,
            gil_disabled,
            get_abi3_version(),
            get_abi3t_version(),
        );
        self.target_abi =
            PythonAbi::from_stable_abi(implementation, self.version, stable_abi, gil_disabled)?;
        Ok(self)
    }
}

#[cfg_attr(test, derive(Debug))]
pub struct PythonAbiBuilder {
    implementation: PythonImplementation,
    version: PythonVersion,
    kind: Option<PythonAbiKind>,
}

impl PythonAbiBuilder {
    pub fn new(implementation: PythonImplementation, version: PythonVersion) -> PythonAbiBuilder {
        PythonAbiBuilder {
            implementation,
            version,
            kind: None,
        }
    }

    pub fn stable_abi(self, kind: StableAbi) -> PythonAbiBuilder {
        let mut build_version = self.version;
        if self.version.minor > STABLE_ABI_MAX_MINOR {
            warn!("Automatically falling back to {kind}-py3{STABLE_ABI_MAX_MINOR} because current Python is higher than the maximum supported");
            build_version.minor = STABLE_ABI_MAX_MINOR;
        }

        PythonAbiBuilder {
            kind: Some(PythonAbiKind::Stable(kind)),
            version: build_version,
            ..self
        }
    }

    pub fn free_threaded(self) -> PythonAbiBuilder {
        PythonAbiBuilder {
            kind: Some(PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)),
            ..self
        }
    }

    pub fn finalize(self) -> Result<PythonAbi> {
        // default to GIL-enabled version-specific ABI
        let kind = self.kind.unwrap_or(match self.implementation {
            PythonImplementation::RustPython => PythonAbiKind::Stable(StableAbi::Abi3t),
            _ => PythonAbiKind::VersionSpecific(GilUsed::GilEnabled),
        });
        if matches!(self.implementation, PythonImplementation::RustPython) {
            ensure!(matches!(kind, PythonAbiKind::Stable(StableAbi::Abi3t)),
                    "RustPython only supports targeting abi3t, it does not allow targeting other Python ABIs. Currently targeting '{kind}'")
        }
        if matches!(kind, PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded))
            && self.version
                < (PythonVersion {
                    major: 3,
                    minor: 13,
                })
        {
            bail!(
                "Cannot target free-threaded builds for Python versions before 3.13, tried to build for {}", self.version
            )
        }
        Ok(PythonAbi {
            implementation: self.implementation,
            kind,
            version: self.version,
        })
    }
}

#[non_exhaustive]
#[derive(Copy, Clone, PartialEq, Eq)]
#[cfg_attr(test, derive(Debug))]
pub struct PythonAbi {
    implementation: PythonImplementation,
    kind: PythonAbiKind,
    version: PythonVersion,
}

impl Display for PythonAbi {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}-{}-{}", self.implementation, self.kind, self.version)
    }
}

impl FromStr for PythonAbi {
    type Err = crate::errors::Error;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        let mut parts = value.splitn(3, '-');
        Ok(PythonAbi {
            implementation: parts
                .next()
                .ok_or_else(|| format!("Invalid ABI string representation: {value}"))?
                .parse()?,
            kind: parts
                .next()
                .ok_or_else(|| format!("Invalid ABI string representation: {value}"))?
                .parse()?,
            version: parts
                .next()
                .ok_or_else(|| format!("Invalid ABI string representation: {value}"))?
                .parse()?,
        })
    }
}

impl PythonAbi {
    /// Constructs the ABI to target for an interpreter of `version`, given the
    /// stable ABI kind and minimum Python version to target, if any.
    ///
    /// Callers decide whether a stable ABI applies to the interpreter; this
    /// does not consult the `abi3`/`abi3t` cargo features. The minimum version
    /// must not exceed the interpreter version. Without a stable ABI the
    /// result is version-specific, free-threaded when `gil_disabled` is set.
    fn from_stable_abi(
        implementation: PythonImplementation,
        version: PythonVersion,
        stable_abi: Option<(StableAbi, PythonVersion)>,
        gil_disabled: bool,
    ) -> Result<PythonAbi> {
        let builder = match stable_abi {
            Some((kind, min_version)) => {
                ensure!(
                    min_version <= version,
                    "cannot set a minimum Python version {} higher than the interpreter version {} \
                     (the minimum Python version is implied by the {}-py3{} feature)",
                    min_version,
                    version,
                    kind,
                    min_version.minor
                );
                PythonAbiBuilder::new(implementation, min_version).stable_abi(kind)
            }
            None if gil_disabled => PythonAbiBuilder::new(implementation, version).free_threaded(),
            None => PythonAbiBuilder::new(implementation, version),
        };
        builder.finalize()
    }

    pub fn from_build_env(
        implementation: PythonImplementation,
        version: PythonVersion,
        stable_abi_version: Option<PythonVersion>,
        gil_disabled: bool,
    ) -> Result<PythonAbi> {
        let builder = PythonAbiBuilder {
            implementation,
            version: sanitize_stable_abi_version(stable_abi_version, version)?,
            kind: None,
        };
        let builder = if get_abi3t_version().is_some() && version >= MINIMUM_SUPPORTED_VERSION_ABI3T
        {
            builder.stable_abi(StableAbi::Abi3t)
        } else if get_abi3_version().is_some() && !gil_disabled {
            builder.stable_abi(StableAbi::Abi3)
        } else if gil_disabled {
            builder.free_threaded()
        } else {
            builder
        };
        builder.finalize()
    }

    /// The Python implementation flavor.
    ///
    /// Serialized to `implementation`.
    pub fn implementation(&self) -> PythonImplementation {
        self.implementation
    }

    /// The ABI flavor
    ///
    /// Serialized to `kind`
    pub fn kind(&self) -> PythonAbiKind {
        self.kind
    }

    /// Python `X.Y` version. e.g. `3.9`.
    ///
    /// Serialized to `version`.
    pub fn version(&self) -> PythonVersion {
        self.version
    }
}

/// The "kind" of ABI.
///
/// Either a variety of stable ABI or a GIL-enabled or free-threaded
/// version-specific ABI.
#[derive(Clone, Copy, PartialEq, Eq)]
#[cfg_attr(test, derive(Debug))]
pub enum PythonAbiKind {
    /// One of the stable ABIs, which supports multiple Python versions
    Stable(StableAbi),
    /// Version specific ABI, which is different on the free-threaded build
    VersionSpecific(GilUsed),
}

impl Display for PythonAbiKind {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            PythonAbiKind::Stable(stable_abi) => write!(f, "{stable_abi}"),
            PythonAbiKind::VersionSpecific(gil_used) => {
                write!(f, "{gil_used}")
            }
        }
    }
}

impl FromStr for PythonAbiKind {
    type Err = crate::errors::Error;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        match value {
            "abi3" => Ok(PythonAbiKind::Stable(StableAbi::Abi3)),
            "abi3t" => Ok(PythonAbiKind::Stable(StableAbi::Abi3t)),
            "free_threaded" => Ok(PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)),
            "gil_enabled" => Ok(PythonAbiKind::VersionSpecific(GilUsed::GilEnabled)),
            _ => Err(format!("Unrecognized ABI name: {value}").into()),
        }
    }
}

impl PythonAbiKind {
    pub fn is_free_threaded(self) -> bool {
        match self {
            PythonAbiKind::VersionSpecific(gil_disabled) => gil_disabled == GilUsed::FreeThreaded,
            PythonAbiKind::Stable(StableAbi::Abi3) => false,
            PythonAbiKind::Stable(StableAbi::Abi3t) => true,
        }
    }
}

/// The variety of stable ABI
#[derive(Clone, Copy, PartialEq, Eq)]
#[cfg_attr(test, derive(Debug))]
pub enum StableAbi {
    /// The original stable ABI, supporting Python 3.2 and up
    Abi3,
    /// The free-threaded stable ABI, supporting Python 3.15 and up
    Abi3t,
}

impl Display for StableAbi {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            StableAbi::Abi3 => write!(f, "abi3"),
            StableAbi::Abi3t => write!(f, "abi3t"),
        }
    }
}

/// Whether the ABI is for the GIL-enabled or free-threaded build.
#[derive(Clone, Copy, PartialEq, Eq)]
#[cfg_attr(test, derive(Debug))]
pub enum GilUsed {
    /// The original PyObject layout
    GilEnabled,
    /// The free-threaded PyObject layout
    FreeThreaded,
}

impl Display for GilUsed {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            GilUsed::GilEnabled => write!(f, "gil_enabled"),
            GilUsed::FreeThreaded => write!(f, "free_threaded"),
        }
    }
}

#[cfg_attr(test, derive(Debug))]
pub struct InterpreterConfigBuilder {
    implementation: PythonImplementation,
    version: PythonVersion,
    shared: bool,
    target_abi: Option<PythonAbi>,
    lib_name: Option<String>,
    lib_dir: Option<String>,
    executable: Option<String>,
    pointer_width: Option<u32>,
    build_flags: BuildFlags,
    suppress_build_script_link_lines: bool,
    extra_build_script_lines: Vec<String>,
    python_framework_prefix: Option<String>,
}

impl InterpreterConfigBuilder {
    pub fn new(
        implementation: PythonImplementation,
        version: PythonVersion,
    ) -> InterpreterConfigBuilder {
        InterpreterConfigBuilder {
            implementation,
            version,
            shared: true,
            target_abi: None,
            lib_name: None,
            lib_dir: None,
            executable: None,
            pointer_width: None,
            build_flags: BuildFlags::default(),
            suppress_build_script_link_lines: false,
            extra_build_script_lines: vec![],
            python_framework_prefix: None,
        }
    }

    pub fn target_abi(self, target_abi: PythonAbi) -> InterpreterConfigBuilder {
        InterpreterConfigBuilder {
            target_abi: Some(target_abi),
            ..self
        }
    }

    pub fn stable_abi(self, kind: StableAbi) -> InterpreterConfigBuilder {
        let implementation = self.implementation;
        let version = self.version;
        self.target_abi(
            PythonAbiBuilder::new(implementation, version)
                .stable_abi(kind)
                .finalize()
                // Cannot panic
                .unwrap(),
        )
    }

    pub fn free_threaded(self) -> Result<InterpreterConfigBuilder> {
        let implementation = self.implementation;
        let version = self.version;
        Ok(self.target_abi(
            PythonAbiBuilder::new(implementation, version)
                .free_threaded()
                .finalize()?,
        ))
    }

    pub fn lib_name(mut self, lib_name: impl Into<Option<String>>) -> InterpreterConfigBuilder {
        self.lib_name = lib_name.into();
        self
    }

    pub fn pointer_width(
        mut self,
        pointer_width: impl Into<Option<u32>>,
    ) -> InterpreterConfigBuilder {
        self.pointer_width = pointer_width.into();
        self
    }

    pub fn executable(mut self, executable: impl Into<Option<String>>) -> InterpreterConfigBuilder {
        self.executable = executable.into();
        self
    }

    pub fn suppress_build_script_link_lines(
        mut self,
        suppress_build_script_link_lines: bool,
    ) -> InterpreterConfigBuilder {
        self.suppress_build_script_link_lines = suppress_build_script_link_lines;
        self
    }

    pub fn extra_build_script_lines(
        mut self,
        extra_build_script_lines: Vec<String>,
    ) -> InterpreterConfigBuilder {
        self.extra_build_script_lines = extra_build_script_lines;
        self
    }

    pub fn lib_dir(mut self, lib_dir: impl Into<Option<String>>) -> InterpreterConfigBuilder {
        self.lib_dir = lib_dir.into();
        self
    }

    pub fn shared(mut self, shared: bool) -> InterpreterConfigBuilder {
        self.shared = shared;
        self
    }

    pub fn build_flags(mut self, build_flags: BuildFlags) -> InterpreterConfigBuilder {
        self.build_flags = build_flags;
        self
    }

    pub fn python_framework_prefix(
        mut self,
        python_framework_prefix: impl Into<Option<String>>,
    ) -> InterpreterConfigBuilder {
        self.python_framework_prefix = python_framework_prefix.into();
        self
    }

    pub fn finalize(self) -> Result<InterpreterConfig> {
        let mut build_flags = self.build_flags.clone();
        let py_gil_disabled = build_flags.0.contains(&BuildFlag::Py_GIL_DISABLED);
        let target_abi = match (self.target_abi, py_gil_disabled) {
            // No target ABI set, no Py_GIL_DISABLED: default to GIL-enabled version-specific.
            (None, false) => PythonAbiBuilder::new(self.implementation, self.version).finalize()?,
            // No target ABI set, Py_GIL_DISABLED in build flags: infer free-threaded.
            (None, true) => PythonAbiBuilder::new(self.implementation, self.version)
                .free_threaded()
                .finalize()?,
            // Target ABI set, no Py_GIL_DISABLED: use as-is.
            (Some(target_abi), false) => target_abi,
            // Target ABI set + Py_GIL_DISABLED: reconcile.
            (Some(target_abi), true) => match target_abi.kind() {
                // abi3 + Py_GIL_DISABLED: the abi3 feature is a no-op on free-threaded
                // interpreters, so for backward compatibility fall back to a free-threaded
                // version-specific build.
                PythonAbiKind::Stable(StableAbi::Abi3) => {
                    let new_abi =
                        PythonAbiBuilder::new(target_abi.implementation(), target_abi.version())
                            .free_threaded()
                            .finalize()?;
                    warn!(
                        "Targeting an abi3 build but build_flags contains Py_GIL_DISABLED, \
                         falling back to a version-specific free-threaded build"
                    );
                    new_abi
                }
                // GIL-enabled version-specific + Py_GIL_DISABLED is contradictory.
                PythonAbiKind::VersionSpecific(GilUsed::GilEnabled) => bail!(
                    "build_flags contains Py_GIL_DISABLED but target_abi \
                     '{target_abi}' is not free-threaded"
                ),
                // Already free-threaded (Stable(Abi3t) or VersionSpecific(FreeThreaded)).
                _ => target_abi,
            },
        };
        if target_abi.kind().is_free_threaded() {
            build_flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        }
        #[expect(
            deprecated,
            reason = "constructing an InterpreterConfig directly, need to write to fields"
        )]
        Ok(InterpreterConfig {
            implementation: self.implementation,
            version: self.version,
            shared: self.shared,
            target_abi,
            abi3: matches!(target_abi.kind(), PythonAbiKind::Stable(StableAbi::Abi3)),
            lib_name: self.lib_name,
            lib_dir: self.lib_dir,
            executable: self.executable,
            pointer_width: self.pointer_width,
            build_flags,
            suppress_build_script_link_lines: self.suppress_build_script_link_lines,
            extra_build_script_lines: self.extra_build_script_lines,
            python_framework_prefix: self.python_framework_prefix,
        })
    }
}

#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct PythonVersion {
    pub major: u8,
    pub minor: u8,
}

impl PythonVersion {
    #[cfg(test)]
    pub(crate) const PY315: Self = PythonVersion {
        major: 3,
        minor: 15,
    };
    #[cfg(test)]
    pub(crate) const PY314: Self = PythonVersion {
        major: 3,
        minor: 14,
    };
    #[deprecated(
        since = "0.29.0",
        note = "please construct `PythonVersion` directly rather than use these constants"
    )]
    pub const PY313: Self = PythonVersion {
        major: 3,
        minor: 13,
    };
    #[deprecated(
        since = "0.29.0",
        note = "please construct `PythonVersion` directly rather than use these constants"
    )]
    pub const PY312: Self = PythonVersion {
        major: 3,
        minor: 12,
    };
    #[cfg(test)]
    const PY311: Self = PythonVersion {
        major: 3,
        minor: 11,
    };
    const PY310: Self = PythonVersion {
        major: 3,
        minor: 10,
    };
    #[cfg(test)]
    const PY39: Self = PythonVersion { major: 3, minor: 9 };
    #[cfg(test)]
    const PY38: Self = PythonVersion { major: 3, minor: 8 };
}

impl Display for PythonVersion {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}.{}", self.major, self.minor)
    }
}

impl FromStr for PythonVersion {
    type Err = crate::errors::Error;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        let mut split = value.splitn(2, '.');
        let (major, minor) = (
            split
                .next()
                .expect("first splitn value should always be present"),
            split.next().ok_or("expected major.minor version")?,
        );
        Ok(Self {
            major: major.parse().context("failed to parse major version")?,
            minor: minor.parse().context("failed to parse minor version")?,
        })
    }
}

#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum PythonImplementation {
    CPython,
    PyPy,
    GraalPy,
    RustPython,
}

impl PythonImplementation {
    fn is_pypy(self) -> bool {
        self == PythonImplementation::PyPy
    }

    fn from_soabi(soabi: &str) -> Result<Self> {
        if soabi.starts_with("pypy") {
            Ok(PythonImplementation::PyPy)
        } else if soabi.starts_with("cpython") {
            Ok(PythonImplementation::CPython)
        } else if soabi.starts_with("graalpy") {
            Ok(PythonImplementation::GraalPy)
        } else {
            bail!("unsupported Python interpreter");
        }
    }
}

impl Display for PythonImplementation {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            PythonImplementation::CPython => write!(f, "CPython"),
            PythonImplementation::PyPy => write!(f, "PyPy"),
            PythonImplementation::GraalPy => write!(f, "GraalVM"),
            PythonImplementation::RustPython => write!(f, "RustPython"),
        }
    }
}

impl FromStr for PythonImplementation {
    type Err = Error;
    fn from_str(s: &str) -> Result<Self> {
        match s {
            "CPython" => Ok(PythonImplementation::CPython),
            "PyPy" => Ok(PythonImplementation::PyPy),
            "GraalVM" => Ok(PythonImplementation::GraalPy),
            "RustPython" => Ok(PythonImplementation::RustPython),
            _ => bail!("unknown interpreter: {}", s),
        }
    }
}

/// Checks if we should look for a Python interpreter installation
/// to get the target interpreter configuration.
///
/// Returns `false` if `PYO3_NO_PYTHON` environment variable is set.
fn have_python_interpreter() -> bool {
    env_var("PYO3_NO_PYTHON").is_none()
}

/// The target stable ABI version.
///
/// For abi3(t)-py* builds a specific version is chosen, otherwise the builds is
/// for the stable ABI exposed by the host python interpreter version.
#[derive(Debug, Copy, Clone)]
pub enum StableAbiVersion {
    Current,
    Target(PythonVersion),
}

/// Gets the minimum supported Python version from PyO3 `abi3-py*` features.
///
/// Must be called from a PyO3 crate build script. Returns None if an `abi3-py*`
/// feature is activated that is unsupported or if no `abi3-py3*` feature is
/// active.
pub fn get_abi3_version() -> Option<StableAbiVersion> {
    let minor_version = (MINIMUM_SUPPORTED_VERSION.minor..=STABLE_ABI_MAX_MINOR)
        .find(|i| cargo_env_var(&format!("CARGO_FEATURE_ABI3_PY3{i}")).is_some());
    minor_version.map_or(
        if cargo_env_var("CARGO_FEATURE_ABI3").is_some() {
            Some(StableAbiVersion::Current)
        } else {
            None
        },
        |minor| Some(StableAbiVersion::Target(PythonVersion { major: 3, minor })),
    )
}

/// Gets the minimum supported Python version from PyO3 `abi3t-py*` features.
///
/// Must be called from a PyO3 crate build script. Returns None if an `abi3t-py*`
/// feature is activated that is unsupported or if no `abi3t-py3*` feature is
/// active.
pub fn get_abi3t_version() -> Option<StableAbiVersion> {
    let minor_version = (MINIMUM_SUPPORTED_VERSION_ABI3T.minor..=STABLE_ABI_MAX_MINOR)
        .find(|i| cargo_env_var(&format!("CARGO_FEATURE_ABI3T_PY3{i}")).is_some());
    minor_version.map_or(
        if cargo_env_var("CARGO_FEATURE_ABI3T").is_some() {
            Some(StableAbiVersion::Current)
        } else {
            None
        },
        |minor| Some(StableAbiVersion::Target(PythonVersion { major: 3, minor })),
    )
}

/// Checks if the `extension-module` feature is enabled for the PyO3 crate.
///
/// This can be triggered either by:
/// - The `extension-module` Cargo feature (deprecated)
/// - Setting the `PYO3_BUILD_EXTENSION_MODULE` environment variable
///
/// Must be called from a PyO3 crate build script.
pub fn is_extension_module() -> bool {
    cargo_env_var("CARGO_FEATURE_EXTENSION_MODULE").is_some()
        || env_var("PYO3_BUILD_EXTENSION_MODULE").is_some()
}

/// Checks if we need to link to `libpython` for the target.
///
/// Must be called from a PyO3 crate build script.
pub fn is_linking_libpython_for_target(target: &Triple) -> bool {
    target.operating_system == OperatingSystem::Windows
        // See https://github.com/PyO3/pyo3/issues/4068#issuecomment-2051159852
        || target.operating_system == OperatingSystem::Aix
        || target.environment == Environment::Android
        || target.environment == Environment::Androideabi
        || target.operating_system == OperatingSystem::Cygwin
        || matches!(target.operating_system, OperatingSystem::IOS(_))
        || !is_extension_module()
}

/// Checks if we need to discover the Python library directory
/// to link the extension module binary.
///
/// Must be called from a PyO3 crate build script.
fn require_libdir_for_target(target: &Triple) -> bool {
    // With raw-dylib, Windows targets never need a lib dir — the compiler generates
    // import entries directly from `#[link(kind = "raw-dylib")]` attributes.
    if target.operating_system == OperatingSystem::Windows {
        return false;
    }

    is_linking_libpython_for_target(target)
}

/// Configuration needed by PyO3 to cross-compile for a target platform.
///
/// Usually this is collected from the environment (i.e. `PYO3_CROSS_*` and `CARGO_CFG_TARGET_*`)
/// when a cross-compilation configuration is detected.
#[derive(Debug, PartialEq, Eq)]
pub struct CrossCompileConfig {
    /// The directory containing the Python library to link against.
    pub lib_dir: Option<PathBuf>,

    /// The version of the Python library to link against.
    version: Option<PythonVersion>,

    /// The target Python implementation hint (CPython, PyPy, GraalPy, ...)
    implementation: Option<PythonImplementation>,

    /// The compile target triple (e.g. aarch64-unknown-linux-gnu)
    target: Triple,

    /// Python ABI flags, used to detect free-threaded Python builds.
    abiflags: Option<String>,
}

impl CrossCompileConfig {
    /// Creates a new cross compile config struct from PyO3 environment variables
    /// and the build environment when cross compilation mode is detected.
    ///
    /// Returns `None` when not cross compiling.
    fn try_from_env_vars_host_target(
        env_vars: CrossCompileEnvVars,
        host: &Triple,
        target: &Triple,
    ) -> Result<Option<Self>> {
        if env_vars.any() || Self::is_cross_compiling_from_to(host, target) {
            let lib_dir = env_vars.lib_dir_path()?;
            let (version, abiflags) = env_vars.parse_version()?;
            let implementation = env_vars.parse_implementation()?;
            let target = target.clone();

            Ok(Some(CrossCompileConfig {
                lib_dir,
                version,
                implementation,
                target,
                abiflags,
            }))
        } else {
            Ok(None)
        }
    }

    /// Checks if compiling on `host` for `target` required "real" cross compilation.
    ///
    /// Returns `false` if the target Python interpreter can run on the host.
    fn is_cross_compiling_from_to(host: &Triple, target: &Triple) -> bool {
        // Not cross-compiling if arch-vendor-os is all the same
        // e.g. x86_64-unknown-linux-musl on x86_64-unknown-linux-gnu host
        //      x86_64-pc-windows-gnu on x86_64-pc-windows-msvc host
        let mut compatible = host.architecture == target.architecture
            && (host.vendor == target.vendor
                // Don't treat `-pc-` to `-win7-` as cross-compiling
                || (host.vendor == Vendor::Pc && target.vendor.as_str() == "win7"))
            && host.operating_system == target.operating_system;

        // Not cross-compiling to compile for 32-bit Python from windows 64-bit
        compatible |= target.operating_system == OperatingSystem::Windows
            && host.operating_system == OperatingSystem::Windows
            && matches!(target.architecture, Architecture::X86_32(_))
            && host.architecture == Architecture::X86_64;

        // Not cross-compiling to compile for x86-64 Python from macOS arm64 and vice versa
        compatible |= matches!(target.operating_system, OperatingSystem::Darwin(_))
            && matches!(host.operating_system, OperatingSystem::Darwin(_));

        compatible |= matches!(target.operating_system, OperatingSystem::IOS(_));

        !compatible
    }

    /// Converts `lib_dir` member field to an UTF-8 string.
    ///
    /// The conversion can not fail because `PYO3_CROSS_LIB_DIR` variable
    /// is ensured contain a valid UTF-8 string.
    fn lib_dir_string(&self) -> Option<String> {
        self.lib_dir
            .as_ref()
            .map(|s| s.to_str().unwrap().to_owned())
    }
}

/// PyO3-specific cross compile environment variable values
struct CrossCompileEnvVars {
    /// `PYO3_CROSS`
    pyo3_cross: Option<OsString>,
    /// `PYO3_CROSS_LIB_DIR`
    pyo3_cross_lib_dir: Option<OsString>,
    /// `PYO3_CROSS_PYTHON_VERSION`
    pyo3_cross_python_version: Option<OsString>,
    /// `PYO3_CROSS_PYTHON_IMPLEMENTATION`
    pyo3_cross_python_implementation: Option<OsString>,
}

impl CrossCompileEnvVars {
    /// Grabs the PyO3 cross-compile variables from the environment.
    ///
    /// Registers the build script to rerun if any of the variables changes.
    fn from_env() -> Self {
        CrossCompileEnvVars {
            pyo3_cross: env_var("PYO3_CROSS"),
            pyo3_cross_lib_dir: env_var("PYO3_CROSS_LIB_DIR"),
            pyo3_cross_python_version: env_var("PYO3_CROSS_PYTHON_VERSION"),
            pyo3_cross_python_implementation: env_var("PYO3_CROSS_PYTHON_IMPLEMENTATION"),
        }
    }

    /// Checks if any of the variables is set.
    fn any(&self) -> bool {
        self.pyo3_cross.is_some()
            || self.pyo3_cross_lib_dir.is_some()
            || self.pyo3_cross_python_version.is_some()
            || self.pyo3_cross_python_implementation.is_some()
    }

    /// Parses `PYO3_CROSS_PYTHON_VERSION` environment variable value
    /// into `PythonVersion` and ABI flags.
    fn parse_version(&self) -> Result<(Option<PythonVersion>, Option<String>)> {
        match self.pyo3_cross_python_version.as_ref() {
            Some(os_string) => {
                let utf8_str = os_string
                    .to_str()
                    .ok_or("PYO3_CROSS_PYTHON_VERSION is not valid a UTF-8 string")?;
                let (utf8_str, abiflags) = if let Some(version) = utf8_str.strip_suffix('t') {
                    (version, Some("t".to_string()))
                } else {
                    (utf8_str, None)
                };
                let version = utf8_str
                    .parse()
                    .context("failed to parse PYO3_CROSS_PYTHON_VERSION")?;
                Ok((Some(version), abiflags))
            }
            None => Ok((None, None)),
        }
    }

    /// Parses `PYO3_CROSS_PYTHON_IMPLEMENTATION` environment variable value
    /// into `PythonImplementation`.
    fn parse_implementation(&self) -> Result<Option<PythonImplementation>> {
        let implementation = self
            .pyo3_cross_python_implementation
            .as_ref()
            .map(|os_string| {
                let utf8_str = os_string
                    .to_str()
                    .ok_or("PYO3_CROSS_PYTHON_IMPLEMENTATION is not valid a UTF-8 string")?;
                utf8_str
                    .parse()
                    .context("failed to parse PYO3_CROSS_PYTHON_IMPLEMENTATION")
            })
            .transpose()?;

        Ok(implementation)
    }

    /// Converts the stored `PYO3_CROSS_LIB_DIR` variable value (if any)
    /// into a `PathBuf` instance.
    ///
    /// Ensures that the path is a valid UTF-8 string.
    fn lib_dir_path(&self) -> Result<Option<PathBuf>> {
        let lib_dir = self.pyo3_cross_lib_dir.as_ref().map(PathBuf::from);

        if let Some(dir) = lib_dir.as_ref() {
            ensure!(
                dir.to_str().is_some(),
                "PYO3_CROSS_LIB_DIR variable value is not a valid UTF-8 string"
            );
        }

        Ok(lib_dir)
    }
}

/// Detect whether we are cross compiling and return an assembled CrossCompileConfig if so.
///
/// This function relies on PyO3 cross-compiling environment variables:
///
/// * `PYO3_CROSS`: If present, forces PyO3 to configure as a cross-compilation.
/// * `PYO3_CROSS_LIB_DIR`: If present, must be set to the directory containing
///   the target's libpython DSO and the associated `_sysconfigdata*.py` file for
///   Unix-like targets, or the Python DLL import libraries for the Windows target.
/// * `PYO3_CROSS_PYTHON_VERSION`: Major and minor version (e.g. 3.9) of the target Python
///   installation. This variable is only needed if PyO3 cannot determine the version to target
///   from `abi3-py3*` features, or if there are multiple versions of Python present in
///   `PYO3_CROSS_LIB_DIR`.
///
/// See the [PyO3 User Guide](https://pyo3.rs/) for more info on cross-compiling.
pub fn cross_compiling_from_to(
    host: &Triple,
    target: &Triple,
) -> Result<Option<CrossCompileConfig>> {
    let env_vars = CrossCompileEnvVars::from_env();
    CrossCompileConfig::try_from_env_vars_host_target(env_vars, host, target)
}

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum BuildFlag {
    Py_DEBUG,
    Py_REF_DEBUG,
    #[deprecated(since = "0.29.0", note = "no longer supported by PyO3")]
    Py_TRACE_REFS,
    Py_GIL_DISABLED,
    COUNT_ALLOCS,
    Other(String),
}

impl Display for BuildFlag {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            BuildFlag::Other(flag) => write!(f, "{flag}"),
            _ => write!(f, "{self:?}"),
        }
    }
}

impl FromStr for BuildFlag {
    type Err = std::convert::Infallible;
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "Py_DEBUG" => Ok(BuildFlag::Py_DEBUG),
            "Py_REF_DEBUG" => Ok(BuildFlag::Py_REF_DEBUG),
            "Py_GIL_DISABLED" => Ok(BuildFlag::Py_GIL_DISABLED),
            "COUNT_ALLOCS" => Ok(BuildFlag::COUNT_ALLOCS),
            other => Ok(BuildFlag::Other(other.to_owned())),
        }
    }
}

/// A list of python interpreter compile-time preprocessor defines.
///
/// PyO3 will pick these up and pass to rustc via `--cfg=py_sys_config={varname}`;
/// this allows using them conditional cfg attributes in the .rs files, so
///
/// ```rust,no_run
/// #[cfg(py_sys_config="{varname}")]
/// # struct Foo;
/// ```
///
/// is the equivalent of `#ifdef {varname}` in C.
///
/// see Misc/SpecialBuilds.txt in the python source for what these mean.
#[cfg_attr(test, derive(Debug, PartialEq, Eq))]
#[derive(Clone, Default)]
pub struct BuildFlags(pub HashSet<BuildFlag>);

impl BuildFlags {
    const ALL: [BuildFlag; 4] = [
        BuildFlag::Py_DEBUG,
        BuildFlag::Py_REF_DEBUG,
        BuildFlag::Py_GIL_DISABLED,
        BuildFlag::COUNT_ALLOCS,
    ];

    pub fn new() -> Self {
        BuildFlags(HashSet::new())
    }

    fn from_sysconfigdata(config_map: &Sysconfigdata) -> Self {
        Self(
            BuildFlags::ALL
                .iter()
                .filter(|flag| config_map.get_value(flag.to_string()) == Some("1"))
                .cloned()
                .collect(),
        )
        .fixup()
    }

    /// Examine python's compile flags to pass to cfg by launching
    /// the interpreter and printing variables of interest from
    /// sysconfig.get_config_vars.
    fn from_interpreter(interpreter: impl AsRef<Path>) -> Result<Self> {
        // sysconfig is missing all the flags on windows for Python 3.12 and
        // older, so we can't actually query the interpreter directly for its
        // build flags on those versions.
        if cfg!(windows) {
            let script = String::from("import sys;print(sys.version_info < (3, 13))");
            let stdout = run_python_script(interpreter.as_ref(), &script)?;
            if stdout.trim_end() == "True" {
                return Ok(Self::new());
            }
        }

        let mut script = String::from("import sysconfig\n");
        script.push_str("config = sysconfig.get_config_vars()\n");

        for k in &BuildFlags::ALL {
            use std::fmt::Write;
            writeln!(&mut script, "print(config.get('{k}', '0'))").unwrap();
        }

        let stdout = run_python_script(interpreter.as_ref(), &script)?;
        let split_stdout: Vec<&str> = stdout.trim_end().lines().collect();
        ensure!(
            split_stdout.len() == BuildFlags::ALL.len(),
            "Python stdout len didn't return expected number of lines: {}",
            split_stdout.len()
        );
        let flags = BuildFlags::ALL
            .iter()
            .zip(split_stdout)
            .filter(|(_, flag_value)| *flag_value == "1")
            .map(|(flag, _)| flag.clone())
            .collect();

        Ok(Self(flags).fixup())
    }

    fn fixup(mut self) -> Self {
        if self.0.contains(&BuildFlag::Py_DEBUG) {
            self.0.insert(BuildFlag::Py_REF_DEBUG);
        }

        self
    }
}

impl Display for BuildFlags {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut first = true;
        for flag in &self.0 {
            if first {
                first = false;
            } else {
                write!(f, ",")?;
            }
            write!(f, "{flag}")?;
        }
        Ok(())
    }
}

impl FromStr for BuildFlags {
    type Err = std::convert::Infallible;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        let mut flags = HashSet::new();
        for flag in value.split_terminator(',') {
            flags.insert(flag.parse().unwrap());
        }
        Ok(BuildFlags(flags))
    }
}

fn parse_script_output(output: &str) -> HashMap<String, String> {
    output
        .lines()
        .filter_map(|line| {
            let mut i = line.splitn(2, ' ');
            Some((i.next()?.into(), i.next()?.into()))
        })
        .collect()
}

/// Parsed data from Python sysconfigdata file
///
/// A hash map of all values from a sysconfigdata file.
pub struct Sysconfigdata(HashMap<String, String>);

impl Sysconfigdata {
    pub fn get_value<S: AsRef<str>>(&self, k: S) -> Option<&str> {
        self.0.get(k.as_ref()).map(String::as_str)
    }

    #[cfg(test)]
    fn new() -> Self {
        Sysconfigdata(HashMap::new())
    }

    #[cfg(test)]
    fn insert<S: Into<String>>(&mut self, k: S, v: S) {
        self.0.insert(k.into(), v.into());
    }
}

/// Parse sysconfigdata file
///
/// The sysconfigdata is simply a dictionary containing all the build time variables used for the
/// python executable and library. This function necessitates a python interpreter on the host
/// machine to work. Here it is read into a `Sysconfigdata` (hash map), which can be turned into an
/// [`InterpreterConfig`] using
/// [`from_sysconfigdata`](InterpreterConfig::from_sysconfigdata).
pub fn parse_sysconfigdata(sysconfigdata_path: impl AsRef<Path>) -> Result<Sysconfigdata> {
    let sysconfigdata_path = sysconfigdata_path.as_ref();
    let mut script = fs::read_to_string(sysconfigdata_path).with_context(|| {
        format!(
            "failed to read config from {}",
            sysconfigdata_path.display()
        )
    })?;
    script += r#"
for key, val in build_time_vars.items():
    # (ana)conda(-forge) built Pythons are statically linked but ship the shared library with them.
    # We detect them based on the magic prefix directory they have encoded in their builds.
    if key == "Py_ENABLE_SHARED" and "_h_env_placehold" in build_time_vars.get("prefix"):
        val = 1
    print(key, val)
"#;

    let output = run_python_script(&find_interpreter()?, &script)?;

    Ok(Sysconfigdata(parse_script_output(&output)))
}

fn starts_with(entry: &DirEntry, pat: &str) -> bool {
    let name = entry.file_name();
    name.to_string_lossy().starts_with(pat)
}
fn ends_with(entry: &DirEntry, pat: &str) -> bool {
    let name = entry.file_name();
    name.to_string_lossy().ends_with(pat)
}

/// Finds the sysconfigdata file when the target Python library directory is set.
///
/// Returns `None` if the library directory is not available, and a runtime error
/// when no or multiple sysconfigdata files are found.
fn find_sysconfigdata(cross: &CrossCompileConfig) -> Result<Option<PathBuf>> {
    let mut sysconfig_paths = find_all_sysconfigdata(cross)?;
    if sysconfig_paths.is_empty() {
        if let Some(lib_dir) = cross.lib_dir.as_ref() {
            bail!("Could not find _sysconfigdata*.py in {}", lib_dir.display());
        } else {
            // Continue with the default configuration when PYO3_CROSS_LIB_DIR is not set.
            return Ok(None);
        }
    } else if sysconfig_paths.len() > 1 {
        let mut error_msg = String::from(
            "Detected multiple possible Python versions. Please set either the \
            PYO3_CROSS_PYTHON_VERSION variable to the wanted version or the \
            _PYTHON_SYSCONFIGDATA_NAME variable to the wanted sysconfigdata file name.\n\n\
            sysconfigdata files found:",
        );
        for path in sysconfig_paths {
            use std::fmt::Write;
            write!(&mut error_msg, "\n\t{}", path.display()).unwrap();
        }
        bail!("{}\n", error_msg);
    }

    Ok(Some(sysconfig_paths.remove(0)))
}

/// Finds `_sysconfigdata*.py` files for detected Python interpreters.
///
/// From the python source for `_sysconfigdata*.py` is always going to be located at
/// `build/lib.{PLATFORM}-{PY_MINOR_VERSION}` when built from source. The [exact line][1] is defined as:
///
/// ```py
/// pybuilddir = 'build/lib.%s-%s' % (get_platform(), sys.version_info[:2])
/// ```
///
/// Where get_platform returns a kebab-case formatted string containing the os, the architecture and
/// possibly the os' kernel version (not the case on linux). However, when installed using a package
/// manager, the `_sysconfigdata*.py` file is installed in the `${PREFIX}/lib/python3.Y/` directory.
/// The `_sysconfigdata*.py` is generally in a sub-directory of the location of `libpython3.Y.so`.
/// So we must find the file in the following possible locations:
///
/// ```sh
/// # distribution from package manager, (lib_dir may or may not include lib/)
/// ${INSTALL_PREFIX}/lib/python3.Y/_sysconfigdata*.py
/// ${INSTALL_PREFIX}/lib/libpython3.Y.so
/// ${INSTALL_PREFIX}/lib/python3.Y/config-3.Y-${HOST_TRIPLE}/libpython3.Y.so
///
/// # Built from source from host
/// ${CROSS_COMPILED_LOCATION}/build/lib.linux-x86_64-Y/_sysconfigdata*.py
/// ${CROSS_COMPILED_LOCATION}/libpython3.Y.so
///
/// # if cross compiled, kernel release is only present on certain OS targets.
/// ${CROSS_COMPILED_LOCATION}/build/lib.{OS}(-{OS-KERNEL-RELEASE})?-{ARCH}-Y/_sysconfigdata*.py
/// ${CROSS_COMPILED_LOCATION}/libpython3.Y.so
///
/// # PyPy includes a similar file since v73
/// ${INSTALL_PREFIX}/lib/pypy3.Y/_sysconfigdata.py
/// ${INSTALL_PREFIX}/lib_pypy/_sysconfigdata.py
/// ```
///
/// [1]: https://github.com/python/cpython/blob/3.5/Lib/sysconfig.py#L389
///
/// Returns an empty vector when the target Python library directory
/// is not set via `PYO3_CROSS_LIB_DIR`.
pub fn find_all_sysconfigdata(cross: &CrossCompileConfig) -> Result<Vec<PathBuf>> {
    let sysconfig_paths = if let Some(lib_dir) = cross.lib_dir.as_ref() {
        search_lib_dir(lib_dir, cross).with_context(|| {
            format!(
                "failed to search the lib dir at 'PYO3_CROSS_LIB_DIR={}'",
                lib_dir.display()
            )
        })?
    } else {
        return Ok(Vec::new());
    };

    let sysconfig_name = env_var("_PYTHON_SYSCONFIGDATA_NAME");
    let mut sysconfig_paths = sysconfig_paths
        .iter()
        .filter_map(|p| {
            let canonical = fs::canonicalize(p).ok();
            match &sysconfig_name {
                Some(_) => canonical.filter(|p| p.file_stem() == sysconfig_name.as_deref()),
                None => canonical,
            }
        })
        .collect::<Vec<PathBuf>>();

    sysconfig_paths.sort();
    sysconfig_paths.dedup();

    Ok(sysconfig_paths)
}

fn is_pypy_lib_dir(path: &str, v: &Option<PythonVersion>) -> bool {
    let pypy_version_pat = if let Some(v) = v {
        format!("pypy{v}")
    } else {
        "pypy3.".into()
    };
    path == "lib_pypy" || path.starts_with(&pypy_version_pat)
}

fn is_graalpy_lib_dir(path: &str, v: &Option<PythonVersion>) -> bool {
    let graalpy_version_pat = if let Some(v) = v {
        format!("graalpy{v}")
    } else {
        "graalpy2".into()
    };
    path == "lib_graalpython" || path.starts_with(&graalpy_version_pat)
}

fn is_cpython_lib_dir(path: &str, v: &Option<PythonVersion>) -> bool {
    let cpython_version_pat = if let Some(v) = v {
        format!("python{v}")
    } else {
        "python3.".into()
    };
    path.starts_with(&cpython_version_pat)
}

/// recursive search for _sysconfigdata, returns all possibilities of sysconfigdata paths
fn search_lib_dir(path: impl AsRef<Path>, cross: &CrossCompileConfig) -> Result<Vec<PathBuf>> {
    let mut sysconfig_paths = vec![];
    for f in fs::read_dir(path.as_ref()).with_context(|| {
        format!(
            "failed to list the entries in '{}'",
            path.as_ref().display()
        )
    })? {
        sysconfig_paths.extend(match &f {
            // Python 3.7+ sysconfigdata with platform specifics
            Ok(f) if starts_with(f, "_sysconfigdata_") && ends_with(f, "py") => vec![f.path()],
            Ok(f) if f.metadata().is_ok_and(|metadata| metadata.is_dir()) => {
                let file_name = f.file_name();
                let file_name = file_name.to_string_lossy();
                if file_name == "build" || file_name == "lib" {
                    search_lib_dir(f.path(), cross)?
                } else if file_name.starts_with("lib.") {
                    // check if right target os
                    if !file_name.contains(&cross.target.operating_system.to_string()) {
                        continue;
                    }
                    // Check if right arch
                    if !file_name.contains(&cross.target.architecture.to_string()) {
                        continue;
                    }
                    search_lib_dir(f.path(), cross)?
                } else if is_cpython_lib_dir(&file_name, &cross.version)
                    || is_pypy_lib_dir(&file_name, &cross.version)
                    || is_graalpy_lib_dir(&file_name, &cross.version)
                {
                    search_lib_dir(f.path(), cross)?
                } else {
                    continue;
                }
            }
            _ => continue,
        });
    }
    // If we got more than one file, only take those that contain the arch name.
    // For ubuntu 20.04 with host architecture x86_64 and a foreign architecture of armhf
    // this reduces the number of candidates to 1:
    //
    // $ find /usr/lib/python3.8/ -name '_sysconfigdata*.py' -not -lname '*'
    //  /usr/lib/python3.8/_sysconfigdata__x86_64-linux-gnu.py
    //  /usr/lib/python3.8/_sysconfigdata__arm-linux-gnueabihf.py
    if sysconfig_paths.len() > 1 {
        let temp = sysconfig_paths
            .iter()
            .filter(|p| {
                p.to_string_lossy()
                    .contains(&cross.target.architecture.to_string())
            })
            .cloned()
            .collect::<Vec<PathBuf>>();
        if !temp.is_empty() {
            sysconfig_paths = temp;
        }
    }

    Ok(sysconfig_paths)
}

/// Find cross compilation information from sysconfigdata file
///
/// first find sysconfigdata file which follows the pattern [`_sysconfigdata_{abi}_{platform}_{multiarch}`][1]
///
/// [1]: https://github.com/python/cpython/blob/3.8/Lib/sysconfig.py#L348
///
/// Returns `None` when the target Python library directory is not set.
fn cross_compile_from_sysconfigdata(
    cross_compile_config: &CrossCompileConfig,
) -> Result<Option<InterpreterConfig>> {
    if let Some(path) = find_sysconfigdata(cross_compile_config)? {
        let data = parse_sysconfigdata(path)?;
        let mut config = InterpreterConfig::from_sysconfigdata(&data)?;
        #[expect(deprecated, reason = "modifying config inline")]
        if let Some(cross_lib_dir) = cross_compile_config.lib_dir_string() {
            config.lib_dir = Some(cross_lib_dir)
        }

        Ok(Some(config))
    } else {
        Ok(None)
    }
}

fn exact_stable_abi_version(version: Option<StableAbiVersion>) -> Option<PythonVersion> {
    version.and_then(|v| match v {
        StableAbiVersion::Current => None,
        StableAbiVersion::Target(inner) => Some(inner),
    })
}

/// Generates "default" cross compilation information for the target.
///
/// This should work for most CPython extension modules when targeting
/// Windows, macOS and Linux.
///
/// Must be called from a PyO3 crate build script.
fn default_cross_compile(cross_compile_config: &CrossCompileConfig) -> Result<InterpreterConfig> {
    let version = cross_compile_config
        .version
        .or_else(|| exact_stable_abi_version(get_abi3_version()))
        .or_else(|| exact_stable_abi_version(get_abi3t_version()))
        .ok_or_else(||
            format!(
                "PYO3_CROSS_PYTHON_VERSION or either an abi3-py3* or abi3t-py3* feature must be specified \
                when cross-compiling and PYO3_CROSS_LIB_DIR is not set.\n\
                = help: see the PyO3 user guide for more information: https://pyo3.rs/v{}/building-and-distribution.html#cross-compiling",
                env!("CARGO_PKG_VERSION")
            )
        )?;
    let gil_disabled = cross_compile_config.abiflags.as_deref() == Some("t");

    let implementation = cross_compile_config
        .implementation
        .unwrap_or(PythonImplementation::CPython);

    let stable_abi =
        applicable_stable_abi_at_interpreter_version(implementation, version, gil_disabled);

    let target_abi = PythonAbi::from_stable_abi(implementation, version, stable_abi, gil_disabled)?;

    let lib_name = default_lib_name_for_target(target_abi, &cross_compile_config.target);

    let lib_dir = cross_compile_config.lib_dir_string();

    InterpreterConfigBuilder::new(implementation, version)
        .target_abi(target_abi)
        .lib_name(lib_name)
        .lib_dir(lib_dir)
        .finalize()
}

/// Generates "default" interpreter configuration when compiling stable ABI extensions
/// without a working Python interpreter.
///
/// `abi3_version` or `abi3t_version` specifies the minimum supported Stable ABI
/// CPython version and which stable ABI to target.
///
/// This should work for most CPython extension modules when compiling on
/// Windows, macOS and Linux.
///
/// Must be called from a PyO3 crate build script.
fn default_stable_abi_config(
    host: &Triple,
    abi3_version: Option<PythonVersion>,
    abi3t_version: Option<PythonVersion>,
) -> Result<InterpreterConfig> {
    if abi3_version.is_none() && abi3t_version.is_none() {
        bail!("Neither abi3 or abi3t features are enabled")
    }
    let (stable_abi, version) = if let Some(version) = abi3_version {
        (StableAbi::Abi3, version)
    } else if let Some(version) = abi3t_version {
        (StableAbi::Abi3t, version)
    } else {
        unreachable!();
    };

    if stable_abi == StableAbi::Abi3t && version < MINIMUM_SUPPORTED_VERSION_ABI3T {
        bail!("Cannot target an abi3t version below {MINIMUM_SUPPORTED_VERSION_ABI3T}")
    }

    // FIXME: PyPy & GraalPy do not support the Stable ABI.
    let target_abi = PythonAbiBuilder::new(PythonImplementation::CPython, version)
        .stable_abi(stable_abi)
        .finalize()?;
    let builder = InterpreterConfigBuilder::new(PythonImplementation::CPython, version)
        .target_abi(target_abi);
    if host.operating_system == OperatingSystem::Windows {
        builder.lib_name(default_lib_name_windows(target_abi, false, false)?)
    } else {
        builder
    }
    .finalize()
}

/// Detects the cross compilation target interpreter configuration from all
/// available sources (PyO3 environment variables, Python sysconfigdata, etc.).
///
/// Returns the "default" target interpreter configuration for Windows and
/// when no target Python interpreter is found.
///
/// Must be called from a PyO3 crate build script.
fn load_cross_compile_config(
    cross_compile_config: CrossCompileConfig,
) -> Result<InterpreterConfig> {
    let windows = cross_compile_config.target.operating_system == OperatingSystem::Windows;

    let config = if windows || !have_python_interpreter() {
        // Load the defaults for Windows even when `PYO3_CROSS_LIB_DIR` is set
        // since it has no sysconfigdata files in it.
        // Also, do not try to look for sysconfigdata when `PYO3_NO_PYTHON` variable is set.
        default_cross_compile(&cross_compile_config)?
    } else if let Some(config) = cross_compile_from_sysconfigdata(&cross_compile_config)? {
        // Try to find and parse sysconfigdata files on other targets.
        config
    } else {
        // Fall back to the defaults when nothing else can be done.
        default_cross_compile(&cross_compile_config)?
    };

    Ok(config)
}

// These contains only the limited ABI symbols.
const WINDOWS_STABLE_ABI_LIB_NAME: &str = "python3";
const WINDOWS_STABLE_ABI_DEBUG_LIB_NAME: &str = "python3_d";

/// Generates the default library name for the target platform.
#[allow(dead_code)]
fn default_lib_name_for_target(abi: PythonAbi, target: &Triple) -> String {
    if target.operating_system == OperatingSystem::Windows {
        default_lib_name_windows(abi, false, false).unwrap()
    } else {
        default_lib_name_unix(
            abi,
            target.operating_system == OperatingSystem::Cygwin,
            None,
        )
        .unwrap()
    }
}

fn default_lib_name_windows(abi: PythonAbi, mingw: bool, debug: bool) -> Result<String> {
    // mingw formats lib names like unix, and uses a "lib" prefix. We could let the linker
    // handle "lib" prefix, but that means the `raw-dylib` name is incorrect (where the
    // "lib" prefix is not automatically added).
    if mingw {
        let mut lib_name = default_lib_name_unix(abi, true, None)?;
        lib_name.insert_str(0, "lib");
        return Ok(lib_name);
    }

    if abi.implementation.is_pypy() {
        // PyPy on Windows ships `libpypy3.X-c.dll` (e.g. `libpypy3.11-c.dll`),
        // not CPython's `pythonXY.dll`. With raw-dylib linking we need the real
        // DLL name rather than the import-library alias.
        Ok(format!(
            "libpypy{}.{}-c",
            abi.version.major, abi.version.minor
        ))
    } else if debug && abi.version < PythonVersion::PY310 {
        // CPython bug: linking against python3_d.dll raises error
        // https://github.com/python/cpython/issues/101614
        Ok(format!(
            "python{}{}_d",
            abi.version.major, abi.version.minor
        ))
    } else if abi.kind == PythonAbiKind::Stable(StableAbi::Abi3)
        || abi.kind == PythonAbiKind::Stable(StableAbi::Abi3t)
    {
        let mut lib_name = if debug {
            WINDOWS_STABLE_ABI_DEBUG_LIB_NAME.to_owned()
        } else {
            WINDOWS_STABLE_ABI_LIB_NAME.to_owned()
        };
        if abi.kind == PythonAbiKind::Stable(StableAbi::Abi3t) {
            lib_name = lib_name.replace("python3", "python3t");
        }
        Ok(lib_name)
    } else if abi.kind().is_free_threaded() {
        #[expect(deprecated, reason = "using constant internally")]
        {
            ensure!(abi.version() >= PythonVersion::PY313, "Cannot compile extensions for the free-threaded build on Python versions earlier than 3.13, found {}.{}", abi.version.major, abi.version.minor);
        }
        if debug {
            Ok(format!(
                "python{}{}t_d",
                abi.version.major, abi.version.minor
            ))
        } else {
            Ok(format!("python{}{}t", abi.version.major, abi.version.minor))
        }
    } else if debug {
        Ok(format!(
            "python{}{}_d",
            abi.version.major, abi.version.minor
        ))
    } else {
        Ok(format!("python{}{}", abi.version.major, abi.version.minor))
    }
}

fn default_lib_name_unix(
    abi: PythonAbi,
    use_stable_abi_lib: bool,
    ld_version: Option<&str>,
) -> Result<String> {
    match abi.implementation {
        PythonImplementation::CPython => match ld_version {
            Some(ld_version) => Ok(format!("python{ld_version}")),
            None => match abi.kind {
                PythonAbiKind::Stable(StableAbi::Abi3) if use_stable_abi_lib => {
                    Ok("python3".to_string())
                }
                PythonAbiKind::Stable(StableAbi::Abi3t) if use_stable_abi_lib => {
                    Ok("python3t".to_string())
                }
                _ => {
                    if abi.kind.is_free_threaded() {
                        #[expect(deprecated, reason = "using constant internally")]
                        {
                            ensure!(abi.version >= PythonVersion::PY313, "Cannot compile extensions for the free-threaded build on Python versions earlier than 3.13, found {}.{}", abi.version.major, abi.version.minor);
                        }
                        Ok(format!(
                            "python{}.{}t",
                            abi.version.major, abi.version.minor
                        ))
                    } else {
                        Ok(format!("python{}.{}", abi.version.major, abi.version.minor))
                    }
                }
            },
        },
        PythonImplementation::PyPy => match ld_version {
            Some(ld_version) => Ok(format!("pypy{ld_version}-c")),
            None => Ok(format!("pypy{}.{}-c", abi.version.major, abi.version.minor)),
        },

        PythonImplementation::GraalPy => Ok("python-native".to_string()),
        PythonImplementation::RustPython => Ok("rustpython_capi".to_string()),
    }
}

/// Run a python script using the specified interpreter binary.
fn run_python_script(interpreter: &Path, script: &str) -> Result<String> {
    run_python_script_with_envs(interpreter, script, std::iter::empty::<(&str, &str)>())
}

/// Run a python script using the specified interpreter binary with additional environment
/// variables (e.g. PYTHONPATH) set.
fn run_python_script_with_envs<I, K, V>(interpreter: &Path, script: &str, envs: I) -> Result<String>
where
    I: IntoIterator<Item = (K, V)>,
    K: AsRef<OsStr>,
    V: AsRef<OsStr>,
{
    let out = Command::new(interpreter)
        .env("PYTHONIOENCODING", "utf-8")
        .envs(envs)
        .stdin(Stdio::piped())
        .stdout(Stdio::piped())
        .stderr(Stdio::inherit())
        .spawn()
        .and_then(|mut child| {
            child
                .stdin
                .as_mut()
                .expect("piped stdin")
                .write_all(script.as_bytes())?;
            child.wait_with_output()
        });

    match out {
        Err(err) => bail!(
            "failed to run the Python interpreter at {}: {}",
            interpreter.display(),
            err
        ),
        Ok(ok) if !ok.status.success() => bail!("Python script failed"),
        Ok(ok) => Ok(String::from_utf8(ok.stdout)
            .context("failed to parse Python script output as utf-8")?),
    }
}

fn venv_interpreter(virtual_env: &OsStr, windows: bool) -> PathBuf {
    let venv = Path::new(virtual_env);
    // Rebuild if the virtual environment configuration changes
    println!(
        "cargo:rerun-if-changed={}",
        venv.join("pyvenv.cfg").display()
    );
    if windows {
        venv.join("Scripts").join("python.exe")
    } else {
        venv.join("bin").join("python")
    }
}

fn conda_env_interpreter(conda_prefix: &OsStr, windows: bool) -> PathBuf {
    if windows {
        Path::new(conda_prefix).join("python.exe")
    } else {
        Path::new(conda_prefix).join("bin").join("python")
    }
}

fn get_env_interpreter() -> Option<PathBuf> {
    match (env_var("VIRTUAL_ENV"), env_var("CONDA_PREFIX")) {
        // Use cfg rather than CARGO_CFG_TARGET_OS because this affects where files are located on the
        // build host
        (Some(dir), None) => Some(venv_interpreter(&dir, cfg!(windows))),
        (None, Some(dir)) => Some(conda_env_interpreter(&dir, cfg!(windows))),
        (Some(_), Some(_)) => {
            warn!(
                "Both VIRTUAL_ENV and CONDA_PREFIX are set. PyO3 will ignore both of these for \
                 locating the Python interpreter until you unset one of them."
            );
            None
        }
        (None, None) => None,
    }
}

/// Attempts to locate a python interpreter.
///
/// Locations are checked in the order listed:
///   1. If `PYO3_PYTHON` is set, this interpreter is used.
///   2. If in a virtualenv, that environment's interpreter is used.
///   3. `python`, if this is functional a Python 3.x interpreter
///   4. `python3`, as above
pub fn find_interpreter() -> Result<PathBuf> {
    // Trigger rebuilds when `PYO3_ENVIRONMENT_SIGNATURE` env var value changes
    // See https://github.com/PyO3/pyo3/issues/2724
    println!("cargo:rerun-if-env-changed=PYO3_ENVIRONMENT_SIGNATURE");

    if let Some(exe) = env_var("PYO3_PYTHON") {
        Ok(exe.into())
    } else if let Some(env_interpreter) = get_env_interpreter() {
        Ok(env_interpreter)
    } else {
        println!("cargo:rerun-if-env-changed=PATH");
        ["python", "python3"]
            .iter()
            .find(|bin| {
                if let Ok(out) = Command::new(bin).arg("--version").output() {
                    // begin with `Python 3.X.X :: additional info`
                    out.stdout.starts_with(b"Python 3")
                        || out.stderr.starts_with(b"Python 3")
                        || out.stdout.starts_with(b"GraalPy 3")
                } else {
                    false
                }
            })
            .map(PathBuf::from)
            .ok_or_else(|| "no Python 3.x interpreter found".into())
    }
}

/// Locates and extracts the build host Python interpreter configuration.
///
/// Lowers the configured Python version to `abi3_version` or `abi3t_version` if required.
fn get_host_interpreter(
    abi3_version: Option<StableAbiVersion>,
    abi3t_version: Option<StableAbiVersion>,
) -> Result<InterpreterConfig> {
    let interpreter_path = find_interpreter()?;

    let interpreter_config =
        InterpreterConfig::from_interpreter(interpreter_path, abi3_version, abi3t_version)?;

    Ok(interpreter_config)
}

/// Generates an interpreter config suitable for cross-compilation.
///
/// This must be called from PyO3's build script, because it relies on environment variables such as
/// CARGO_CFG_TARGET_OS which aren't available at any other time.
pub fn make_cross_compile_config(target: &Triple) -> Result<Option<InterpreterConfig>> {
    let interpreter_config =
        if let Some(cross_config) = cross_compiling_from_to(&Triple::host(), target)? {
            Some(load_cross_compile_config(cross_config)?.apply_build_env()?)
        } else {
            None
        };

    Ok(interpreter_config)
}

/// Generates an interpreter config suitable for the build host.
pub fn make_interpreter_config() -> Result<InterpreterConfig> {
    let host = Triple::host();
    let abi3_version = get_abi3_version();
    let abi3t_version = get_abi3t_version();

    // See if we can safely skip the Python interpreter configuration detection.
    // Unix stable ABI extension modules can usually be built without any interpreter.
    let need_interpreter =
        (abi3_version.is_none() && abi3t_version.is_none()) || require_libdir_for_target(&host);

    if have_python_interpreter() {
        match get_host_interpreter(abi3_version, abi3t_version) {
            Ok(interpreter_config) => return Ok(interpreter_config),
            // Bail if the interpreter configuration is required to build.
            Err(e) if need_interpreter => return Err(e),
            _ => {
                // Fall back to the stable ABI just as if `PYO3_NO_PYTHON`
                // environment variable was set.
                warn!("Compiling without a working Python interpreter.");
            }
        }
    }

    let interpreter_config = default_stable_abi_config(
        &host,
        exact_stable_abi_version(abi3_version),
        exact_stable_abi_version(abi3t_version),
    )?;

    Ok(interpreter_config)
}

pub(crate) fn escape(bytes: &[u8]) -> String {
    let mut escaped = String::with_capacity(2 * bytes.len());

    for byte in bytes {
        const LUT: &[u8; 16] = b"0123456789abcdef";

        escaped.push(LUT[(byte >> 4) as usize] as char);
        escaped.push(LUT[(byte & 0x0F) as usize] as char);
    }

    escaped
}

fn unescape(escaped: &str) -> Vec<u8> {
    assert_eq!(escaped.len() % 2, 0, "invalid hex encoding");

    let mut bytes = Vec::with_capacity(escaped.len() / 2);

    for chunk in escaped.as_bytes().chunks_exact(2) {
        fn unhex(hex: u8) -> u8 {
            match hex {
                b'a'..=b'f' => hex - b'a' + 10,
                b'0'..=b'9' => hex - b'0',
                _ => panic!("invalid hex encoding"),
            }
        }

        bytes.push((unhex(chunk[0]) << 4) | unhex(chunk[1]));
    }

    bytes
}

#[cfg(test)]
// can remove this expect when fields are private
#[expect(deprecated, reason = "accessing config fields directly for testing")]
mod tests {
    use target_lexicon::triple;

    use super::*;

    #[test]
    fn test_config_file_roundtrip() {
        let implementation = PythonImplementation::CPython;
        let version = MINIMUM_SUPPORTED_VERSION;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .pointer_width(32)
            .executable("executable".to_string())
            .lib_dir("lib_name".to_string())
            .lib_name("lib_name".to_string())
            .extra_build_script_lines(vec!["cargo:test1".to_string(), "cargo:test2".to_string()])
            .finalize()
            .unwrap();
        let mut buf: Vec<u8> = Vec::new();
        config.to_writer(&mut buf).unwrap();

        assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());

        // And some different options, for variety
        let version = PythonVersion::PY310;
        let implementation = PythonImplementation::PyPy;
        let build_flags = {
            let mut flags = HashSet::new();
            flags.insert(BuildFlag::Py_DEBUG);
            flags.insert(BuildFlag::Other(String::from("Py_SOME_FLAG")));
            BuildFlags(flags)
        };
        let config = InterpreterConfigBuilder::new(implementation, version)
            .build_flags(build_flags)
            .finalize()
            .unwrap();

        let mut buf: Vec<u8> = Vec::new();
        config.to_writer(&mut buf).unwrap();

        assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());
    }

    #[test]
    fn test_config_file_roundtrip_with_escaping() {
        let implementation = PythonImplementation::CPython;
        let version = MINIMUM_SUPPORTED_VERSION;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .pointer_width(32)
            .executable("executable".to_string())
            .lib_name("lib_name".to_string())
            .lib_dir("lib_dir\\n".to_string())
            .extra_build_script_lines(vec!["cargo:test1".to_string(), "cargo:test2".to_string()])
            .finalize()
            .unwrap();
        let mut buf: Vec<u8> = Vec::new();
        config.to_writer(&mut buf).unwrap();

        let buf = unescape(&escape(&buf));

        assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());
    }

    #[test]
    fn test_config_file_defaults() {
        // Only version is required
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        assert_eq!(
            InterpreterConfig::from_reader("version=3.8".as_bytes()).unwrap(),
            InterpreterConfigBuilder::new(implementation, version,)
                .finalize()
                .unwrap()
        )
    }

    #[test]
    fn test_config_file_unknown_keys() {
        // ext_suffix is unknown to pyo3-build-config, but it shouldn't error
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        assert_eq!(
            InterpreterConfig::from_reader("version=3.8\next_suffix=.python38.so".as_bytes())
                .unwrap(),
            InterpreterConfigBuilder::new(implementation, version,)
                .finalize()
                .unwrap()
        )
    }

    #[test]
    fn test_config_file_invalid_keys() {
        assert!(
            InterpreterConfig::from_reader("version=3.14\ntarget_abi=foo-bar-baz".as_bytes())
                .is_err()
        );
        assert!(InterpreterConfig::from_reader(
            "version=3.14\ntarget_abi=CPython-bar-baz".as_bytes()
        )
        .is_err());
        assert!(InterpreterConfig::from_reader(
            "version=3.14\ntarget_abi=CPython-abi3-baz".as_bytes()
        )
        .is_err());
    }

    #[test]
    fn gil_disabled_config_file_corner_cases() {
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY313;
        // Legacy: build_flags=Py_GIL_DISABLED with no target_abi infers free-threaded.
        assert_eq!(
            InterpreterConfig::from_reader("version=3.13\nbuild_flags=Py_GIL_DISABLED".as_bytes())
                .unwrap(),
            InterpreterConfigBuilder::new(implementation, version)
                .free_threaded()
                .unwrap()
                .finalize()
                .unwrap()
        );
        // Canonical: target_abi=free_threaded.
        assert_eq!(
            InterpreterConfig::from_reader(
                "version=3.13\ntarget_abi=CPython-free_threaded-3.13".as_bytes()
            )
            .unwrap(),
            InterpreterConfigBuilder::new(implementation, version)
                .free_threaded()
                .unwrap()
                .finalize()
                .unwrap()
        );
        // target_abi=gil_enabled with build_flags=Py_GIL_DISABLED is inconsistent and rejected.
        assert!(InterpreterConfig::from_reader(
            "version=3.13\ntarget_abi=CPython-gil_enabled-3.13\nbuild_flags=Py_GIL_DISABLED"
                .as_bytes()
        )
        .is_err());
        // build_flags=Py_GIL_DISABLED on a builder without target_abi is ok
        let mut flags = BuildFlags::default();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        assert!(InterpreterConfigBuilder::new(implementation, version)
            .build_flags(flags)
            .finalize()
            .unwrap()
            .target_abi
            .kind
            .is_free_threaded());

        let mut flags = BuildFlags::default();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        assert!(
            InterpreterConfigBuilder::new(implementation, PythonVersion::PY312)
                .build_flags(flags)
                .finalize()
                .is_err()
        );

        let mut flags = BuildFlags::default();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        assert!(
            InterpreterConfigBuilder::new(implementation, PythonVersion::PY312)
                .stable_abi(StableAbi::Abi3)
                .build_flags(flags)
                .finalize()
                .is_err()
        );

        assert!(
            InterpreterConfigBuilder::new(implementation, PythonVersion::PY38)
                .free_threaded()
                .is_err()
        );
    }

    #[test]
    fn abi3_from_old_config_file() {
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY313;
        assert_eq!(
            InterpreterConfig::from_reader("version=3.13\nabi3=true".as_bytes()).unwrap(),
            InterpreterConfigBuilder::new(implementation, version)
                .stable_abi(StableAbi::Abi3)
                .finalize()
                .unwrap()
        );
    }

    #[test]
    fn test_target_abi_and_abi3() {
        assert!(InterpreterConfig::from_reader(
            "version=3.13\nabi3=true\ntarget_abi=CPython-abi3-3.13".as_bytes()
        )
        .unwrap_err()
        .to_string()
        .contains("Invalid config"),);
    }

    #[test]
    fn build_flags_default() {
        assert_eq!(BuildFlags::default(), BuildFlags::new());
    }

    #[test]
    fn build_flags_from_sysconfigdata() {
        let mut sysconfigdata = Sysconfigdata::new();

        assert_eq!(
            BuildFlags::from_sysconfigdata(&sysconfigdata).0,
            HashSet::new()
        );

        for flag in &BuildFlags::ALL {
            sysconfigdata.insert(flag.to_string(), "0".into());
        }

        assert_eq!(
            BuildFlags::from_sysconfigdata(&sysconfigdata).0,
            HashSet::new()
        );

        let mut expected_flags = HashSet::new();
        for flag in &BuildFlags::ALL {
            sysconfigdata.insert(flag.to_string(), "1".into());
            expected_flags.insert(flag.clone());
        }

        assert_eq!(
            BuildFlags::from_sysconfigdata(&sysconfigdata).0,
            expected_flags
        );
    }

    #[test]
    fn build_flags_fixup() {
        let mut build_flags = BuildFlags::new();

        build_flags = build_flags.fixup();
        assert!(build_flags.0.is_empty());

        build_flags.0.insert(BuildFlag::Py_DEBUG);

        build_flags = build_flags.fixup();

        // Py_DEBUG implies Py_REF_DEBUG
        assert!(build_flags.0.contains(&BuildFlag::Py_REF_DEBUG));
    }

    #[test]
    fn parse_script_output() {
        let output = "foo bar\nbar foobar\n\n";
        let map = super::parse_script_output(output);
        assert_eq!(map.len(), 2);
        assert_eq!(map["foo"], "bar");
        assert_eq!(map["bar"], "foobar");
    }

    #[test]
    fn config_from_interpreter() {
        // Smoke test to just see whether this works
        //
        // PyO3's CI is dependent on Python being installed, so this should be reliable.
        assert!(make_interpreter_config().is_ok())
    }

    #[test]
    fn config_from_empty_sysconfigdata() {
        let sysconfigdata = Sysconfigdata::new();
        assert!(InterpreterConfig::from_sysconfigdata(&sysconfigdata).is_err());
    }

    #[test]
    fn config_from_sysconfigdata() {
        let mut sysconfigdata = Sysconfigdata::new();
        // these are the minimal values required such that InterpreterConfig::from_sysconfigdata
        // does not error
        sysconfigdata.insert("SOABI", "cpython-38-x86_64-linux-gnu");
        sysconfigdata.insert("VERSION", "3.8");
        sysconfigdata.insert("Py_ENABLE_SHARED", "1");
        sysconfigdata.insert("LIBDIR", "/usr/lib");
        sysconfigdata.insert("LDVERSION", "3.8");
        sysconfigdata.insert("SIZEOF_VOID_P", "8");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        assert_eq!(
            InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
            InterpreterConfigBuilder::new(implementation, version,)
                .build_flags(BuildFlags::from_sysconfigdata(&sysconfigdata))
                .lib_dir("/usr/lib".to_string())
                .lib_name("python3.8".to_string())
                .pointer_width(64)
                .finalize()
                .unwrap()
        );
    }

    #[test]
    fn config_from_sysconfigdata_framework() {
        let mut sysconfigdata = Sysconfigdata::new();
        sysconfigdata.insert("SOABI", "cpython-38-x86_64-linux-gnu");
        sysconfigdata.insert("VERSION", "3.8");
        // PYTHONFRAMEWORK should override Py_ENABLE_SHARED
        sysconfigdata.insert("Py_ENABLE_SHARED", "0");
        sysconfigdata.insert("PYTHONFRAMEWORK", "Python");
        sysconfigdata.insert("LIBDIR", "/usr/lib");
        sysconfigdata.insert("LDVERSION", "3.8");
        sysconfigdata.insert("SIZEOF_VOID_P", "8");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        assert_eq!(
            InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
            InterpreterConfigBuilder::new(implementation, version,)
                .build_flags(BuildFlags::from_sysconfigdata(&sysconfigdata))
                .lib_dir("/usr/lib".to_string())
                .lib_name("python3.8".to_string())
                .pointer_width(64)
                .finalize()
                .unwrap()
        );

        sysconfigdata = Sysconfigdata::new();
        sysconfigdata.insert("SOABI", "cpython-38-x86_64-linux-gnu");
        sysconfigdata.insert("VERSION", "3.8");
        // An empty PYTHONFRAMEWORK means it is not a framework
        sysconfigdata.insert("Py_ENABLE_SHARED", "0");
        sysconfigdata.insert("PYTHONFRAMEWORK", "");
        sysconfigdata.insert("LIBDIR", "/usr/lib");
        sysconfigdata.insert("LDVERSION", "3.8");
        sysconfigdata.insert("SIZEOF_VOID_P", "8");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        assert_eq!(
            InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
            InterpreterConfigBuilder::new(implementation, version,)
                .build_flags(BuildFlags::from_sysconfigdata(&sysconfigdata))
                .lib_dir("/usr/lib".to_string())
                .lib_name("python3.8".to_string())
                .pointer_width(64)
                .shared(false)
                .finalize()
                .unwrap()
        );
    }

    #[test]
    fn windows_hardcoded_abi3_compile() {
        let host = triple!("x86_64-pc-windows-msvc");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .lib_name("python3".to_string())
            .finalize()
            .unwrap();
        assert_eq!(
            default_stable_abi_config(&host, Some(version), None).unwrap(),
            config
        );
    }

    #[test]
    fn windows_hardcoded_abi3t_compile() {
        let host = triple!("x86_64-pc-windows-msvc");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY315;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3t)
            .lib_name("python3t".to_string())
            .finalize()
            .unwrap();
        assert_eq!(
            default_stable_abi_config(&host, None, Some(version)).unwrap(),
            config
        );
    }

    #[test]
    fn unix_hardcoded_abi3_compile() {
        let host = triple!("x86_64-unknown-linux-gnu");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY39;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();
        assert_eq!(
            default_stable_abi_config(&host, Some(version), None).unwrap(),
            config
        );
    }

    #[test]
    fn unix_hardcoded_abi3t_compile() {
        let host = triple!("x86_64-unknown-linux-gnu");
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY315;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3t)
            .finalize()
            .unwrap();
        assert_eq!(
            default_stable_abi_config(&host, None, Some(version)).unwrap(),
            config
        );
    }

    #[test]
    fn default_stable_abi_config_corner_cases() {
        let host = triple!("x86_64-unknown-linux-gnu");
        let py315 = Some("3.15".parse().unwrap());
        let py39 = Some("3.9".parse().unwrap());
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY39;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();
        assert_eq!(
            default_stable_abi_config(&host, py39, py315).unwrap(),
            config
        );
        assert!(default_stable_abi_config(&host, None, py39).is_err());
    }

    #[test]
    fn windows_hardcoded_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: Some("C:\\some\\path".into()),
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.8".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("i686-pc-windows-msvc");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .lib_name("python38".to_string())
            .lib_dir("C:\\some\\path".to_string())
            .finalize()
            .unwrap();
        assert_eq!(default_cross_compile(&cross_config).unwrap(), config);
    }

    #[test]
    fn mingw_hardcoded_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: Some("/usr/lib/mingw".into()),
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.8".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("i686-pc-windows-gnu");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .lib_name("python38".to_string())
            .lib_dir("/usr/lib/mingw".to_string())
            .finalize()
            .unwrap();
        assert_eq!(default_cross_compile(&cross_config).unwrap(), config);
    }

    #[test]
    fn unix_hardcoded_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: Some("/usr/arm64/lib".into()),
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.9".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("aarch64-unknown-linux-gnu");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY39;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .lib_name("python3.9".to_string())
            .lib_dir("/usr/arm64/lib".to_string())
            .finalize()
            .unwrap();
        assert_eq!(default_cross_compile(&cross_config).unwrap(), config);
    }

    #[test]
    fn pypy_hardcoded_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_implementation: Some("PyPy".into()),
            pyo3_cross_python_version: Some("3.11".into()),
        };

        let triple = triple!("x86_64-unknown-linux-gnu");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &triple, &triple)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::PyPy;
        let version = PythonVersion::PY311;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .lib_name("pypy3.11-c".to_string())
            .finalize()
            .unwrap();
        assert_eq!(default_cross_compile(&cross_config).unwrap(), config);
    }

    // 3.14t cross-compile must produce a version-specific free-threaded ABI:
    // 3.14 is below MINIMUM_SUPPORTED_VERSION_ABI3T (3.15) so abi3t is unavailable,
    // and the free-threaded build does not support abi3 either.
    #[test]
    fn unix_free_threaded_pre_315_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.14t".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("aarch64-unknown-linux-gnu");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY314;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .free_threaded()
            .unwrap()
            .lib_name("python3.14t".to_string())
            .finalize()
            .unwrap();
        let result = default_cross_compile(&cross_config).unwrap();
        assert_eq!(result, config);
        assert_eq!(
            result.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)
        );
    }

    #[test]
    fn windows_free_threaded_pre_315_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.14t".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("x86_64-pc-windows-msvc");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY314;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .free_threaded()
            .unwrap()
            .lib_name("python314t".to_string())
            .finalize()
            .unwrap();
        let result = default_cross_compile(&cross_config).unwrap();
        assert_eq!(result, config);
        assert_eq!(
            result.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)
        );
    }

    // PYO3_CROSS_PYTHON_VERSION=3.15t with no abi3t-py3* feature active still
    // produces a version-specific free-threaded ABI rather than abi3t.
    #[test]
    fn unix_free_threaded_315_cross_compile() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_implementation: None,
            pyo3_cross_python_version: Some("3.15t".into()),
        };

        let host = triple!("x86_64-unknown-linux-gnu");
        let target = triple!("aarch64-unknown-linux-gnu");
        let cross_config =
            CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
                .unwrap()
                .unwrap();

        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY315;
        let config = InterpreterConfigBuilder::new(implementation, version)
            .free_threaded()
            .unwrap()
            .lib_name("python3.15t".to_string())
            .finalize()
            .unwrap();
        let result = default_cross_compile(&cross_config).unwrap();
        assert_eq!(result, config);
        assert_eq!(
            result.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)
        );
    }

    #[test]
    fn default_lib_name_windows() {
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "python39",
        );
        // free-threaded Python 3.9 builds should be impossible
        assert!(
            PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                .free_threaded()
                .finalize()
                .is_err()
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "python3",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .finalize()
                    .unwrap(),
                true,
                false,
            )
            .unwrap(),
            "libpython3.9",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                true,
                false,
            )
            .unwrap(),
            "libpython3",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::PyPy, PythonVersion::PY39)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "libpypy3.9-c",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::PyPy, PythonVersion::PY311)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "libpypy3.11-c",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY310)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                true,
            )
            .unwrap(),
            "python3_d",
        );
        // abi3 debug builds on windows use version-specific lib on 3.9 and older
        // to workaround https://github.com/python/cpython/issues/101614
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                true,
            )
            .unwrap(),
            "python39_d",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY310)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                false,
                true,
            )
            .unwrap(),
            "python3_d",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY313)
                    .free_threaded()
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "python313t",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY313)
                    .free_threaded()
                    .finalize()
                    .unwrap(),
                false,
                true,
            )
            .unwrap(),
            "python313t_d",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY315)
                    .stable_abi(StableAbi::Abi3t)
                    .finalize()
                    .unwrap(),
                false,
                false,
            )
            .unwrap(),
            "python3t",
        );
        assert_eq!(
            super::default_lib_name_windows(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY315)
                    .stable_abi(StableAbi::Abi3t)
                    .finalize()
                    .unwrap(),
                false,
                true,
            )
            .unwrap(),
            "python3t_d",
        );
    }

    #[test]
    fn default_lib_name_unix() {
        // Defaults to pythonX.Y for CPython 3.8+
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY38)
                    .finalize()
                    .unwrap(),
                false,
                None,
            )
            .unwrap(),
            "python3.8",
        );
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .finalize()
                    .unwrap(),
                false,
                None,
            )
            .unwrap(),
            "python3.9",
        );
        // Can use ldversion to override for CPython
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
                    .finalize()
                    .unwrap(),
                false,
                Some("3.8d"),
            )
            .unwrap(),
            "python3.8d",
        );

        // PyPy 3.11 includes ldversion
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::PyPy, PythonVersion::PY311)
                    .finalize()
                    .unwrap(),
                false,
                None,
            )
            .unwrap(),
            "pypy3.11-c",
        );

        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::PyPy, PythonVersion::PY39)
                    .finalize()
                    .unwrap(),
                false,
                Some("3.11d"),
            )
            .unwrap(),
            "pypy3.11d-c",
        );

        // free-threading adds a t suffix
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY313)
                    .free_threaded()
                    .finalize()
                    .unwrap(),
                false,
                None,
            )
            .unwrap(),
            "python3.13t",
        );
        // cygwin abi3 links to unversioned libpython
        assert_eq!(
            super::default_lib_name_unix(
                PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY313)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
                true,
                None,
            )
            .unwrap(),
            "python3",
        );
    }

    #[test]
    fn abi_builder_error_paths() {
        let builder = PythonAbiBuilder::new(PythonImplementation::CPython, PythonVersion::PY39)
            .free_threaded()
            .finalize();

        assert!(builder.is_err());
        assert!(builder.unwrap_err().to_string().contains("Cannot target"));

        assert_eq!(
            PythonAbiBuilder::new(
                PythonImplementation::CPython,
                PythonVersion {
                    major: 3,
                    minor: 16,
                },
            )
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap()
            .version
            .minor,
            STABLE_ABI_MAX_MINOR
        );

        assert!("invalid".parse::<PythonAbi>().is_err());
        assert!("CPython-invalid".parse::<PythonAbi>().is_err());
        assert!("CPython-free_threaded-invalid"
            .parse::<PythonAbi>()
            .is_err());

        let builder = PythonAbiBuilder::new(PythonImplementation::RustPython, PythonVersion::PY315)
            .free_threaded();
        let res = builder.finalize();

        assert!(res.is_err());
        assert!(res
            .unwrap_err()
            .to_string()
            .contains("RustPython only supports targeting abi3t"));
    }

    #[test]
    fn parse_cross_python_version() {
        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_version: Some("3.9".into()),
            pyo3_cross_python_implementation: None,
        };

        assert_eq!(
            env_vars.parse_version().unwrap(),
            (Some(PythonVersion { major: 3, minor: 9 }), None),
        );

        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_version: None,
            pyo3_cross_python_implementation: None,
        };

        assert_eq!(env_vars.parse_version().unwrap(), (None, None));

        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_version: Some("3.13t".into()),
            pyo3_cross_python_implementation: None,
        };

        assert_eq!(
            env_vars.parse_version().unwrap(),
            (
                Some(PythonVersion {
                    major: 3,
                    minor: 13
                }),
                Some("t".into())
            ),
        );

        let env_vars = CrossCompileEnvVars {
            pyo3_cross: None,
            pyo3_cross_lib_dir: None,
            pyo3_cross_python_version: Some("100".into()),
            pyo3_cross_python_implementation: None,
        };

        assert!(env_vars.parse_version().is_err());
    }

    #[test]
    fn target_abi3_version_different_from_host() {
        let implementation = PythonImplementation::CPython;
        let host_version = PythonVersion::PY39;
        let target_version = PythonVersion::PY38;
        let config = InterpreterConfigBuilder::new(implementation, host_version)
            .target_abi(
                PythonAbiBuilder::new(implementation, target_version)
                    .stable_abi(StableAbi::Abi3)
                    .finalize()
                    .unwrap(),
            )
            .finalize()
            .unwrap();
        assert_eq!(config.target_abi.version(), target_version);
        assert_eq!(config.version, host_version);
    }

    #[test]
    fn stable_abi_applicability() {
        use PythonImplementation::*;
        let abi3 = Some(StableAbiVersion::Target(PythonVersion::PY310));
        let abi3t = Some(StableAbiVersion::Target(PythonVersion::PY315));

        // 3.14t cannot target any stable ABI, so the features are ignored
        // rather than raising an error
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY314, true, abi3, abi3t),
            None
        );
        // GIL-enabled below 3.15: only abi3 applies
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY314, false, abi3, abi3t),
            Some((StableAbi::Abi3, PythonVersion::PY310))
        );
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY314, false, None, abi3t),
            None
        );
        // 3.15+ GIL-enabled: abi3t preferred over abi3
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY315, false, abi3, abi3t),
            Some((StableAbi::Abi3t, PythonVersion::PY315))
        );
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY315, false, abi3, None),
            Some((StableAbi::Abi3, PythonVersion::PY310))
        );
        // 3.15+ free-threaded: only abi3t applies
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY315, true, abi3, abi3t),
            Some((StableAbi::Abi3t, PythonVersion::PY315))
        );
        assert_eq!(
            applicable_stable_abi(CPython, PythonVersion::PY315, true, abi3, None),
            None
        );
        // a bare abi3/abi3t feature resolves to the interpreter version
        assert_eq!(
            applicable_stable_abi(
                CPython,
                PythonVersion::PY314,
                false,
                Some(StableAbiVersion::Current),
                None
            ),
            Some((StableAbi::Abi3, PythonVersion::PY314))
        );
        assert_eq!(
            applicable_stable_abi(
                CPython,
                PythonVersion::PY315,
                true,
                None,
                Some(StableAbiVersion::Current)
            ),
            Some((StableAbi::Abi3t, PythonVersion::PY315))
        );
        // PyPy and GraalPy: the kind applies but the version is never lowered
        assert_eq!(
            applicable_stable_abi(PyPy, PythonVersion::PY311, false, abi3, abi3t),
            Some((StableAbi::Abi3, PythonVersion::PY311))
        );
        assert_eq!(
            applicable_stable_abi(GraalPy, PythonVersion::PY311, false, abi3, abi3t),
            Some((StableAbi::Abi3, PythonVersion::PY311))
        );
        assert_eq!(
            applicable_stable_abi(PyPy, PythonVersion::PY311, false, None, abi3t),
            None
        );
    }

    #[test]
    fn apply_build_env_preserves_target_implementation() {
        // the host `implementation` may differ from the `target_abi`
        // implementation; recomputing the target ABI from the build
        // environment must not switch it to the host's
        let config = InterpreterConfig::from_reader(
            "implementation=CPython\nversion=3.11\ntarget_abi=PyPy-gil_enabled-3.11".as_bytes(),
        )
        .unwrap()
        .apply_build_env()
        .unwrap();
        assert_eq!(
            config.target_abi.implementation(),
            PythonImplementation::PyPy
        );
        assert_eq!(
            config.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::GilEnabled)
        );
        assert_eq!(config.target_abi.version(), PythonVersion::PY311);
    }

    #[test]
    fn python_abi_from_stable_abi() {
        let implementation = PythonImplementation::CPython;

        // no stable ABI: version-specific, free-threaded per gil_disabled
        let abi =
            PythonAbi::from_stable_abi(implementation, PythonVersion::PY314, None, true).unwrap();
        assert_eq!(
            abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)
        );
        assert_eq!(abi.version(), PythonVersion::PY314);

        let abi =
            PythonAbi::from_stable_abi(implementation, PythonVersion::PY314, None, false).unwrap();
        assert_eq!(
            abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::GilEnabled)
        );

        // stable ABI: targets the minimum version
        let abi = PythonAbi::from_stable_abi(
            implementation,
            PythonVersion::PY314,
            Some((StableAbi::Abi3, PythonVersion::PY310)),
            false,
        )
        .unwrap();
        assert_eq!(abi.kind(), PythonAbiKind::Stable(StableAbi::Abi3));
        assert_eq!(abi.version(), PythonVersion::PY310);

        // a minimum above the interpreter version errors, naming the right feature
        let error = PythonAbi::from_stable_abi(
            implementation,
            PythonVersion::PY314,
            Some((StableAbi::Abi3t, PythonVersion::PY315)),
            true,
        )
        .unwrap_err();
        assert!(error.to_string().contains(
            "cannot set a minimum Python version 3.15 higher than the interpreter version 3.14 \
             (the minimum Python version is implied by the abi3t-py315 feature)"
        ));
    }

    #[test]
    fn config_file_applies_build_env() {
        // no abi3/abi3t cargo features are set when running tests, so
        // apply_build_env preserves the version-specific target ABI
        let config = InterpreterConfig::from_reader(
            "version=3.14\ntarget_abi=CPython-free_threaded-3.14\nbuild_flags=Py_GIL_DISABLED"
                .as_bytes(),
        )
        .unwrap()
        .apply_build_env()
        .unwrap();
        assert_eq!(
            config.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded)
        );
        assert_eq!(config.target_abi.version(), PythonVersion::PY314);

        // a stable ABI recorded in the config file is recomputed from the
        // (unset) features, so the result is version-specific
        let config =
            InterpreterConfig::from_reader("version=3.12\ntarget_abi=CPython-abi3-3.10".as_bytes())
                .unwrap()
                .apply_build_env()
                .unwrap();
        assert_eq!(
            config.target_abi.kind(),
            PythonAbiKind::VersionSpecific(GilUsed::GilEnabled)
        );
        assert_eq!(config.target_abi.version(), PythonVersion::PY312);
    }

    #[test]
    fn abi3_version_cannot_be_higher_than_interpreter() {
        if !have_python_interpreter() {
            return;
        }

        let host_interpreter = get_host_interpreter(None, None).unwrap();
        let host_version = host_interpreter.version;
        let host_free_threaded = host_interpreter.target_abi.kind.is_free_threaded();

        // skip these tests on 3.14t, pypy, and graalpy because they don't support any stable ABI
        if matches!(
            host_interpreter.implementation,
            PythonImplementation::PyPy | PythonImplementation::GraalPy
        ) || ((host_version == PythonVersion::PY314) && host_free_threaded)
        {
            return;
        }

        let interpreter = get_host_interpreter(
            Some(StableAbiVersion::Target(PythonVersion {
                major: 3,
                minor: 45,
            })),
            None,
        );
        if !host_free_threaded {
            assert!(interpreter.unwrap_err().to_string().contains(
                "cannot set a minimum Python version 3.45 higher than the interpreter version"
            ));
            if host_version >= PythonVersion::PY313 {
                let interpreter = get_host_interpreter(
                    Some(StableAbiVersion::Target(PythonVersion::PY313)),
                    None,
                );
                assert_eq!(
                    interpreter.unwrap().target_abi.version(),
                    PythonVersion::PY313
                );
            }
        }

        // If both features abi3 and abi3t features are active, the feature that "wins" depends on the host Python version
        if host_version >= PythonVersion::PY313 {
            let interpreter = get_host_interpreter(
                Some(StableAbiVersion::Target(PythonVersion::PY313)),
                Some(StableAbiVersion::Target(PythonVersion::PY315)),
            )
            .unwrap();
            assert_eq!(
                interpreter.target_abi.version(),
                if host_version >= PythonVersion::PY315 {
                    PythonVersion::PY315
                } else {
                    PythonVersion::PY313
                }
            );
        }
    }

    #[test]
    #[cfg(all(target_os = "linux", target_arch = "x86_64",))]
    fn parse_sysconfigdata() {
        // A best effort attempt to get test coverage for the sysconfigdata parsing.
        // Might not complete successfully depending on host installation; that's ok as long as
        // CI demonstrates this path is covered!

        let Ok(interpreter_config) = make_interpreter_config() else {
            // Couldn't get an interpreter config, won't be able to test a matching sysconfigdata,
            // never mind. (This is intended for coverage, don't mind if it fails if it doesn't run.)
            return;
        };

        let lib_dir = match &interpreter_config.lib_dir {
            Some(lib_dir) => Path::new(lib_dir),
            // Don't know where to search for sysconfigdata; never mind.
            None => return,
        };

        let cross = CrossCompileConfig {
            lib_dir: Some(lib_dir.into()),
            version: Some(interpreter_config.version),
            implementation: Some(interpreter_config.implementation),
            target: triple!("x86_64-unknown-linux-gnu"),
            abiflags: if interpreter_config.target_abi.kind().is_free_threaded() {
                Some("t".into())
            } else {
                None
            },
        };

        let sysconfigdata_path = match find_sysconfigdata(&cross) {
            Ok(Some(path)) => path,
            // Couldn't find a matching sysconfigdata; never mind!
            _ => return,
        };
        let sysconfigdata = super::parse_sysconfigdata(sysconfigdata_path).unwrap();
        let mut parsed_config = InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap();

        // Workaround case where empty `PYTHONFRAMEWORKPREFIX` is returned as empty string instead of None,
        // which causes the assert_eq! below to fail.
        //
        // TODO: probably should deprecate using this variable at all, seemingly only used in `add_python_framework_link_args`
        // which is probably a strictly worse version of `add_libpython_rpath_link_args`.
        if parsed_config.python_framework_prefix.as_deref() == Some("") {
            parsed_config.python_framework_prefix = None;
        }

        assert_eq!(parsed_config.implementation, PythonImplementation::CPython);
        assert_eq!(
            parsed_config,
            InterpreterConfigBuilder::new(
                interpreter_config.implementation,
                interpreter_config.version,
            )
            .build_flags(interpreter_config.build_flags().clone())
            .pointer_width(64)
            .lib_dir(interpreter_config.lib_dir().map(str::to_owned))
            .lib_name(interpreter_config.lib_name().map(str::to_owned))
            .finalize()
            .unwrap()
        )
    }

    #[test]
    fn test_venv_interpreter() {
        let base = OsStr::new("base");
        assert_eq!(
            venv_interpreter(base, true),
            PathBuf::from_iter(&["base", "Scripts", "python.exe"])
        );
        assert_eq!(
            venv_interpreter(base, false),
            PathBuf::from_iter(&["base", "bin", "python"])
        );
    }

    #[test]
    fn test_conda_env_interpreter() {
        let base = OsStr::new("base");
        assert_eq!(
            conda_env_interpreter(base, true),
            PathBuf::from_iter(&["base", "python.exe"])
        );
        assert_eq!(
            conda_env_interpreter(base, false),
            PathBuf::from_iter(&["base", "bin", "python"])
        );
    }

    #[test]
    fn test_not_cross_compiling_from_to() {
        assert!(cross_compiling_from_to(
            &triple!("x86_64-unknown-linux-gnu"),
            &triple!("x86_64-unknown-linux-gnu"),
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("x86_64-apple-darwin"),
            &triple!("x86_64-apple-darwin")
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("aarch64-apple-darwin"),
            &triple!("x86_64-apple-darwin")
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("x86_64-apple-darwin"),
            &triple!("aarch64-apple-darwin")
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("x86_64-pc-windows-msvc"),
            &triple!("i686-pc-windows-msvc")
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("x86_64-unknown-linux-gnu"),
            &triple!("x86_64-unknown-linux-musl")
        )
        .unwrap()
        .is_none());

        assert!(cross_compiling_from_to(
            &triple!("x86_64-pc-windows-msvc"),
            &triple!("x86_64-win7-windows-msvc"),
        )
        .unwrap()
        .is_none());
    }

    #[test]
    fn test_is_cross_compiling_from_to() {
        assert!(cross_compiling_from_to(
            &triple!("x86_64-pc-windows-msvc"),
            &triple!("aarch64-pc-windows-msvc")
        )
        .unwrap()
        .is_some());
    }

    #[test]
    fn test_run_python_script() {
        // as above, this should be okay in CI where Python is presumed installed
        let interpreter = make_interpreter_config()
            .expect("could not get InterpreterConfig from installed interpreter");
        let out = interpreter
            .run_python_script("print(2 + 2)")
            .expect("failed to run Python script");
        assert_eq!(out.trim_end(), "4");
    }

    #[test]
    fn test_run_python_script_with_envs() {
        // as above, this should be okay in CI where Python is presumed installed
        let interpreter = make_interpreter_config()
            .expect("could not get InterpreterConfig from installed interpreter");
        let out = interpreter
            .run_python_script_with_envs(
                "import os; print(os.getenv('PYO3_TEST'))",
                vec![("PYO3_TEST", "42")],
            )
            .expect("failed to run Python script");
        assert_eq!(out.trim_end(), "42");
    }

    #[test]
    fn test_build_script_outputs_base() {
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY311;
        let interpreter_config = InterpreterConfigBuilder::new(implementation, version)
            .finalize()
            .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_3_10".to_owned(),
                "cargo:rustc-cfg=Py_3_11".to_owned(),
            ]
        );

        let interpreter_config = InterpreterConfigBuilder::new(PythonImplementation::PyPy, version)
            .finalize()
            .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_3_10".to_owned(),
                "cargo:rustc-cfg=Py_3_11".to_owned(),
                "cargo:rustc-cfg=PyPy".to_owned(),
            ]
        );

        let interpreter_config =
            InterpreterConfigBuilder::new(PythonImplementation::RustPython, version)
                .finalize()
                .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_3_10".to_owned(),
                "cargo:rustc-cfg=Py_3_11".to_owned(),
                "cargo:rustc-cfg=RustPython".to_owned(),
                "cargo:rustc-cfg=Py_LIMITED_API".to_owned(),
                "cargo:rustc-cfg=Py_GIL_DISABLED".to_owned(),
            ]
        );
    }

    #[test]
    fn test_build_script_outputs_abi3() {
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY39;
        let interpreter_config = InterpreterConfigBuilder::new(implementation, version)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();

        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_LIMITED_API".to_owned(),
            ]
        );

        let interpreter_config = InterpreterConfigBuilder::new(PythonImplementation::PyPy, version)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=PyPy".to_owned(),
                "cargo:rustc-cfg=Py_LIMITED_API".to_owned(),
            ]
        );

        let interpreter_config =
            InterpreterConfigBuilder::new(PythonImplementation::CPython, PythonVersion::PY315)
                .stable_abi(StableAbi::Abi3)
                .finalize()
                .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_3_10".to_owned(),
                "cargo:rustc-cfg=Py_3_11".to_owned(),
                "cargo:rustc-cfg=Py_3_12".to_owned(),
                "cargo:rustc-cfg=Py_3_13".to_owned(),
                "cargo:rustc-cfg=Py_3_14".to_owned(),
                "cargo:rustc-cfg=Py_3_15".to_owned(),
                "cargo:rustc-cfg=Py_LIMITED_API".to_owned(),
            ]
        );
    }

    #[test]
    fn test_build_script_outputs_gil_disabled() {
        let interpreter_config =
            InterpreterConfigBuilder::new(PythonImplementation::CPython, PythonVersion::PY313)
                .free_threaded()
                .unwrap()
                .finalize()
                .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=Py_3_9".to_owned(),
                "cargo:rustc-cfg=Py_3_10".to_owned(),
                "cargo:rustc-cfg=Py_3_11".to_owned(),
                "cargo:rustc-cfg=Py_3_12".to_owned(),
                "cargo:rustc-cfg=Py_3_13".to_owned(),
                "cargo:rustc-cfg=Py_GIL_DISABLED".to_owned(),
            ]
        );
    }

    #[test]
    fn test_interpreter_config_builder_gil_disabled_flag() {
        let builder = InterpreterConfigBuilder::new(
            PythonImplementation::CPython,
            PythonVersion {
                major: 3,
                minor: 14,
            },
        );
        let mut flags = BuildFlags::new();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        let config = builder
            .stable_abi(StableAbi::Abi3)
            .build_flags(flags)
            .finalize()
            .unwrap();
        // build flags win due to backward compatibility (abi3 feature is a no-op on ft builds)
        assert!(config.target_abi.kind() == PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded));

        // The reconciliation is order-independent: build_flags first, then stable_abi(Abi3)
        // produces the same result as the previous ordering.
        let builder = InterpreterConfigBuilder::new(
            PythonImplementation::CPython,
            PythonVersion {
                major: 3,
                minor: 14,
            },
        );
        let mut flags = BuildFlags::new();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        let config = builder
            .build_flags(flags)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();
        assert!(config.target_abi.kind() == PythonAbiKind::VersionSpecific(GilUsed::FreeThreaded));

        // Explicit GIL-enabled target with Py_GIL_DISABLED in build flags is contradictory and
        // is rejected at finalize regardless of the order in which the setters were called.
        let builder = InterpreterConfigBuilder::new(
            PythonImplementation::CPython,
            PythonVersion {
                major: 3,
                minor: 14,
            },
        );
        let target_abi = PythonAbiBuilder::new(
            PythonImplementation::CPython,
            PythonVersion {
                major: 3,
                minor: 14,
            },
        )
        .finalize()
        .unwrap();
        let mut flags = BuildFlags::new();
        flags.0.insert(BuildFlag::Py_GIL_DISABLED);
        assert!(builder
            .target_abi(target_abi)
            .build_flags(flags)
            .finalize()
            .is_err());

        let builder = InterpreterConfigBuilder::new(
            PythonImplementation::CPython,
            PythonVersion {
                major: 3,
                minor: 14,
            },
        );
        let config = builder.free_threaded().unwrap().finalize().unwrap();
        assert!(config.target_abi.kind().is_free_threaded());
        assert!(config.build_flags.0.contains(&BuildFlag::Py_GIL_DISABLED));
    }

    #[test]
    fn test_build_script_outputs_debug() {
        let mut build_flags = BuildFlags::default();
        build_flags.0.insert(BuildFlag::Py_DEBUG);
        let implementation = PythonImplementation::CPython;
        let version = PythonVersion::PY38;
        let interpreter_config = InterpreterConfigBuilder::new(implementation, version)
            .build_flags(build_flags)
            .finalize()
            .unwrap();
        assert_eq!(
            interpreter_config.build_script_outputs(),
            [
                "cargo:rustc-cfg=Py_3_8".to_owned(),
                "cargo:rustc-cfg=py_sys_config=\"Py_DEBUG\"".to_owned(),
            ]
        );
    }

    #[test]
    fn test_find_sysconfigdata_in_invalid_lib_dir() {
        let e = find_all_sysconfigdata(&CrossCompileConfig {
            lib_dir: Some(PathBuf::from("/abc/123/not/a/real/path")),
            version: None,
            implementation: None,
            target: triple!("x86_64-unknown-linux-gnu"),
            abiflags: None,
        })
        .unwrap_err();

        // actual error message is platform-dependent, so just check the context we add
        assert!(e.report().to_string().starts_with(
            "failed to search the lib dir at 'PYO3_CROSS_LIB_DIR=/abc/123/not/a/real/path'\n\
            caused by:\n  \
              - 0: failed to list the entries in '/abc/123/not/a/real/path'\n  \
              - 1: \
            "
        ));
    }

    #[test]
    fn test_from_pyo3_config_file_env_rebuild() {
        READ_ENV_VARS.with(|vars| vars.borrow_mut().clear());
        let _ = InterpreterConfig::from_pyo3_config_file_env(&Triple::host());
        // it's possible that other env vars were also read, hence just checking for contains
        READ_ENV_VARS.with(|vars| assert!(vars.borrow().contains(&"PYO3_CONFIG_FILE".to_string())));
    }

    #[test]
    fn test_default_lib_name_for_target() {
        let cpython = PythonImplementation::CPython;
        let pypy = PythonImplementation::PyPy;
        let py39 = PythonVersion::PY39;
        let py311 = PythonVersion {
            major: 3,
            minor: 11,
        };
        let py313 = PythonVersion {
            major: 3,
            minor: 13,
        };
        let cpy39 = PythonAbiBuilder::new(cpython, py39).finalize().unwrap();
        let pypy311 = PythonAbiBuilder::new(pypy, py311).finalize().unwrap();
        let cpy313t = PythonAbiBuilder::new(cpython, py313)
            .free_threaded()
            .finalize()
            .unwrap();
        let cpy313_abi3 = PythonAbiBuilder::new(cpython, py313)
            .stable_abi(StableAbi::Abi3)
            .finalize()
            .unwrap();

        let unix = Triple::from_str("x86_64-unknown-linux-gnu").unwrap();
        let win_x64 = Triple::from_str("x86_64-pc-windows-msvc").unwrap();
        let win_arm64 = Triple::from_str("aarch64-pc-windows-msvc").unwrap();

        let lib_name = default_lib_name_for_target(cpy39, &unix);
        assert_eq!(lib_name, "python3.9");

        let lib_name = default_lib_name_for_target(cpy39, &win_x64);
        assert_eq!(lib_name, "python39");

        let lib_name = default_lib_name_for_target(cpy39, &win_arm64);
        assert_eq!(lib_name, "python39");

        // PyPy
        let lib_name = default_lib_name_for_target(pypy311, &unix);
        assert_eq!(lib_name, "pypy3.11-c");

        let lib_name = default_lib_name_for_target(pypy311, &win_x64);
        assert_eq!(lib_name, "libpypy3.11-c");

        // Free-threaded
        let lib_name = default_lib_name_for_target(cpy313t, &unix);
        assert_eq!(lib_name, "python3.13t");

        let lib_name = default_lib_name_for_target(cpy313t, &win_x64);
        assert_eq!(lib_name, "python313t");

        let lib_name = default_lib_name_for_target(cpy313t, &win_arm64);
        assert_eq!(lib_name, "python313t");

        // abi3
        let lib_name = default_lib_name_for_target(cpy313_abi3, &unix);
        assert_eq!(lib_name, "python3.13");

        let lib_name = default_lib_name_for_target(cpy313_abi3, &win_x64);
        assert_eq!(lib_name, "python3");

        let lib_name = default_lib_name_for_target(cpy313_abi3, &win_arm64);
        assert_eq!(lib_name, "python3");
    }
}