CHG: remove clang warning for -O4,

This commit is contained in:
iceman1001 2016-02-16 21:38:36 +01:00
parent c2a714e3ce
commit 489c39c9a5
3 changed files with 3 additions and 2 deletions
CHANGELOG.md
tools
mfkey
nonce2key

View file

@ -17,6 +17,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
- `hf mf c*` updated the calling structure and refactored of the chinese magic commands (iceman, marshmellow) - `hf mf c*` updated the calling structure and refactored of the chinese magic commands (iceman, marshmellow)
- Started to add Peter Fillmore's EMV fork into Iceman fork. ref: https://github.com/peterfillmore/proxmark3 (peter fillmore, iceman) - Started to add Peter Fillmore's EMV fork into Iceman fork. ref: https://github.com/peterfillmore/proxmark3 (peter fillmore, iceman)
- Added Travis-CI automatic build integration with GitHub fork. (iceman) - Added Travis-CI automatic build integration with GitHub fork. (iceman)
- Updated the Reveng 1.30 sourcecode to 1.31 from Reveng projecthomepage (iceman)
### Added ### Added
- `lf awid bruteforce <facilitycode>` - Simple bruteforce attack against a AWID reader. - `lf awid bruteforce <facilitycode>` - Simple bruteforce attack against a AWID reader.

View file

@ -1,6 +1,6 @@
CC = gcc CC = gcc
LD = gcc LD = gcc
CFLAGS = -Wall -Winline -O4 CFLAGS = -std=c99 -Wall -Winline -O3
LDFLAGS = LDFLAGS =
OBJS = crapto1.o crypto1.o OBJS = crapto1.o crypto1.o

View file

@ -1,6 +1,6 @@
CC = gcc CC = gcc
LD = gcc LD = gcc
CFLAGS = -Wall -O4 -c CFLAGS = -Wall -O3 -c
LDFLAGS = LDFLAGS =
OBJS = crypto1.o crapto1.o OBJS = crypto1.o crapto1.o