Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76889a commit 6c1154bCopy full SHA for 6c1154b
1 file changed
setup.py
@@ -1767,7 +1767,9 @@ def detect_expat_elementtree(self):
1767
('XML_POOR_ENTROPY', '1'),
1768
]
1769
extra_compile_args = []
1770
- expat_lib = []
+ # bpo-44394: libexpact uses isnan() of math.h and needs linkage
1771
+ # against the libm
1772
+ expat_lib = ['m']
1773
expat_sources = ['expat/xmlparse.c',
1774
'expat/xmlrole.c',
1775
'expat/xmltok.c']
0 commit comments