From 406a489199db78a0990c53138cc87bde0ec72879 Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Thu, 19 Sep 2019 16:31:25 +0200 Subject: [PATCH] Use -I also on Windows --- src/pystencils_autodiff/tensorflow_jit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pystencils_autodiff/tensorflow_jit.py b/src/pystencils_autodiff/tensorflow_jit.py index bd7b2f6..909b980 100644 --- a/src/pystencils_autodiff/tensorflow_jit.py +++ b/src/pystencils_autodiff/tensorflow_jit.py @@ -35,7 +35,7 @@ else: _do_not_link_flag = '-c' _output_flag = '-o' _shared_object_flag = '/DLL' - _include_flags = ['/I' + sysconfig.get_paths()['include'], '/I' + get_pystencils_include_path()] + _include_flags = ['-I' + sysconfig.get_paths()['include'], '-I' + get_pystencils_include_path()] _position_independent_flag = "/DTHIS_FLAG_DOES_NOTHING" get_compiler_config()['command'] = 'cl.exe' config_env = get_compiler_config()['env'] if 'env' in get_compiler_config() else {} -- GitLab