We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 613099e + db8ecc2 commit 89b7a32Copy full SHA for 89b7a32
1 file changed
setup.py
@@ -32,6 +32,8 @@
32
33
if platform.uname().system != 'Windows':
34
CFLAGS.extend(['-fsigned-char', '-Wall', '-Wsign-compare', '-Wconversion'])
35
+ # Link against libm (math library) for functions like log10()
36
+ LDFLAGS.extend(['-lm'])
37
38
39
_ROOT = pathlib.Path(__file__).parent
0 commit comments