mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
small build mechanism fixes
This commit is contained in:
parent
68ee7c7944
commit
b3b9b1afbd
2 changed files with 4 additions and 2 deletions
|
@ -3713,7 +3713,9 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
|||
}
|
||||
}
|
||||
} else {
|
||||
fullPath = cfg.getOwner().getProject().getFullPath().append(cfg.getName());
|
||||
fullPath = cfg.getOwner().getProject().getFullPath();
|
||||
if(builder.isManagedBuildOn())
|
||||
fullPath = fullPath.append(cfg.getName());
|
||||
}
|
||||
|
||||
return fullPath;
|
||||
|
|
|
@ -851,7 +851,7 @@ public class CommonBuilder extends ACBuilder {
|
|||
|
||||
IBuilder builder = bInfo.getBuilder();
|
||||
IConfiguration cfg = bInfo.getConfiguration();
|
||||
boolean isParallel = builder.getParallelizationNum() != 0;
|
||||
boolean isParallel = builder.isParallelBuildOn() && builder.getParallelizationNum() > 1;
|
||||
// boolean buildIncrementaly = true;
|
||||
boolean resumeOnErr = !builder.isStopOnError();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue