mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Issue29439: _decimal on Android requires linking with libm.
Patch by Chi Hsuan Yen.
This commit is contained in:
parent
ed4de13f06
commit
75c0d4f6bb
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -2064,7 +2064,7 @@ class PyBuildExt(build_ext):
|
||||||
'Modules',
|
'Modules',
|
||||||
'_decimal',
|
'_decimal',
|
||||||
'libmpdec'))]
|
'libmpdec'))]
|
||||||
libraries = []
|
libraries = self.detect_math_libs()
|
||||||
sources = [
|
sources = [
|
||||||
'_decimal/_decimal.c',
|
'_decimal/_decimal.c',
|
||||||
'_decimal/libmpdec/basearith.c',
|
'_decimal/libmpdec/basearith.c',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue