Skip to content

Commit ae2cd93

Browse files
committed
Made liblink recognise -isystem alongside -I arguments
1 parent 02c93f8 commit ae2cd93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/tools/liblink

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ while i < len(sys.argv):
3434
i += 1
3535
continue
3636

37-
if opt.startswith("-I"):
37+
if opt.startswith("-I") or opt.startswith('-isystem'):
3838
continue
3939

4040
if opt.startswith("-m"):

0 commit comments

Comments
 (0)