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