Commit efc98089 authored by rusty1s's avatar rusty1s
Browse files

remove flag

parent 8cbbfd70
...@@ -45,6 +45,8 @@ def get_extensions(): ...@@ -45,6 +45,8 @@ def get_extensions():
define_macros += [('MTMETIS_64BIT_PARTITIONS', None)] define_macros += [('MTMETIS_64BIT_PARTITIONS', None)]
libraries += ['mtmetis', 'wildriver'] libraries += ['mtmetis', 'wildriver']
extra_compile_args = {'cxx': ['-O2']} extra_compile_args = {'cxx': ['-O2']}
if not os.name == 'nt': # Not on Windows:
extra_compile_args['cxx'] += ['-Wno-sign-compare']
extra_link_args = ['-s'] extra_link_args = ['-s']
info = parallel_info() info = parallel_info()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment