Skip to content
Snippets Groups Projects
Commit 406a4891 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Use -I also on Windows

parent 83b55534
No related branches found
No related tags found
No related merge requests found
Pipeline #18161 failed
...@@ -35,7 +35,7 @@ else: ...@@ -35,7 +35,7 @@ else:
_do_not_link_flag = '-c' _do_not_link_flag = '-c'
_output_flag = '-o' _output_flag = '-o'
_shared_object_flag = '/DLL' _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" _position_independent_flag = "/DTHIS_FLAG_DOES_NOTHING"
get_compiler_config()['command'] = 'cl.exe' get_compiler_config()['command'] = 'cl.exe'
config_env = get_compiler_config()['env'] if 'env' in get_compiler_config() else {} config_env = get_compiler_config()['env'] if 'env' in get_compiler_config() else {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment