@@ -78,6 +78,7 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
78
78
79
79
#iam: presumably the len(inputFiles) == 0 in this case
80
80
'--version' : (0 , ArgumentListFilter .compileOnlyCallback ),
81
+ '-v' : (0 , ArgumentListFilter .compileOnlyCallback ),
81
82
82
83
#warnings (apart from the regex below)
83
84
'-w' : (0 , ArgumentListFilter .compileOnlyCallback ),
@@ -224,7 +225,7 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
224
225
r'^.+\.(c|cc|cpp|C|cxx|i|s|S)$' : (0 , ArgumentListFilter .inputFileCallback ),
225
226
#iam: the object file recogition is not really very robust, object files
226
227
# should be determined by their existance and contents...
227
- r'^.+\.(o|So|po|a)$' : (0 , ArgumentListFilter .objectFileCallback ),
228
+ r'^.+\.(o|lo| So|po|a)$' : (0 , ArgumentListFilter .objectFileCallback ),
228
229
r'^-(l|L).+$' : (0 , ArgumentListFilter .linkUnaryCallback ),
229
230
r'^-I.+$' : (0 , ArgumentListFilter .compileUnaryCallback ),
230
231
r'^-D.+$' : (0 , ArgumentListFilter .compileUnaryCallback ),
0 commit comments