[Cryptech-Commits] [sw/tamper] 06/20: Compile with -std=gnu99 and -Wpedantic.

git at cryptech.is git at cryptech.is
Fri Jul 22 14:58:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

paul at psgd.org pushed a commit to branch master
in repository sw/tamper.

commit 4f229e0b1083154ee033ca9c2fd5c5367e1621ae
Author: Linus Nordberg <linus at nordberg.se>
AuthorDate: Fri Jun 10 16:01:35 2016 +0200

    Compile with -std=gnu99 and -Wpedantic.
    
    Can't use 'c99' since we're using asm().
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 8ac277b..3764fe4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 CC = avr-gcc
-CFLAGS = -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__
+CFLAGS = -std=gnu99 -Wpedantic -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__
 OBJCOPY = avr-objcopy
 
 all: tamper.hex



More information about the Commits mailing list