13
0

wscript: address some pyflake warnings

gtk2_ardour/wscript:15:1 redefinition of unused 'TaskGen' from line 3
wscript:102:9 dictionary key 'sse' repeated with different values
wscript:104:9 dictionary key 'sse' repeated with different values
This commit is contained in:
Mads Kiilerich 2022-01-24 23:24:33 +01:00
parent 5b7431f243
commit 705de9389b
2 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@ import copy
top = '.'
out = 'build'
from waflib import TaskGen
@TaskGen.extension('.m')
def m_hook(self, node):
"""Alias .m files to be compiled the same as .c files, gcc will do the right thing."""

View File

@ -102,7 +102,6 @@ compiler_flags_dictionaries= {
'linker-debuggable' : ['/DEBUG', '/INCREMENTAL' ],
'nondebuggable' : ['/DNDEBUG', '/Ob1', '/MD', '/Gd', '/EHsc'],
'profile' : '/Oy-',
'sse' : '/arch:SSE',
'silence-unused-arguments' : '',
'sse' : '',
'xsaveintrin' : '',