1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

Added default extra_flags parameter to allow build on all boards

This commit is contained in:
Cristian Maglie 2012-06-26 00:52:05 +02:00
parent 46aeeb4b29
commit 7c0dfc01a5
3 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,6 @@ uno.build.mcu=atmega328p
uno.build.f_cpu=16000000L uno.build.f_cpu=16000000L
uno.build.core=arduino uno.build.core=arduino
uno.build.variant=standard uno.build.variant=standard
uno.build.extra_flags=
############################################################## ##############################################################

View File

@ -20,6 +20,8 @@ compiler.elf2hex.flags=-O ihex -R .eeprom
compiler.elf2hex.cmd=avr-objcopy compiler.elf2hex.cmd=avr-objcopy
compiler.ldflags= compiler.ldflags=
compiler.size.cmd=avr-size compiler.size.cmd=avr-size
# this can be overriden in boards.txt
build.extra_flags=
# AVR compile patterns # AVR compile patterns
# -------------------- # --------------------

View File

@ -21,6 +21,9 @@ compiler.elf2hex.cmd=arm-none-eabi-objcopy
compiler.ldflags= compiler.ldflags=
compiler.size.cmd=arm-none-eabi-size compiler.size.cmd=arm-none-eabi-size
compiler.define=-DARDUINO= compiler.define=-DARDUINO=
# this can be overriden in boards.txt
build.extra_flags=
compiler.libsam.c.flags="-I{build.system.path}/libsam" "-I{build.system.path}/CMSIS/CMSIS/Include/" "-I{build.system.path}/CMSIS/Device/ATMEL/" compiler.libsam.c.flags="-I{build.system.path}/libsam" "-I{build.system.path}/CMSIS/CMSIS/Include/" "-I{build.system.path}/CMSIS/Device/ATMEL/"