mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-26 10:35:36 +00:00
b45e930336
Now that DwarfIndex is in C, the rest can be simpler Python rather than Cython.
21 lines
321 B
Python
Executable File
21 lines
321 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
from setuptools.extension import Extension
|
|
from Cython.Build import cythonize
|
|
|
|
|
|
extensions = [
|
|
Extension(
|
|
name='drgn.dwarfindex',
|
|
sources=[
|
|
'drgn/dwarfindex.c',
|
|
],
|
|
),
|
|
]
|
|
|
|
setup(
|
|
name='drgn',
|
|
ext_modules=extensions,
|
|
)
|