Commit 8d2c61e20a7b726d949844cffb39f4f3d89c3a78
1 parent
5c7c033c
Exists in
ff_mask
Updating setup: openmp is not necessary in ff
Showing
1 changed file
with
0 additions
and
5 deletions
Show diff stats
setup.py
| ... | ... | @@ -28,8 +28,6 @@ if sys.platform == 'linux2': |
| 28 | 28 | |
| 29 | 29 | Extension("invesalius.data.floodfill", ["invesalius/data/floodfill.pyx"], |
| 30 | 30 | include_dirs=[numpy.get_include()], |
| 31 | - extra_compile_args=['-fopenmp',], | |
| 32 | - extra_link_args=['-fopenmp',], | |
| 33 | 31 | language='c++',), |
| 34 | 32 | ]) |
| 35 | 33 | ) |
| ... | ... | @@ -51,7 +49,6 @@ elif sys.platform == 'win32': |
| 51 | 49 | |
| 52 | 50 | Extension("invesalius.data.floodfill", ["invesalius/data/floodfill.pyx"], |
| 53 | 51 | include_dirs=[numpy.get_include()], |
| 54 | - extra_compile_args=['/openmp',], | |
| 55 | 52 | language='c++',), |
| 56 | 53 | ]) |
| 57 | 54 | ) |
| ... | ... | @@ -77,8 +74,6 @@ else: |
| 77 | 74 | |
| 78 | 75 | Extension("invesalius.data.floodfill", ["invesalius/data/floodfill.pyx"], |
| 79 | 76 | include_dirs=[numpy.get_include()], |
| 80 | - extra_compile_args=['-fopenmp',], | |
| 81 | - extra_link_args=['-fopenmp',], | |
| 82 | 77 | language='c++',), |
| 83 | 78 | ]) |
| 84 | 79 | ) | ... | ... |