forked from gtors/sealang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
96 lines (80 loc) · 2.97 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
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
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
# coding: utf-8
import sys
import ctypes.util
major, minor = sys.version_info[:2]
if major < 3 or minor < 7:
print("Unsupported Python version. Version requirement is >= 3.7")
sys.exit(1)
import os
import subprocess
from setuptools import setup, Extension
from distutils import sysconfig
from pathlib import Path
extension = ".exe" if sys.platform == "win32" else ""
llvm_home = os.environ.get("LLVM_HOME", "/usr")
def iter_llvm_config():
paths = (
Path(llvm_home, "bin", "llvm-config" + extension),
Path("/usr/bin/llvm-config-10"),
Path("/usr/bin/llvm-config"),
)
for p in paths:
print(f"Check {p}. is_file = {p.is_file()}, is_symlink = {p.is_symlink()}")
if p.is_file() or p.is_symlink():
yield p
llvm_config = next(iter_llvm_config(), None)
if llvm_config is None:
print(
"Unable to set up build environment. Have you installed LLVM and set LLVM_HOME?"
)
sys.exit(1)
llvm_cflags = (
subprocess.check_output([str(llvm_config), "--cxxflags"]).decode("utf-8").split()
)
if sys.platform != "win32":
# Disable debug symbols in extension (reduce .so size)
cflags = sysconfig.get_config_var("CFLAGS")
sysconfig._config_vars["CFLAGS"] = cflags.replace(" -g ", " ")
llvm_ldflags = (
subprocess.check_output([str(llvm_config), "--ldflags"]).decode("utf-8").split()
)
if ctypes.util.find_library('clang-cpp'):
libraries = ['clang-cpp']
else:
libraries=["clangAST", "clangBasic", "clangLex", "libclang", "LLVMBinaryFormat", "LLVMBitstreamReader", "LLVMCore", "LLVMFrontendOpenMP", "LLVMRemarks", "LLVMSupport"],
setup(
name="sealang",
version="11.0",
description="An extended set of Python bindings for libclang (fork of pybee/sealang)",
long_description=open("README.rst").read(),
url="http://github.com/gtors/sealang",
license="License :: OSI Approved :: University of Illinois/NCSA Open Source License",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Compilers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["llvm", "clang", "libclang"],
author="LLVM team, Russell Keith-Magee and Andrey Torsunov",
author_email="andrey.torsunov@gmail.com",
packages=["clang", "sealang"],
ext_modules=[
Extension(
"sealang",
sources=["sealang/sealang.cpp"],
libraries=libraries,
extra_compile_args=llvm_cflags,
extra_link_args=llvm_ldflags,
),
],
# if nose.collector is used, many plugins will not be available
# see: https://nose.readthedocs.io/en/latest/setuptools_integration.html
test_suite="nose.collector",
tests_require=["nose"],
zip_safe=True,
)