forked from pysam-developers/pysam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cy_build.py
90 lines (68 loc) · 3.02 KB
/
cy_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
87
88
89
90
import os
import re
import sys
try:
from Cython.Distutils import build_ext
except ImportError:
from setuptools.command.build_ext import build_ext
from distutils.extension import Extension
from distutils.sysconfig import get_config_vars, get_python_version
from pkg_resources import Distribution
if sys.platform == 'darwin':
config_vars = get_config_vars()
config_vars['LDSHARED'] = config_vars['LDSHARED'].replace('-bundle', '')
config_vars['SHLIB_EXT'] = '.so'
def is_pip_install():
if "_" in os.environ and os.environ["_"].endswith("pip"):
return True
if "pip-egg-info" in sys.argv:
return True
if re.search("/pip-.*-build/", __file__):
return True
return False
class CyExtension(Extension):
def __init__(self, *args, **kwargs):
self._init_func = kwargs.pop("init_func", None)
self._prebuild_func = kwargs.pop("prebuild_func", None)
Extension.__init__(self, *args, **kwargs)
def extend_includes(self, includes):
self.include_dirs.extend(includes)
def extend_macros(self, macros):
self.define_macros.extend(macros)
def extend_extra_objects(self, objs):
self.extra_objects.extend(objs)
class cy_build_ext(build_ext):
def _get_egg_name(self):
ei_cmd = self.get_finalized_command("egg_info")
return Distribution(
None, None, ei_cmd.egg_name, ei_cmd.egg_version, get_python_version(),
self.distribution.has_ext_modules() and self.plat_name).egg_name()
def build_extension(self, ext):
if isinstance(ext, CyExtension) and ext._init_func:
ext._init_func(ext)
if not self.inplace:
ext.library_dirs.append(os.path.join(self.build_lib, "pysam"))
if sys.platform == 'darwin':
# The idea is to give shared libraries an install name of the form
# `@rpath/<library-name.so>`, and to set the rpath equal to
# @loader_path. This will allow Python packages to find the library
# in the expected place, while still giving enough flexibility to
# external applications to link against the library.
relative_module_path = ext.name.replace(".", os.sep) + get_config_vars()["SO"]
library_path = os.path.join(
"@rpath", os.path.basename(relative_module_path)
)
if not ext.extra_link_args:
ext.extra_link_args = []
ext.extra_link_args += ['-dynamiclib',
'-rpath', '@loader_path',
'-Wl,-headerpad_max_install_names',
'-Wl,-install_name,%s' % library_path,
'-Wl,-x']
else:
if not ext.extra_link_args:
ext.extra_link_args = []
ext.extra_link_args += ['-Wl,-rpath,$ORIGIN']
if isinstance(ext, CyExtension) and ext._prebuild_func:
ext._prebuild_func(ext, self.force)
build_ext.build_extension(self, ext)