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 8507941 + 48d36ac commit 71afdb5Copy full SHA for 71afdb5
Makefile
@@ -13,7 +13,7 @@ test: pcl/_pcl.so tests/test.py
13
14
clean:
15
rm -rf build
16
- rm -f pcl/_pcl.cpp pcl/_pcl.so
+ rm -f pcl/_pcl.cpp pcl/_pcl.so pcl/registration.so
17
18
doc: pcl.so conf.py readme.rst
19
sphinx-build -b singlehtml -d build/doctrees . build/html
setup.py
@@ -6,6 +6,11 @@
6
import subprocess
7
import numpy
8
import sys
9
+import platform
10
+import os
11
+
12
+if platform.system() == "Darwin":
+ os.environ['ARCHFLAGS'] = ''
# Try to find PCL. XXX we should only do this when trying to build or install.
PCL_SUPPORTED = ["-1.7", "-1.6", ""] # in order of preference
0 commit comments