Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crypto_adx_flag.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ else
endif

# Flags to disable ADX instructions for older CPUs
DISABLE_ADX := -O2 -D__BLST_PORTABLE__
DISABLE_ADX := "-O2 -D__BLST_PORTABLE__"

# Then, set `CRYPTO_FLAG`
# the crypto package uses BLST source files underneath which may use ADX instructions.
Expand All @@ -27,4 +27,4 @@ ifeq ($(ADX_SUPPORT), 1)
else
# if ADX instructions aren't supported, this CGO flags uses a slower non-ADX implementation
CRYPTO_FLAG := $(DISABLE_ADX)
endif
endif
Loading