[Cryptech-Commits] [user/jakob/tamper] 06/13: Compile with -std=gnu99 and -Wpedantic.
    git at cryptech.is 
    git at cryptech.is
       
    Sat Jul 16 08:29:42 UTC 2016
    
    
  
This is an automated email from the git hooks/post-receive script.
jakob at kirei.se pushed a commit to branch master
in repository user/jakob/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