Skip to content

Commit 23e4d01

Browse files
committed
Support the -UXXX form of the undefine command line flag
We already supported `-U XXX`
1 parent 23e439f commit 23e4d01

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

driver/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
223223
r'^-(l|L).+$' : (0, ArgumentListFilter.linkUnaryCallback),
224224
r'^-I.+$' : (0, ArgumentListFilter.compileUnaryCallback),
225225
r'^-D.+$' : (0, ArgumentListFilter.compileUnaryCallback),
226+
r'^-U.+$' : (0, ArgumentListFilter.compileUnaryCallback),
226227
r'^-Wl,.+$' : (0, ArgumentListFilter.linkUnaryCallback),
227228
r'^-W(?!l,).*$' : (0, ArgumentListFilter.compileUnaryCallback),
228229
r'^-f.+$' : (0, ArgumentListFilter.compileUnaryCallback),

0 commit comments

Comments
 (0)