Skip to content

Commit

Permalink
Makefile: optimize for speed instead of size
Browse files Browse the repository at this point in the history
  • Loading branch information
esmil committed Aug 6, 2010
1 parent 3e3719f commit beb24fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PORT = /dev/ttyUSB0
BAUD_RATE = 57600
PROGRAMMER = arduino
ARDUINO_HEADERS = .
CFLAGS = -Os -g -mmcu=$(MCU) -DF_CPU=$(F_CPU) \
CFLAGS = -O2 -g -mmcu=$(MCU) -DF_CPU=$(F_CPU) \
-funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \
-Wall -Wextra -pedantic -I$(ARDUINO_HEADERS)

Expand Down

0 comments on commit beb24fc

Please sign in to comment.