diff options
author | Federico Fissore <f.fissore@arduino.cc> | 2015-06-15 15:30:37 +0200 |
---|---|---|
committer | Federico Fissore <f.fissore@arduino.cc> | 2015-06-29 15:11:45 +0200 |
commit | 92bedd86b8a3b6c2fcdacd4b625193de48d9a69d (patch) | |
tree | 12edc12d44abb437884629726d34dedafc023004 /platform.keys.rewrite.txt | |
parent | 695d48cc79be523ea2ab64573f4aac011a056496 (diff) |
Compiler: cores files get compiled under "core", libraries under "libraries". Fixes #2997
Diffstat (limited to 'platform.keys.rewrite.txt')
-rw-r--r-- | platform.keys.rewrite.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform.keys.rewrite.txt b/platform.keys.rewrite.txt index e14de1e..bc6bb5e 100644 --- a/platform.keys.rewrite.txt +++ b/platform.keys.rewrite.txt @@ -15,3 +15,6 @@ new.3.compiler.path={runtime.tools.arm-none-eabi-gcc.path}/bin/ old.4.tools.bossac.path={runtime.ide.path}/hardware/tools new.4.tools.bossac.path={runtime.tools.bossac.path} +old.5.recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group "{build.path}/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group -lm -gcc +new.5.recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group "{build.path}/core/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group -lm -gcc + |