mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
Recognize also egcc and clang as compilers
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@37831 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d52982ba41
commit
847052d58a
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-05-03 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Framework/PCProjectBuilder.m
|
||||
Recognize also egcc and clang as compilers.
|
||||
|
||||
2014-05-03 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Framework/PCProjectBuilder.m
|
||||
|
|
|
@ -1014,7 +1014,9 @@
|
|||
{// Do current path detection
|
||||
[self parseMakeLine:string];
|
||||
}
|
||||
else if ([self line:string startsWithString:@"gcc"])
|
||||
else if ([self line:string startsWithString:@"gcc"] ||
|
||||
[self line:string startsWithString:@"egcc"] ||
|
||||
[self line:string startsWithString:@"clang"])
|
||||
{// Parse compiler output
|
||||
parsedString = [self parseCompilerLine:string];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue