mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 17:53:07 +00:00
687ea74ff2
I went back and forth on using setuptools or autotools for the Python extension, but I eventually settled on using only setuptools after fighting to get the two to integrate well. However, setuptools is kind of crappy; for one, it rebuilds every source file when rebuilding the extension, which is really annoying for development. automake is a better designed build system overall, so let's use that for the extension. We override the build_ext command to build using autotools and copy things where setuptools expects them.
11 lines
99 B
Plaintext
11 lines
99 B
Plaintext
*.pyc
|
|
*.so
|
|
/.coverage
|
|
/.mypy_cache
|
|
/build
|
|
/coverage.info
|
|
/dist
|
|
/drgn.egg-info
|
|
/htmlcov
|
|
__pycache__
|