Skip to content
Snippets Groups Projects
Commit 68f12384 authored by Martin Reinecke's avatar Martin Reinecke
Browse files

remove OpenMP for the moment

parent 16342893
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,10 @@ def _remove_strict_prototype_option_from_distutils_config():
_remove_strict_prototype_option_from_distutils_config()
extra_compile_args = ['-fopenmp', '-march=native']
#extra_compile_args = ['-fopenmp', '-march=native']
#openmp_libs=['gomp']
extra_compile_args=[]
openmp_libs=[]
extra_cc_compile_args = []
include_dirs = ['c_utils/', 'libfftpack/', 'libsharp/', 'cxxsupport',
'Healpix_cxx', './']
......@@ -120,7 +123,7 @@ def get_extension_modules():
sources=pyhealpix_sources,
include_dirs=include_dirs,
extra_compile_args=extra_cc_compile_args,
libraries=['gomp']+sharp_libs,
libraries=openmp_libs+sharp_libs,
extra_link_args=python_module_link_args,
library_dirs=library_dirs)
extension_modules.append(pyhealpix_library)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment