fix(storage): Adapt to changing insecure PRNG to be opt-in.

pull/2410/head
Andrew Kozlik 1 year ago committed by Andrew Kozlik
parent 877a236d74
commit 01edf3f796

@ -1,5 +1,11 @@
CC = cc
CFLAGS = -Wall -Wshadow -Wextra -Wpedantic -Werror -Wno-missing-braces -fPIC -fsanitize=address,undefined -DTREZOR_MODEL_T
CFLAGS = -Wall -Wshadow -Wextra -Wpedantic -Werror -Wno-missing-braces
CFLAGS += -fPIC
CFALGS += -fsanitize=address,undefined
CFLAGS += -DTREZOR_MODEL_T
CFLAGS += -DUSE_INSECURE_PRNG
LIBS =
INC = -I ../../../crypto -I ../.. -I .
BASE = ../../../

Loading…
Cancel
Save