Skip to content
Snippets Groups Projects
Commit b7f0c05c authored by Markus Holzer's avatar Markus Holzer
Browse files

Remove unused variable

parent 7d1c7d11
No related branches found
No related tags found
1 merge request!226Fix field size
...@@ -547,12 +547,10 @@ def compile_module(code, code_hash, base_dir): ...@@ -547,12 +547,10 @@ def compile_module(code, code_hash, base_dir):
extra_flags = ['-I' + get_paths()['include'], '-I' + get_pystencils_include_path()] extra_flags = ['-I' + get_paths()['include'], '-I' + get_pystencils_include_path()]
if compiler_config['os'].lower() == 'windows': if compiler_config['os'].lower() == 'windows':
function_prefix = '__declspec(dllexport)'
lib_suffix = '.pyd' lib_suffix = '.pyd'
object_suffix = '.obj' object_suffix = '.obj'
windows = True windows = True
else: else:
function_prefix = ''
lib_suffix = '.so' lib_suffix = '.so'
object_suffix = '.o' object_suffix = '.o'
windows = False windows = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment