Kaydet (Commit) 977c5017 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

idl: ignore -isystem args

Change-Id: I0758fd3117795ed68789385576aee5a885639104
üst 7c5a21dd
......@@ -316,6 +316,18 @@ SvCommand::SvCommand( int argc, char ** argv )
while(SyntaxStrings[j])
printf("%s\n",SyntaxStrings[j++]);
}
else if (aParam == "isystem")
{
// ignore "-isystem" and following arg
if (i < aList.size())
{
++i;
}
}
else if (aParam.startsWith("isystem"))
{
// ignore args starting with "-isystem"
}
else if( aParam.startsWithIgnoreAsciiCase( "i" ) )
{ // define include paths
OUString aName( aParam.copy( 1 ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment