diff options
author | Cristian Maglie <c.maglie@bug.st> | 2012-12-22 19:31:03 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2012-12-22 19:31:03 +0100 |
commit | 911e9ac4e3874fce63a1685bf7262a022a1f60e4 (patch) | |
tree | cdb499f295c6d06dcf73c0592d4e8ccece5c59a5 /bootloaders/stk500v2/Makefile | |
parent | a75fae6ee9545740e8e6d3bdf13296da27af8468 (diff) |
Fixed compile problems with avr gcc 4.6.2 (crosspack CrossPack-AVR-20121207.dmg)
Diffstat (limited to 'bootloaders/stk500v2/Makefile')
-rwxr-xr-x | bootloaders/stk500v2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloaders/stk500v2/Makefile b/bootloaders/stk500v2/Makefile index 54c5f85..6b66a26 100755 --- a/bootloaders/stk500v2/Makefile +++ b/bootloaders/stk500v2/Makefile @@ -124,7 +124,7 @@ CINCS = CFLAGS = -g$(DEBUG)
CFLAGS += $(CDEFS) $(CINCS)
CFLAGS += -O$(OPT)
-CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -mno-tablejump
+CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -fno-jump-tables
CFLAGS += -Wall -Wstrict-prototypes
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
|