mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-30 17:03:34 +08:00
CHG: remove clang warning for -O4,
This commit is contained in:
parent
c2a714e3ce
commit
489c39c9a5
3 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
- 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)
|
||||
- Updated the Reveng 1.30 sourcecode to 1.31 from Reveng projecthomepage (iceman)
|
||||
|
||||
### Added
|
||||
- `lf awid bruteforce <facilitycode>` - Simple bruteforce attack against a AWID reader.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CC = gcc
|
||||
LD = gcc
|
||||
CFLAGS = -Wall -Winline -O4
|
||||
CFLAGS = -std=c99 -Wall -Winline -O3
|
||||
LDFLAGS =
|
||||
|
||||
OBJS = crapto1.o crypto1.o
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CC = gcc
|
||||
LD = gcc
|
||||
CFLAGS = -Wall -O4 -c
|
||||
CFLAGS = -Wall -O3 -c
|
||||
LDFLAGS =
|
||||
|
||||
OBJS = crypto1.o crapto1.o
|
||||
|
|
Loading…
Add table
Reference in a new issue