We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc5063c + aabfe07 commit f17c686Copy full SHA for f17c686
setup.py
@@ -33,6 +33,7 @@
33
ext_args = defaultdict(list)
34
ext_args['include_dirs'].append(numpy.get_include())
35
36
+
37
def pkgconfig(flag):
38
# Equivalent in Python 2.7 (but not 2.6):
39
#subprocess.check_output(['pkg-config', flag] + pcl_libs).split()
@@ -63,6 +64,9 @@ def pkgconfig(flag):
63
64
for flag in pkgconfig('--libs-only-other'):
65
ext_args['extra_link_args'].append(flag)
66
67
+# Fix compile error on Ubuntu 12.04 (e.g., Travis-CI).
68
+ext_args['define_macros'].append(
69
+ ("EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET", "1"))
70
71
setup(name='python-pcl',
72
description='pcl wrapper',
0 commit comments