From 8759c59feacd2fe07e1c6a82e408e99c81b7a8a4 Mon Sep 17 00:00:00 2001 From: Jaimie Murdock Date: Tue, 26 Jul 2016 11:48:14 -0400 Subject: [PATCH] removing -fopenmp --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6a2db01..6ad9ecd 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( name = "vsm", - version = "0.4.0b2", + version = "0.4.0b3", description = ('Vector Space Semantic Modeling Framework '\ 'for the Indiana Philosophy Ontology Project'), author = "The Indiana Philosophy Ontology (InPhO) Project", @@ -54,8 +54,8 @@ ext_modules = [ Extension('_cgs_update', ['vsm/model/_cgs_update.c'], include_dirs=[numpy.get_include()], - extra_compile_args=['-fopenmp', '-march=native'], - extra_link_args=['-fopenmp', '-march=native'], + extra_compile_args=['-march=native'], + extra_link_args=['-march=native'], # define_macros=[('CYTHON_TRACE','1')] ), ],