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 92a3c6f commit bd4ed77Copy full SHA for bd4ed77
setup.py
@@ -2069,6 +2069,7 @@ def _decimal_ext(self):
2069
'Modules',
2070
'_decimal',
2071
'libmpdec'))]
2072
+ libraries = ['m']
2073
sources = [
2074
'_decimal/_decimal.c',
2075
'_decimal/libmpdec/basearith.c',
@@ -2164,7 +2165,7 @@ def _decimal_ext(self):
2164
2165
ext = Extension (
2166
2167
include_dirs=include_dirs,
- libraries=['m'],
2168
+ libraries=libraries,
2169
define_macros=define_macros,
2170
undef_macros=undef_macros,
2171
extra_compile_args=extra_compile_args,
0 commit comments