-
Notifications
You must be signed in to change notification settings - Fork 7
/
build_extension.py
41 lines (37 loc) · 1.22 KB
/
build_extension.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# import os
from setuptools.command.build_ext import build_ext
from setuptools import Extension
# See if Cython is installed
try:
from Cython.Build import cythonize
# Do nothing if Cython is not available
except ImportError:
# Got to provide this function. Otherwise, poetry will fail
def build(setup_kwargs):
print('Not compiling Cython module')
pass
# Cython is installed. Compile
else:
# This function will be executed in setup.py:
def build(setup_kwargs):
# The file you want to compile
com_args = ['-std=c99', '-O3']
extensions = [
Extension("oommfpy.tools.clib",
["oommfpy/tools/clib/clib.pyx",
"oommfpy/tools/clib/vtk_writer.c"],
extra_compile_args=com_args
),
]
# gcc arguments hack: enable optimizations
# os.environ['CFLAGS'] = '-O3'
# Build
setup_kwargs.update({
'ext_modules': cythonize(
extensions,
language_level=3,
compiler_directives={'linetrace': True},
),
'cmdclass': {'build_ext': build_ext}
})
print('Compiling Cython module')