We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a0b8d8 + d64d7b5 commit 4f0f179Copy full SHA for 4f0f179
mkl-service/setup.py
@@ -35,8 +35,8 @@ def configuration(parent_package='', top_path=None):
35
36
pdir = dirname(__file__)
37
mkl_info = get_info('mkl')
38
- mkl_include_dirs = mkl_info.get('include_dirs')
39
- mkl_library_dirs = mkl_info.get('library_dirs')
+ mkl_include_dirs = mkl_info.get('include_dirs', [])
+ mkl_library_dirs = mkl_info.get('library_dirs', [])
40
mkl_libraries = mkl_info.get('libraries', ['mkl_rt'])
41
42
try:
@@ -58,8 +58,8 @@ def configuration(parent_package='', top_path=None):
58
library_dirs=[mkl_library_dirs],
59
libraries=mkl_libraries,
60
extra_compile_args=[
61
- '-DNDEBUG',
62
- '-g', '-O2', '-Wall',
+ '-DNDEBUG'
+ # '-g', '-O2', '-Wall',
63
]
64
)
65
0 commit comments