mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
_testcapi depends on testcapi_long.h
Thanks Lisandro Dalcin.
This commit is contained in:
parent
4015f62e39
commit
d155bbfbb2
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -447,7 +447,8 @@ class PyBuildExt(build_ext):
|
|||
# _json speedups
|
||||
exts.append( Extension("_json", ["_json.c"]) )
|
||||
# Python C API test module
|
||||
exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
|
||||
exts.append( Extension('_testcapi', ['_testcapimodule.c'],
|
||||
depends=['testcapi_long.h']) )
|
||||
# profilers (_lsprof is for cProfile.py)
|
||||
exts.append( Extension('_hotshot', ['_hotshot.c']) )
|
||||
exts.append( Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue