mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-22 13:19:48 +01:00
Removing per-board compilation speedup checks.
This commit is contained in:
parent
b0ae6e764d
commit
1a7fe19348
app/src/processing/app
@ -1626,8 +1626,7 @@ public class Sketch {
|
||||
}
|
||||
|
||||
File appletFolder = new File(appletPath);
|
||||
String use_dep = Base.getBoardPreferences().get("build.dependency");
|
||||
if (use_dep == null || use_dep.compareToIgnoreCase("true") != 0 || deleteFilesOnNextBuild) {
|
||||
if (deleteFilesOnNextBuild) {
|
||||
// delete the entire directory and all contents
|
||||
// when we know something changed and all objects
|
||||
// need to be recompiled, or if the board does not
|
||||
|
@ -297,9 +297,6 @@ public class Compiler implements MessageConsumer {
|
||||
}
|
||||
|
||||
private boolean is_already_compiled(File src, File obj, File dep, Map<String, String> prefs) {
|
||||
String build_dep = prefs.get("build.dependency");
|
||||
if (build_dep == null) return false;
|
||||
if (build_dep.compareToIgnoreCase("true") != 0) return false;
|
||||
boolean ret=true;
|
||||
try {
|
||||
//System.out.println("\n is_already_compiled: begin checks: " + obj.getPath());
|
||||
|
Loading…
x
Reference in New Issue
Block a user