mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Add ability to compile on iOS
This commit is contained in:
parent
043ff257c4
commit
9f87b6dd9c
6 changed files with 40 additions and 4 deletions
|
@ -9,6 +9,9 @@ MYLDLIBS = -lcrypto
|
|||
cpu_arch = $(shell uname -m)
|
||||
ifneq ($(findstring arm64, $(cpu_arch)), )
|
||||
MYCFLAGS += -mcpu=native
|
||||
# iOS 'fun'
|
||||
else ifneq ($(findstring iP, $(cpu_arch)), )
|
||||
MYCFLAGS += -mcpu=native
|
||||
else
|
||||
MYCFLAGS += -march=native
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue