Skip to content

Commit 7551aa3

Browse files
authored
Merge pull request travitch#40 from mdimjasevic/master
Partially addresses issue travitch#39
2 parents 09b1eb4 + 193a5c5 commit 7551aa3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

driver/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,9 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
226226
#iam: the object file recogition is not really very robust, object files
227227
# should be determined by their existance and contents...
228228
r'^.+\.(o|lo|So|so|po|a)$' : (0, ArgumentListFilter.objectFileCallback),
229+
#iam: library.so.4.5.6 probably need a similar pattern for .dylib too.
230+
r'^.+\.dylib(\.\d)+$' : (0, ArgumentListFilter.objectFileCallback),
231+
r'^.+\.(So|so)(\.\d)+$' : (0, ArgumentListFilter.objectFileCallback),
229232
r'^-(l|L).+$' : (0, ArgumentListFilter.linkUnaryCallback),
230233
r'^-I.+$' : (0, ArgumentListFilter.compileUnaryCallback),
231234
r'^-D.+$' : (0, ArgumentListFilter.compileUnaryCallback),

0 commit comments

Comments
 (0)