Skip to content
Commits on Source (3)
Metadata-Version: 1.2
Name: PDAL
Version: 2.1.0
Version: 2.1.3
Summary: Point cloud data processing
Home-page: http://pdal.io
Author: Howard Butler
......
2.1.0
\ No newline at end of file
2.1.3
\ No newline at end of file
__version__='2.1.0'
__version__='2.1.3'
from .pipeline import Pipeline
from .array import Array
......
......@@ -148,9 +148,6 @@ if pdal_config and "clean" not in sys.argv:
include_dirs.append(numpy.get_include())
if os.name != 'nt':
extra_compile_args = ['-std=c++11','-Wno-unknown-pragmas']
if platform.system() == 'Darwin':
extra_link_args.append('-Wl,-rpath,'+library_dirs[0])
......@@ -167,6 +164,11 @@ if os.name in ['nt']:
libraries.append('pdal_plugin_reader_numpy')
extra_compile_args = ['/DNOMINMAX',]
if 'linux' in sys.platform or 'linux2' in sys.platform:
if 'GCC' in sys.version:
# try to ensure the ABI for Conda GCC 4.8
if '4.8' in sys.version:
extra_compile_args += ['-D_GLIBCXX_USE_CXX11_ABI=0']
# readers.numpy doesn't exist until PDAL 1.8
if PDALVERSION >= Version('1.8'):
......