-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (52 loc) · 1.78 KB
/
setup.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
from setuptools import setup, Extension, find_packages
import os
import tarfile
import subprocess
from urllib.request import urlopen
from pathlib import Path
def download_and_build_m4ri():
release = "20250128"
workdir = Path(f"m4ri-{release}")
libm4ri_a = workdir / ".libs" / "libm4ri.a"
if libm4ri_a.exists():
print(f"Using cached m4ri {release}")
else:
with urlopen(
f"https://github.com/malb/m4ri/archive/refs/tags/{release}.tar.gz"
) as source:
with tarfile.open(fileobj=source, mode="r|gz") as tar:
tar.extractall()
if not workdir.exists():
raise FileNotFoundError(f"Failed to extract {workdir}")
subprocess.run("autoreconf --install", shell=True, cwd=workdir, check=True)
subprocess.run(
'./configure CFLAGS="-fPIC -O3 -march=native -mtune=native" --enable-openmp --enable-thread-safe',
shell=True,
cwd=workdir,
check=True,
)
subprocess.run("make -j", shell=True, cwd=workdir, check=True)
if not libm4ri_a.exists():
raise FileNotFoundError(f"Failed to build {libm4ri_a}")
return Extension(
"gf2bv._internal",
sources=["gf2bv/_internal.c"],
libraries=["gomp"],
extra_compile_args=["-O3", "-march=native", "-mtune=native"],
include_dirs=[str(workdir)],
extra_objects=[str(libm4ri_a)],
)
if os.environ.get("GF2BV_BUILD_M4RI", "0") != "0":
ext = download_and_build_m4ri()
else:
ext = Extension(
"gf2bv._internal",
sources=["gf2bv/_internal.c"],
libraries=["m4ri"],
extra_compile_args=["-O3", "-march=native", "-mtune=native"],
)
setup(
name="gf2bv",
packages=find_packages(),
ext_modules=[ext],
)