mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
forgot to set the var...
This commit is contained in:
parent
774f1c33ef
commit
c26d33dfd3
1 changed files with 4 additions and 4 deletions
|
@ -4,21 +4,21 @@ MYINCLUDES = -I../../common/cryptorf
|
|||
MYCFLAGS =
|
||||
MYDEFS =
|
||||
|
||||
platform = $(shell uname)
|
||||
|
||||
# Atomic
|
||||
# RPi Zero gcc requires -latomic
|
||||
# but MacOSX /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
|
||||
# doesn't recognize option --as-needed
|
||||
ifneq ($(platform),Darwin)
|
||||
MYLDLIBS += -lpthread -Wl,--as-needed -latomic -Wl,--no-as-needed
|
||||
LDLIBS += -lpthread -Wl,--as-needed -latomic -Wl,--no-as-needed
|
||||
endif
|
||||
|
||||
BINS = cm sm sma sma_multi
|
||||
INSTALLTOOLS = $(BINS)
|
||||
|
||||
platform = $(shell uname)
|
||||
|
||||
ifeq ($(platform),Darwin)
|
||||
CXXFLAGS = -std=c++14
|
||||
CXXFLAGS = -std=c++14
|
||||
endif
|
||||
|
||||
include ../../Makefile.host
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue