mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
fixed an issue, -Wl,--gc-sections needed to have a comma.
This commit is contained in:
parent
dacfa86223
commit
a6646ca08c
@ -82,7 +82,7 @@ public class Target {
|
||||
} catch (Exception e) {
|
||||
System.err.println("Error loading platforms from " +
|
||||
platformsFile + ": " + e);
|
||||
System.exit(0);
|
||||
//System.exit(0);
|
||||
|
||||
}
|
||||
|
||||
|
@ -43,7 +43,7 @@ avr.name=Arduino
|
||||
#avr.compiler.path={0}/hardware/tools/avr/bin/
|
||||
avr.compiler.c.cmd=avr-gcc
|
||||
avr.compiler.c.flags=|-c|-g|-Os|-w|-ffunction-sections|-fdata-sections
|
||||
avr.compiler.c.elf.flags=|-Os|-Wl|--gc-sections
|
||||
avr.compiler.c.elf.flags=|-Os|-Wl,--gc-sections
|
||||
avr.compiler.c.elf.cmd=avr-gcc
|
||||
avr.compiler.S.flags=|-c|-g|-assembler-with-cpp
|
||||
avr.compiler.cpp.cmd=avr-g++
|
||||
|
Loading…
x
Reference in New Issue
Block a user