Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-05 | Bump avr core version to 1.6.13 | Martino Facchin | |
2016-07-25 | Move lto flags before -Wl to fix Mega2560 "relax" substitution | Martino Facchin | |
2016-07-25 | publish avr core 1.6.12 | Martino Facchin | |
2016-07-25 | Enable LTO | Cristian Maglie | |
2016-07-25 | Added -fpermissive flag. | Cristian Maglie | |
This avoid build errors on old libraries. It may possibly be removed in the future after a period of transition. | |||
2016-05-10 | update AVR core to 1.6.11 | Martino Facchin | |
2016-05-10 | add support for remote upload on Yun shield | Martino Facchin | |
2016-04-15 | Implement Do-Not-Verify-After-Upload preference for Serial Uploads | gh-megabit | |
2016-04-04 | Add comment for archive_file_path | Sandeep Mistry | |
2016-04-04 | Merge pull request #4737 from per1234/recipe_ar_pattern-backwards-compatibility | Sandeep Mistry | |
AVR recipe.ar.pattern backwards compatibility | |||
2016-03-22 | AVR recipe.ar.pattern backwards compatibility | per1234 | |
Define archive_file_path in Arduino AVR Boards platform.txt to provide backwards compatibility with IDE versions previous to 1.6.6. The archive_file_path value set in platform.txt is overridden in IDE 1.6.6+. This produces avr-ar commands identical to the previous behavior. | |||
2016-03-15 | Clean up comments in platform.txt | per1234 | |
- Remove comment in Arduino AVR Boards platform.txt about -w flag. This is no longer relevant since the compiler warning level is now set by the user. - Fix typos | |||
2016-03-04 | AVR core version to 1.6.10 | Cristian Maglie | |
2015-11-18 | Modified AVR preproc recipe to match the one used by arduino-builder | Federico Fissore | |
2015-11-03 | Updated avr core version to 1.6.9 | Cristian Maglie | |
2015-09-24 | {build.path}/{archive_file} is now {archive_file_path} in recipe.ar.pattern | Federico Fissore | |
2015-09-18 | Updating arduino-builder to 1.0.0-beta8 | Federico Fissore | |
2015-09-18 | Moved build artifacts into root build folder | Cristian Maglie | |
The intermediate files used for build (.o, .a ...) are still in subfolders to avoid conflicts. Fix #3807 | |||
2015-09-15 | Adding preprocessing recipes to AVR core | Federico Fissore | |
2015-08-27 | Release new boards as AVR core 1.6.8 | Cristian Maglie | |
2015-07-31 | Fix links to 3rd party hardware specification. | Reilly Grant | |
The number of hyphens in this URL has apparently changed. | |||
2015-07-16 | Enable C11 support | Matthijs Kooijman | |
This uses the gnu11 standard, which is C11 with GNU extensions. Previously, gnu89 was being used, which is pretty ancient by now. C99 brings some important improvements, some of which were already available and used even without this option. C11 is more recent and brings more minor improvements. Most notable feature is the static_assert statement, allowing checking invariants at compiletime using the full C expressions. | |||
2015-07-16 | Enable C++11 support | Matthijs Kooijman | |
This uses the gnu++11 standard, which is C++11 with GNU extensions. C++11 should be full compatible with the previously used C++98 standards, so all pre-existing sketches should continue to work. | |||
2015-07-16 | Explicitely specify C and C++ standards to use | Matthijs Kooijman | |
This does not change anything, it just makes the defaults explicit. | |||
2015-06-29 | Fixed missing "sketch" folders in some paths of both AVR and SAM cores | Federico Fissore | |
2015-06-29 | Compiler: sketch files get compiled into "sketch" | Federico Fissore | |
2015-05-07 | saveHex: rename recipe.hex -> recipe.output | Arnav Gupta | |
Signed-off-by: Arnav Gupta <championswimmer@gmail.com> | |||
2015-05-07 | update Sketch menu, add Save hex option | Arnav Gupta | |
* Moving Upload options from "File" menu to "Sketch" menu as those are sketch actions more than file actions. Signed-off-by: Arnav Gupta <championswimmer@gmail.com> | |||
2015-05-06 | AVR core version bump | Federico Fissore | |
2015-04-27 | Disabling uncertified warning, leaving vids/pids | Federico Fissore | |
2015-04-24 | Renamed compiler.warning_flags pref to compiler.warning_level | Federico Fissore | |
Provided a default value for compiler.warning_flags Releasing avr core 1.6.5 | |||
2015-04-23 | AVR: upgrading avr core version | Federico Fissore | |
2015-04-13 | Reviewed warnings key names and dropdown in Preferences | Federico Fissore | |
2015-04-13 | Better preference for setting warnings level. See ↵ | Federico Fissore | |
https://github.com/arduino/Arduino/commit/61592d78fa71c023e4f1577f7e2b6bada2661a13#commitcomment-10668365 | |||
2015-03-30 | Starting 1.6.3 | Federico Fissore | |
Updated toolchains: linux statically compiled, added gcc lto plugin (disabled) | |||
2015-03-27 | Not using gcc version, hard to maintain | Federico Fissore | |
2015-03-27 | avr platform: fixed avrdude path | Federico Fissore | |
2015-03-27 | Fixed platforms(.txt) | Federico Fissore | |
2015-03-11 | Started working on 1.6.2 | Federico Fissore | |
2015-03-10 | Added warning for uncertified boards | Federico Fissore | |
2015-02-19 | Update revision log. Version set to 1.6.1. | Cristian Maglie | |
2015-02-16 | "objcopy" recipes are no more tied to "hex" extension | Cristian Maglie | |
This allow to define specific recipes for every platform but keeps backward compatibility. See #2614 | |||
2015-02-10 | rename hex -> output | Arnav Gupta | |
using generic term 'output', because for samx32, output is .bin format and not .hex Signed-off-by: Arnav Gupta <championswimmer@gmail.com> | |||
2014-11-18 | Upped version to 1.6.0 | Cristian Maglie | |
2014-10-30 | Reduce avrdude verbosity | Matthijs Kooijman | |
Previously, when verbose uploads were enabled, avrdude was run with four -v options, causing it to dump all raw bytes exchanged with the bootloader. This floods the console so much that meaningful output mostly disappears. Most users probably want to enable verbose mode just to see what avrdude command is ran. Furthermore, users that benefit from the raw bytes dumped are perfectly capable of either running avrdude manually, or modifying platform.txt. Given that, running avrdude with just one -v should be plenty. This fixes #891. | |||
2014-09-06 | Correct implementation of gcc specific internal functions | Cristian Maglie | |
The following empty stubs has been replaced by the gcc flag -fno-threadsafe-static: int __cxa_guard_acquire(__guard *); void __cxa_guard_release (__guard *); void __cxa_guard_abort (__guard *); The following empty stubs has been moved into their specific module abi.cpp: void __cxa_pure_virtual(void) __attribute ((noreturn)); void __cxa_deleted_virtual(void) __attribute ((noreturn)); Fix #107 | |||
2014-09-05 | Updated version to 1.5.8 | Cristian Maglie | |
2014-07-01 | Reverting -flto flag from AVR core until all compatibility problems are ↵ | Cristian Maglie | |
worked out. For more info: https://groups.google.com/a/arduino.cc/d/msg/developers/21G5w2HbUOg/NRMW6c9OIFUJ | |||
2014-06-25 | Fixed compilation error when targetting Mega. Error is caused by #2039 and ↵ | Federico Fissore | |
this fix is just a workaround | |||
2014-06-25 | gcc: Adding -w flag to compiler.c.elf.flags in order to avoid printing ISR ↵ | Federico Fissore | |
warning http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59396 |