Skip to content

Commit c238b56

Browse files
committed
Add support for -stdlib=.
1 parent 4f4b1bf commit c238b56

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

wllvm/arglistfilter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
227227
r'^-W(?!l,).*$' : (0, ArgumentListFilter.compileUnaryCallback),
228228
r'^-f.+$' : (0, ArgumentListFilter.compileUnaryCallback),
229229
r'^-std=.+$' : (0, ArgumentListFilter.compileUnaryCallback),
230+
r'^-stdlib=.+$' : (0, ArgumentListFilter.compileLinkUnaryCallback),
230231
r'^-mtune=.+$' : (0, ArgumentListFilter.compileUnaryCallback),
231232
r'^--sysroot=.+$' : (0, ArgumentListFilter.compileUnaryCallback),
232233
r'^-print-prog-name=.*$' : (0, ArgumentListFilter.compileUnaryCallback),

0 commit comments

Comments
 (0)