Fix make all on MacOS
This commit is contained in:
parent
fb93891685
commit
747e291c73
1
.gitignore
vendored
1
.gitignore
vendored
@ -78,3 +78,4 @@ venv/
|
||||
.project
|
||||
.tags*
|
||||
targets/*/docs/
|
||||
main
|
||||
|
7
Makefile
7
Makefile
@ -16,7 +16,12 @@ src = $(wildcard pc/*.c) $(wildcard fido2/*.c) $(wildcard crypto/sha256/*.c) cry
|
||||
obj = $(src:.c=.o) uECC.o
|
||||
|
||||
LIBCBOR = tinycbor/lib/libtinycbor.a
|
||||
LDFLAGS = -Wl,--gc-sections $(LIBCBOR)
|
||||
ifeq ($(shell uname -s),Darwin)
|
||||
export LDFLAGS = -Wl,-dead_strip
|
||||
else
|
||||
export LDFLAGS = -Wl,--gc-sections
|
||||
endif
|
||||
LDFLAGS += $(LIBCBOR)
|
||||
CFLAGS = -O2 -fdata-sections -ffunction-sections
|
||||
|
||||
INCLUDES = -I./tinycbor/src -I./crypto/sha256 -I./crypto/micro-ecc/ -Icrypto/tiny-AES-c/ -I./fido2/ -I./pc -I./fido2/extensions
|
||||
|
Loading…
x
Reference in New Issue
Block a user