mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
8 lines
217 B
Makefile
8 lines
217 B
Makefile
# Optimization level
|
|
# -O1 Optimize
|
|
# -O2 Optimize even more
|
|
# -O3 Optimize yet more
|
|
# -O0 Reduce compilation time and make debugging produce the expected results
|
|
# -Os Optimize for size
|
|
OPTIMIZATION = -g -O0 -DDEBUG
|