1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Show board name on generic "Error compiling" message

Close #4658
This commit is contained in:
Cristian Maglie 2016-03-07 19:26:32 +01:00
parent 3704f30e90
commit 8d995d73f3
2 changed files with 2 additions and 1 deletions

View File

@ -269,7 +269,7 @@ public class Compiler implements MessageConsumer {
}
if (result != 0) {
RunnerException re = new RunnerException(tr("Error compiling."));
RunnerException re = new RunnerException(I18n.format(tr("Error compiling for board {0}."), board.getName()));
re.hideStackTrace();
throw re;
}

View File

@ -14,6 +14,7 @@ ARDUINO 1.6.8
* Improved sketch preprocessor when handling C++11 keywords. Thanks @matthijskooijman @igrr
* Updates to keyword pigmentation to match Create
* Fixed display of LITERAL1 keywords
* Added target board information when "Error compiling" message is displayed. Thanks @PaulStoffregen
[core]
* avr: fixed USB_SendControl(...) for buffer with len > 64. Thanks @NicoHood