diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-02-17 18:10:48 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-17 18:10:48 +0000 |
| commit | 89f908b883292b76c87de5e4f80ed56e6fdb9aba (patch) | |
| tree | b6517c649916067e13a628d9a2f8d2a8601ffcd3 | |
| parent | ce96aea9ecf3a35f883cb5f98c0a02cf51e480e6 (diff) | |
| download | bcm5719-llvm-89f908b883292b76c87de5e4f80ed56e6fdb9aba.tar.gz bcm5719-llvm-89f908b883292b76c87de5e4f80ed56e6fdb9aba.zip | |
ccc: Recognize -isystem.
llvm-svn: 64776
| -rw-r--r-- | clang/tools/ccc/ccclib/Arguments.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/tools/ccc/ccclib/Arguments.py b/clang/tools/ccc/ccclib/Arguments.py index 6cda01ba340..dc9605a899f 100644 --- a/clang/tools/ccc/ccclib/Arguments.py +++ b/clang/tools/ccc/ccclib/Arguments.py @@ -620,6 +620,7 @@ class OptionParser: self.idirafterOption = self.addOption(JoinedOrSeparateOption('-idirafter', self.iGroup)) self.imacrosOption = self.addOption(JoinedOrSeparateOption('-imacros', self.iGroup)) self.iprefixOption = self.addOption(JoinedOrSeparateOption('-iprefix', self.iGroup)) + self.isystem = self.addOption(JoinedOrSeparateOption('-isystem', self.iGroup)) self.iwithprefixOption = self.addOption(JoinedOrSeparateOption('-iwithprefix', self.iGroup)) self.iwithprefixbeforeOption = self.addOption(JoinedOrSeparateOption('-iwithprefixbefore', self.iGroup)) self.addOption(JoinedOrSeparateOption('-iquote', self.iGroup)) |

