Skip to content

Commit eb239c3

Browse files
Added into setup.py path to mkl headers
1 parent db8517f commit eb239c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mkl-service/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def configuration(parent_package='', top_path=None):
3535

3636
pdir = dirname(__file__)
3737
mkl_info = get_info('mkl')
38+
incl = mkl_info.get('include_dirs')
3839
libs = mkl_info.get('libraries', ['mkl_rt'])
3940

4041
try:
@@ -52,7 +53,7 @@ def configuration(parent_package='', top_path=None):
5253
'_py_mkl_service',
5354
sources=sources,
5455
depends=[],
55-
include_dirs=[],
56+
include_dirs=[incl],
5657
libraries=libs,
5758
extra_compile_args=[
5859
'-DNDEBUG',

0 commit comments

Comments
 (0)