-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.py
64 lines (53 loc) · 1.81 KB
/
build.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import os
import platform
import shutil
from distutils.command.build_ext import build_ext
from distutils.core import Distribution, Extension
from pathlib import Path
from Cython.Build import cythonize
compile_args_x86 = ["-march=native", "-O3", "-msse", "-msse2", "-mfma", "-mfpmath=sse"]
compile_args_arm = ["-O3"]
link_args = []
include_dirs = []
libraries = ["m"]
def build():
cython_sources = []
cython_sources.extend(Path("aiotone").glob("*.pyx"))
cpu_arch = platform.machine().lower()
if "arm" in cpu_arch:
compile_args = compile_args_arm
elif "x86" in cpu_arch or "amd64" in cpu_arch:
compile_args = compile_args_x86
else:
print(f"warning: unknown machine arch {cpu_arch}; assuming Intel")
compile_args = compile_args_x86
extensions = [
Extension(
"aiotone." + path.with_suffix("").name,
[str(path)],
extra_compile_args=compile_args,
extra_link_args=link_args,
include_dirs=include_dirs,
libraries=libraries,
)
for path in cython_sources
]
ext_modules = cythonize(
extensions,
include_path=include_dirs,
compiler_directives={"binding": True, "language_level": 3},
)
distribution = Distribution({"name": "extended", "ext_modules": ext_modules})
distribution.package_dir = "extended"
cmd = build_ext(distribution)
cmd.ensure_finalized()
cmd.run()
# Copy built extensions back to the project
for output in cmd.get_outputs():
relative_extension = os.path.relpath(output, cmd.build_lib)
shutil.copyfile(output, relative_extension)
mode = os.stat(relative_extension).st_mode
mode |= (mode & 0o444) >> 2
os.chmod(relative_extension, mode)
if __name__ == "__main__":
build()