mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
hitag2crack: support clang
This commit is contained in:
parent
07a8369058
commit
1e40db9a35
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@
|
|||
|
||||
// We want the crypto functions to be as fast as possible, so optimize!
|
||||
// The best compiler optimization in Microchip's free XC32 edition is -O1
|
||||
#ifndef __APPLE__
|
||||
#if defined(__GNUC__) && !defined(__clang__)
|
||||
#pragma GCC optimize("O1")
|
||||
#endif
|
||||
|
||||
|
@ -369,6 +369,6 @@ uint32_t hitag2_nstep(Hitag_State *pstate, uint32_t steps) {
|
|||
}
|
||||
|
||||
// end of crypto core, revert to default optimization level
|
||||
#ifndef __APPLE__
|
||||
#if defined(__GNUC__) && !defined(__clang__)
|
||||
#pragma GCC reset_options
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue