1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

small build mechanism fixes

This commit is contained in:
Mikhail Sennikovsky 2007-04-24 13:43:03 +00:00
parent 68ee7c7944
commit b3b9b1afbd
2 changed files with 4 additions and 2 deletions

View file

@ -3713,7 +3713,9 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
} }
} }
} else { } else {
fullPath = cfg.getOwner().getProject().getFullPath().append(cfg.getName()); fullPath = cfg.getOwner().getProject().getFullPath();
if(builder.isManagedBuildOn())
fullPath = fullPath.append(cfg.getName());
} }
return fullPath; return fullPath;

View file

@ -851,7 +851,7 @@ public class CommonBuilder extends ACBuilder {
IBuilder builder = bInfo.getBuilder(); IBuilder builder = bInfo.getBuilder();
IConfiguration cfg = bInfo.getConfiguration(); IConfiguration cfg = bInfo.getConfiguration();
boolean isParallel = builder.getParallelizationNum() != 0; boolean isParallel = builder.isParallelBuildOn() && builder.getParallelizationNum() > 1;
// boolean buildIncrementaly = true; // boolean buildIncrementaly = true;
boolean resumeOnErr = !builder.isStopOnError(); boolean resumeOnErr = !builder.isStopOnError();