File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -748,7 +748,7 @@ def get_libraries(self, ext):
748
748
if sysconfig .get_config_var ('Py_ENABLE_SHARED' ):
749
749
pythonlib = 'python{}.{}{}' .format (
750
750
sys .hexversion >> 24 , (sys .hexversion >> 16 ) & 0xff ,
751
- sys . abiflags )
751
+ sysconfig . get_config_var ( 'ABIFLAGS' ) )
752
752
return ext .libraries + [pythonlib ]
753
753
else :
754
754
return ext .libraries
Original file line number Diff line number Diff line change @@ -561,6 +561,9 @@ Tests
561
561
Build
562
562
-----
563
563
564
+ - Issue #26884: Fix linking extension modules for cross builds.
565
+ Patch by Xavier de Gaye.
566
+
564
567
- Issue #22359: Disable the rules for running _freeze_importlib and pgen when
565
568
cross-compiling. The output of these programs is normally saved with the
566
569
source code anyway, and is still regenerated when doing a native build.
You can’t perform that action at this time.
0 commit comments