mirror of
https://github.com/python/cpython.git
synced 2025-09-17 06:06:25 +00:00
Add _math.h to math module dependencies in setup.py.
This commit is contained in:
parent
9cae178f21
commit
1c49828fa0
1 changed files with 1 additions and 0 deletions
1
setup.py
1
setup.py
|
@ -415,6 +415,7 @@ class PyBuildExt(build_ext):
|
||||||
|
|
||||||
# math library functions, e.g. sin()
|
# math library functions, e.g. sin()
|
||||||
exts.append( Extension('math', ['mathmodule.c', '_math.c'],
|
exts.append( Extension('math', ['mathmodule.c', '_math.c'],
|
||||||
|
depends=['_math.h'],
|
||||||
libraries=math_libs) )
|
libraries=math_libs) )
|
||||||
# fast string operations implemented in C
|
# fast string operations implemented in C
|
||||||
exts.append( Extension('strop', ['stropmodule.c']) )
|
exts.append( Extension('strop', ['stropmodule.c']) )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue