mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-10 15:04:59 +00:00
* ensure the avr example keeps compiling * Update tests/avr/thello.nim * now compiles properly
13 lines
285 B
Nim
13 lines
285 B
Nim
avr.standalone.gcc.path = "/usr/bin"
|
|
avr.standalone.gcc.exe = "avr-gcc"
|
|
avr.standalone.gcc.linkerexe = "avr-gcc"
|
|
passC = "-Os"
|
|
passC = "-DF_CPU=16000000UL"
|
|
passC = "-mmcu=atmega328p"
|
|
passL = "-mmcu=atmega328p"
|
|
passC = "-flto"
|
|
passL = "-flto"
|
|
cpu = "avr"
|
|
deadCodeElim = "on"
|
|
gc = "arc"
|