mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-03 00:29:21 +01:00
Upping version to 0015 and going back to use of core.a in build process.
This commit is contained in:
parent
fa3e49a126
commit
673e2513b8
@ -53,8 +53,8 @@ import processing.core.*;
|
|||||||
* files and images, etc) that comes from that.
|
* files and images, etc) that comes from that.
|
||||||
*/
|
*/
|
||||||
public class Base {
|
public class Base {
|
||||||
static final int VERSION = 14;
|
static final int VERSION = 15;
|
||||||
static final String VERSION_NAME = "0014";
|
static final String VERSION_NAME = "0015";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path of filename opened on the command line,
|
* Path of filename opened on the command line,
|
||||||
|
@ -172,9 +172,9 @@ public class Compiler implements MessageConsumer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
baseCommandLinker.addAll(sketchObjectNames);
|
baseCommandLinker.addAll(sketchObjectNames);
|
||||||
baseCommandLinker.addAll(targetObjectNames);
|
//baseCommandLinker.addAll(targetObjectNames);
|
||||||
//baseCommandLinker.add(runtimeLibraryName);
|
baseCommandLinker.add(runtimeLibraryName);
|
||||||
//baseCommandLinker.add("-L" + buildPath);
|
baseCommandLinker.add("-L" + buildPath);
|
||||||
baseCommandLinker.add("-lm");
|
baseCommandLinker.add("-lm");
|
||||||
|
|
||||||
firstErrorFound = false; // haven't found any errors yet
|
firstErrorFound = false; // haven't found any errors yet
|
||||||
@ -200,12 +200,12 @@ public class Compiler implements MessageConsumer {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// for(int i = 0; i < targetObjectNames.size(); i++) {
|
for(int i = 0; i < targetObjectNames.size(); i++) {
|
||||||
// List commandAR = new ArrayList(baseCommandAR);
|
List commandAR = new ArrayList(baseCommandAR);
|
||||||
// commandAR.add(targetObjectNames.get(i));
|
commandAR.add(targetObjectNames.get(i));
|
||||||
// if (execAsynchronously(commandAR) != 0)
|
if (execAsynchronously(commandAR) != 0)
|
||||||
// return false;
|
return false;
|
||||||
// }
|
}
|
||||||
|
|
||||||
if (execAsynchronously(baseCommandLinker) != 0)
|
if (execAsynchronously(baseCommandLinker) != 0)
|
||||||
return false;
|
return false;
|
||||||
|
@ -46,6 +46,12 @@ Processing and Wiring.
|
|||||||
|
|
||||||
UPDATES
|
UPDATES
|
||||||
|
|
||||||
|
0015
|
||||||
|
|
||||||
|
[environment]
|
||||||
|
* Reinstating use of core.a library in the build process, slightly shrinking
|
||||||
|
compiled sketch sizes.
|
||||||
|
|
||||||
0014 - 2009.03.07
|
0014 - 2009.03.07
|
||||||
|
|
||||||
[core / libraries]
|
[core / libraries]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user