forked from facebookresearch/nocturne
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.py
86 lines (66 loc) · 2.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from pybind11.setup_helpers import build_ext, Pybind11Extension
import logging
import multiprocessing
import os
import re
import subprocess
import sys
from distutils.version import LooseVersion
logging.basicConfig(level=logging.INFO)
class CMakeExtension(Pybind11Extension):
"""Use CMake to construct the Nocturne extension."""
def __init__(self, name, src_dir=""):
Pybind11Extension.__init__(self, name, sources=[])
self.src_dir = os.path.abspath(src_dir)
class CMakeBuild(build_ext):
"""Utility class for building Nocturne."""
def run(self):
"""Run cmake."""
try:
cmake_version = subprocess.check_output(["cmake", "--version"])
except OSError:
raise RuntimeError(
"CMake must be installed to build the following extensions: " +
", ".join(e.name for e in self.extensions))
cmake_version = LooseVersion(
re.search(r"version\s*([\d.]+)", cmake_version.decode()).group(1))
if cmake_version < "3.14":
raise RuntimeError("CMake >= 3.14 is required.")
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
"""Run the C++ build commands."""
ext_dir = os.path.abspath(
os.path.dirname(self.get_ext_fullpath(ext.name)))
cmake_args = [
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + ext_dir,
"-DPYTHON_EXECUTABLE=" + sys.executable
]
cfg = "Debug" if self.debug else "Release"
build_args = ["--config", cfg]
cmake_args += ["-DCMAKE_BUILD_TYPE=" + cfg]
build_args += ["--", f"-j{multiprocessing.cpu_count()}"]
env = os.environ.copy()
env["CXXFLAGS"] = f'{env.get("CXXFLAGS", "")} \
-DVERSION_INFO="{self.distribution.get_version()}"'
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
cmd = ["cmake", ext.src_dir] + cmake_args
try:
subprocess.check_call(cmd, cwd=self.build_temp, env=env)
except subprocess.CalledProcessError:
logging.error(f"Aborting due to errors when running command {cmd}")
sys.exit(1)
cmd = ["cmake", "--build", "."] + build_args
try:
subprocess.check_call(cmd, cwd=self.build_temp)
except subprocess.CalledProcessError:
logging.error(f"Aborting due to errors when running command {cmd}")
sys.exit(1)
print() # Add an empty line for cleaner output
def build(setup_kwargs):
setup_kwargs.update({
"ext_modules": [CMakeExtension("nocturne", "./nocturne")],
"cmdclass": {"build_ext": CMakeBuild},
"zip_safe": False,
})