File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1- __version__ = '2.1.7 '
1+ __version__ = '2.1.8 '
22
33from .pipeline import Pipeline
44from .array import Array
Original file line number Diff line number Diff line change @@ -173,13 +173,12 @@ def get_pdal_config(option):
173173
174174 extra_compile_args = ['/DNOMINMAX' ,]
175175
176- if 'linux' in sys .platform or 'linux2' in sys .platform :
176+ if 'linux' in sys .platform or 'linux2' in sys .platform or 'darwin' in sys .platform :
177+ extra_compile_args += ['-std=c++11' , '-Wno-unknown-pragmas' ]
177178 if 'GCC' in sys .version :
178179 # try to ensure the ABI for Conda GCC 4.8
179180 if '4.8' in sys .version :
180181 extra_compile_args += ['-D_GLIBCXX_USE_CXX11_ABI=0' ]
181- else :
182- extra_compile_args += ['-std=c++11' , '-Wno-unknown-pragmas' ]
183182
184183
185184
You can’t perform that action at this time.
0 commit comments