2018-01-25 23:39:24 +00:00
|
|
|
# https://www.gnu.org/software/make/manual/make.html#Makefile-Conventions
|
2018-02-05 13:54:13 +00:00
|
|
|
# and https://www.gnu.org/prep/standards/standards.html
|
|
|
|
|
2018-01-25 23:39:24 +00:00
|
|
|
SHELL = /bin/sh
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# If needed
|
|
|
|
TMPDIR ?= /tmp
|
|
|
|
# Used for ARMv7 and NEON.
|
|
|
|
FP_ABI ?= hard
|
|
|
|
# Used for feature tests
|
|
|
|
TOUT ?= a.out
|
|
|
|
TOUT := $(strip $(TOUT))
|
|
|
|
|
2017-05-27 02:20:38 +00:00
|
|
|
# Default CXXFLAGS if none were provided
|
|
|
|
CXXFLAGS ?= -DNDEBUG -g2 -O3 -fPIC -pipe
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2015-12-31 06:43:42 +00:00
|
|
|
AR ?= ar
|
|
|
|
ARFLAGS ?= cr
|
2015-11-05 06:59:46 +00:00
|
|
|
RANLIB ?= ranlib
|
2015-12-31 06:43:42 +00:00
|
|
|
CP ?= cp
|
|
|
|
MV ?= mv
|
|
|
|
CHMOD ?= chmod
|
2018-02-05 13:54:13 +00:00
|
|
|
MKDIR ?= mkdir -p
|
2015-12-31 06:43:42 +00:00
|
|
|
EGREP ?= egrep
|
2018-02-05 13:54:13 +00:00
|
|
|
|
2015-12-26 18:57:04 +00:00
|
|
|
LN ?= ln -sf
|
2017-12-16 14:07:23 +00:00
|
|
|
LDCONF ?= /sbin/ldconfig -n
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
IS_IOS ?= 0
|
|
|
|
IS_ANDROID ?= 0
|
|
|
|
IS_ARM_EMBEDDED ?= 0
|
2017-09-18 00:07:53 +00:00
|
|
|
IS_NEON ?= 0
|
|
|
|
|
2016-01-05 20:05:29 +00:00
|
|
|
# Can be used by Android and Embeeded cross-compiles. Disable by default because
|
|
|
|
# Android and embedded users typically don't run this configuration.
|
|
|
|
HAS_SOLIB_VERSION ?= 0
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
# Formely adhoc.cpp was created from adhoc.cpp.proto when needed.
|
|
|
|
# This is now needed because ISA tests are performed using adhoc.cpp.
|
|
|
|
ifeq ($(wildcard adhoc.cpp),)
|
|
|
|
$(shell cp adhoc.cpp.proto adhoc.cpp)
|
|
|
|
endif
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
##### General Variables #####
|
|
|
|
###########################################################
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
# Default prefix for make install
|
|
|
|
ifeq ($(PREFIX),)
|
|
|
|
PREFIX = /usr/local
|
|
|
|
endif
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2015-12-31 06:43:42 +00:00
|
|
|
# http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
|
|
|
|
ifeq ($(DATADIR),)
|
|
|
|
DATADIR := $(PREFIX)/share
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBDIR),)
|
|
|
|
LIBDIR := $(PREFIX)/lib
|
|
|
|
endif
|
|
|
|
ifeq ($(BINDIR),)
|
|
|
|
BINDIR := $(PREFIX)/bin
|
|
|
|
endif
|
|
|
|
ifeq ($(INCLUDEDIR),)
|
|
|
|
INCLUDEDIR := $(PREFIX)/include
|
|
|
|
endif
|
|
|
|
|
|
|
|
# We honor ARFLAGS, but the "v" option used by default causes a noisy make
|
|
|
|
ifeq ($(ARFLAGS),rv)
|
2018-12-01 17:48:47 +00:00
|
|
|
ARFLAGS = r
|
2015-12-31 06:43:42 +00:00
|
|
|
endif
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
# Sadly, we can't actually use GCC_PRAGMA_AWARE because of GCC bug 53431.
|
|
|
|
# Its a shame because GCC has so much to offer by the way of analysis.
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431
|
|
|
|
ifneq ($(CLANG_COMPILER),0)
|
2018-12-01 17:48:47 +00:00
|
|
|
CXXFLAGS += -Wall
|
2015-11-05 06:59:46 +00:00
|
|
|
endif
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### iOS #####
|
|
|
|
###########################################################
|
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
# iOS cross-compile configuration.
|
2015-06-08 11:50:22 +00:00
|
|
|
# See http://www.cryptopp.com/wiki/iOS_(Command_Line).
|
|
|
|
ifeq ($(IS_IOS),1)
|
2015-11-05 06:59:46 +00:00
|
|
|
CXX = clang++
|
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
CXXFLAGS += $(IOS_FLAGS) -arch $(IOS_ARCH)
|
2018-04-26 10:56:26 +00:00
|
|
|
CXXFLAGS += -isysroot "$(IOS_SYSROOT)" -stdlib=libc++
|
2015-06-08 11:50:22 +00:00
|
|
|
|
|
|
|
AR = libtool
|
|
|
|
ARFLAGS = -static -o
|
2015-12-08 19:55:58 +00:00
|
|
|
RANLIB = ranlib
|
2015-06-08 11:50:22 +00:00
|
|
|
endif
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### Android #####
|
|
|
|
###########################################################
|
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
# Android cross-compile configuration.
|
2015-06-08 11:50:22 +00:00
|
|
|
# See http://www.cryptopp.com/wiki/Android_(Command_Line).
|
|
|
|
ifeq ($(IS_ANDROID),1)
|
|
|
|
# CPP, CXX, AR, RANLIB, LD, etc are set in 'setenv-android.sh'
|
2015-12-08 19:55:58 +00:00
|
|
|
CXXFLAGS += $(AOSP_FLAGS) -DANDROID --sysroot=$(AOSP_SYSROOT)
|
2018-01-28 20:29:14 +00:00
|
|
|
CXXFLAGS += -Wa,--noexecstack -I$(AOSP_STL_INC) -I$(AOSP_SYS_ARCH_INC)
|
2018-01-21 14:05:34 +00:00
|
|
|
LDFLAGS += --sysroot=$(AOSP_LD_SYSROOT)
|
2015-12-08 19:55:58 +00:00
|
|
|
|
|
|
|
# c++config.h shows up in odd places at times.
|
|
|
|
ifneq ($(AOSP_BITS_INC),)
|
|
|
|
CXXFLAGS += -I$(AOSP_BITS_INC)
|
|
|
|
endif
|
|
|
|
|
2017-09-13 11:16:41 +00:00
|
|
|
# STL headers
|
2015-12-08 19:55:58 +00:00
|
|
|
LDLIBS += $(AOSP_STL_LIB)
|
2017-09-13 11:16:41 +00:00
|
|
|
|
|
|
|
# Source files copied into PWD for Android cpu-features
|
|
|
|
# setenv-android.sh does the copying. Its a dirty compile.
|
|
|
|
AOSP_CPU_OBJ = cpu-features.o
|
2015-06-08 11:50:22 +00:00
|
|
|
endif
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### Embedded #####
|
|
|
|
###########################################################
|
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
# ARM embedded cross-compile configuration.
|
2015-06-08 11:50:22 +00:00
|
|
|
# See http://www.cryptopp.com/wiki/ARM_Embedded_(Command_Line)
|
|
|
|
# and http://www.cryptopp.com/wiki/ARM_Embedded_(Bare Metal).
|
|
|
|
ifeq ($(IS_ARM_EMBEDDED),1)
|
|
|
|
# CPP, CXX, AR, RANLIB, LD, etc are set in 'setenv-embedded.sh'
|
2015-12-08 19:55:58 +00:00
|
|
|
CXXFLAGS += $(ARM_EMBEDDED_FLAGS) --sysroot=$(ARM_EMBEDDED_SYSROOT)
|
2015-06-08 11:50:22 +00:00
|
|
|
endif
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
###########################################################
|
|
|
|
##### Compiler and Platform #####
|
|
|
|
###########################################################
|
|
|
|
|
2018-12-01 18:13:35 +00:00
|
|
|
# Wait until CXXFLAGS have been set by setenv scripts.
|
2018-12-01 17:48:47 +00:00
|
|
|
|
2018-12-01 18:13:35 +00:00
|
|
|
GCC_COMPILER := $(shell $(CXX) --version 2>/dev/null | $(EGREP) -v -E 'llvm|clang' | $(EGREP) -i -c -E '(gcc|g\+\+)')
|
|
|
|
CLANG_COMPILER := $(shell $(CXX) --version 2>/dev/null | $(EGREP) -i -c -E 'llvm|clang')
|
2018-12-01 17:48:47 +00:00
|
|
|
|
|
|
|
HOSTX := $(shell $(CXX) $(CXXFLAGS) -dumpmachine 2>/dev/null | cut -f 1 -d '-')
|
|
|
|
ifeq ($(HOSTX),)
|
|
|
|
HOSTX := $(shell uname -m 2>/dev/null)
|
|
|
|
endif
|
|
|
|
|
2018-12-01 18:13:35 +00:00
|
|
|
# This dance is because Clang reports the host architecture instead
|
|
|
|
# of the target architecture. Running Clang on an x86_64 machine with
|
|
|
|
# -arch arm64 yields x86_64 instead of aarch64 or arm64.
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
ifeq ($(CLANG_COMPILER),1)
|
|
|
|
IS_X86 := $(shell echo $(CXXFLAGS) | $(EGREP) -v 64 | $(EGREP) -i -c -E 'i.86')
|
|
|
|
IS_X64 := $(shell echo $(CXXFLAGS) | $(EGREP) -i -c -E 'x86_64|amd64')
|
|
|
|
IS_ARM32 := $(shell echo $(CXXFLAGS) | $(EGREP) -v 64 | $(EGREP) -i -c -E 'arm|armhf|arm7l|eabihf')
|
|
|
|
IS_ARMV8 := $(shell echo $(CXXFLAGS) | $(EGREP) -i -c -E 'aarch32|aarch64|arm64|armv8')
|
|
|
|
else
|
|
|
|
IS_X86 := $(shell echo $(HOSTX) | $(EGREP) -v 64 | $(EGREP) -i -c -E 'i.86')
|
|
|
|
IS_X64 := $(shell echo $(HOSTX) | $(EGREP) -i -c -E 'x86_64|amd64')
|
|
|
|
IS_ARM32 := $(shell echo $(HOSTX) | $(EGREP) -v 64 | $(EGREP) -i -c -E 'arm|armhf|arm7l|eabihf')
|
|
|
|
IS_ARMV8 := $(shell echo $(HOSTX) | $(EGREP) -i -c -E 'aarch32|aarch64|arm64|armv8')
|
|
|
|
endif
|
|
|
|
|
2018-12-01 18:13:35 +00:00
|
|
|
$(info Here's what we found... IS_X86: $(IS_X86), IS_X64: $(IS_X64), IS_ARM32: $(IS_ARM32), IS_ARMV8: $(IS_ARMV8))
|
2018-12-01 17:48:47 +00:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
##### Test Program #####
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
# Hack to skip CPU feature tests for some recipes
|
|
|
|
DETECT_FEATURES ?= 1
|
|
|
|
ifeq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CXXFLAGS)),-DCRYPTOPP_DISABLE_ASM)
|
|
|
|
DETECT_FEATURES := 0
|
|
|
|
else ifeq ($(findstring clean,$(MAKECMDGOALS)),clean)
|
|
|
|
DETECT_FEATURES := 0
|
|
|
|
else ifeq ($(findstring distclean,$(MAKECMDGOALS)),distclean)
|
|
|
|
DETECT_FEATURES := 0
|
|
|
|
else ifeq ($(findstring distclean,$(MAKECMDGOALS)),trim)
|
|
|
|
DETECT_FEATURES := 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Strip out -Wall, -Wextra and friends for feature testing
|
|
|
|
ifeq ($(DETECT_FEATURES),1)
|
2018-12-05 23:35:21 +00:00
|
|
|
TCXXFLAGS := $(filter-out -Wall -Wextra -Werror% -Wunused -Wconversion -Wp%, $(CXXFLAGS))
|
2018-12-01 17:48:47 +00:00
|
|
|
ifneq ($(strip $(TCXXFLAGS)),)
|
|
|
|
$(info Using testing flags: $(TCXXFLAGS))
|
|
|
|
endif
|
2019-02-03 16:09:10 +00:00
|
|
|
#TPROG = TestPrograms/test_cxx.cxx
|
|
|
|
#$(info Testing compile... )
|
|
|
|
#$(info $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 1>/dev/null))
|
2018-12-01 17:48:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
# For the previous messages
|
|
|
|
$(info )
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
##### X86/X32/X64 Options #####
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
ifneq ($(IS_X86)$(IS_X64),00)
|
|
|
|
ifeq ($(DETECT_FEATURES),1)
|
|
|
|
|
|
|
|
SSE2_FLAG = -msse2
|
|
|
|
SSE3_FLAG = -msse3
|
|
|
|
SSSE3_FLAG = -mssse3
|
|
|
|
SSE41_FLAG = -msse4.1
|
|
|
|
SSE42_FLAG = -msse4.2
|
|
|
|
CLMUL_FLAG = -mpclmul
|
|
|
|
AESNI_FLAG = -maes
|
|
|
|
AVX_FLAG = -mavx
|
|
|
|
AVX2_FLAG = -mavx2
|
|
|
|
SHANI_FLAG = -msha
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_sse2.cxx
|
|
|
|
TOPT = $(SSE2_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
CHACHA_FLAG = $(SSE2_FLAG)
|
|
|
|
else
|
|
|
|
SSE2_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_ssse3.cxx
|
|
|
|
TOPT = $(SSSE3_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
ARIA_FLAG = $(SSSE3_FLAG)
|
|
|
|
CHAM_FLAG = $(SSSE3_FLAG)
|
|
|
|
LEA_FLAG = $(SSSE3_FLAG)
|
|
|
|
SIMECK_FLAG = $(SSSE3_FLAG)
|
|
|
|
SIMON64_FLAG = $(SSSE3_FLAG)
|
|
|
|
SIMON128_FLAG = $(SSSE3_FLAG)
|
|
|
|
SPECK64_FLAG = $(SSSE3_FLAG)
|
|
|
|
SPECK128_FLAG = $(SSSE3_FLAG)
|
|
|
|
else
|
|
|
|
SSSE3_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_sse41.cxx
|
|
|
|
TOPT = $(SSE41_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
BLAKE2B_FLAG = $(SSE41_FLAG)
|
|
|
|
BLAKE2S_FLAG = $(SSE41_FLAG)
|
|
|
|
SIMON64_FLAG = $(SSE41_FLAG)
|
|
|
|
SPECK64_FLAG = $(SSE41_FLAG)
|
|
|
|
else
|
|
|
|
SSE41_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_sse42.cxx
|
|
|
|
TOPT = $(SSE42_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
CRC_FLAG = $(SSE42_FLAG)
|
|
|
|
else
|
|
|
|
SSE42_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_clmul.cxx
|
|
|
|
TOPT = $(CLMUL_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
GCM_FLAG = $(SSSE3_FLAG) $(CLMUL_FLAG)
|
|
|
|
else
|
|
|
|
CLMUL_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_aes.cxx
|
|
|
|
TOPT = $(AESNI_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
AES_FLAG = $(SSE41_FLAG) $(AESNI_FLAG)
|
|
|
|
SM4_FLAG = $(SSSE3_FLAG) $(AESNI_FLAG)
|
|
|
|
else
|
|
|
|
AESNI_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_avx.cxx
|
|
|
|
TOPT = $(AVX_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
# XXX_FLAG = $(AVX_FLAG)
|
|
|
|
else
|
|
|
|
AVX_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_avx2.cxx
|
|
|
|
TOPT = $(AVX2_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
CHACHA_AVX2_FLAG = $(AVX2_FLAG)
|
|
|
|
else
|
|
|
|
AVX2_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_x86_sha.cxx
|
|
|
|
TOPT = $(SHANI_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
SHA_FLAG = $(SSE42_FLAG) $(SHANI_FLAG)
|
|
|
|
else
|
|
|
|
SHANI_FLAG =
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(SSE2_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_ASM
|
|
|
|
else ifeq ($(SSE3_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_SSE3
|
|
|
|
else ifeq ($(SSSE3_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_SSSE3
|
|
|
|
else ifeq ($(SSE41_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_SSE4
|
|
|
|
else ifeq ($(SSE42_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_SSE4
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(SSE42_FLAG),)
|
2018-12-02 02:33:17 +00:00
|
|
|
|
|
|
|
# Unusual GCC/Clang on Macports. It assembles AES, but not CLMUL.
|
|
|
|
# test_x86_clmul.s:15: no such instruction: 'pclmulqdq $0, %xmm1,%xmm0'
|
|
|
|
ifeq ($(CLMUL_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_CLMUL
|
|
|
|
endif
|
|
|
|
ifeq ($(AESNI_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_AESNI
|
|
|
|
endif
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
ifeq ($(AVX_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_AVX
|
|
|
|
else ifeq ($(AVX2_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_AVX2
|
|
|
|
else ifeq ($(SHANI_FLAG),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_SHANI
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-12-29 05:56:25 +00:00
|
|
|
# Drop to SSSE2 if available
|
|
|
|
ifeq ($(SSSE3_FLAG),)
|
|
|
|
ifneq ($(SSE2_FLAG),)
|
|
|
|
GCM_FLAG = $(SSE2_FLAG)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# DETECT_FEATURES
|
|
|
|
endif
|
|
|
|
|
|
|
|
# IS_X86, IS_X32 and IS_X64
|
|
|
|
endif
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
##### ARM A-32, Aach64 and NEON #####
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
ifneq ($(IS_ARM32)$(IS_ARMV8),00)
|
|
|
|
ifeq ($(DETECT_FEATURES),1)
|
|
|
|
|
|
|
|
ifeq ($(IS_ARM32),1)
|
|
|
|
|
|
|
|
ifneq ($(IS_IOS)$(IS_ANDROID),00)
|
|
|
|
NEON_FLAG =
|
|
|
|
else
|
|
|
|
NEON_FLAG = -march=armv7-a -mfloat-abi=$(FP_ABI) -mfpu=neon
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_neon.cxx
|
|
|
|
TOPT = $(NEON_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
ARIA_FLAG = $(NEON_FLAG)
|
|
|
|
AES_FLAG = $(NEON_FLAG)
|
|
|
|
CRC_FLAG = $(NEON_FLAG)
|
|
|
|
GCM_FLAG = $(NEON_FLAG)
|
|
|
|
BLAKE2B_FLAG = $(NEON_FLAG)
|
|
|
|
BLAKE2S_FLAG = $(NEON_FLAG)
|
|
|
|
CHACHA_FLAG = $(NEON_FLAG)
|
|
|
|
CHAM_FLAG = $(NEON_FLAG)
|
|
|
|
LEA_FLAG = $(NEON_FLAG)
|
|
|
|
SHA_FLAG = $(NEON_FLAG)
|
|
|
|
SIMECK_FLAG = $(NEON_FLAG)
|
|
|
|
SIMON64_FLAG = $(NEON_FLAG)
|
|
|
|
SIMON128_FLAG = $(NEON_FLAG)
|
|
|
|
SPECK64_FLAG = $(NEON_FLAG)
|
|
|
|
SPECK128_FLAG = $(NEON_FLAG)
|
|
|
|
SM4_FLAG = $(NEON_FLAG)
|
|
|
|
else
|
|
|
|
NEON_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_NEON
|
|
|
|
endif
|
|
|
|
|
|
|
|
# IS_NEON
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(IS_ARMV8),1)
|
|
|
|
|
|
|
|
ifeq ($(IS_IOS),1)
|
|
|
|
ASIMD_FLAG =
|
|
|
|
CRC_FLAG =
|
|
|
|
AES_FLAG =
|
|
|
|
PMUL_FLAG =
|
|
|
|
SHA_FLAG =
|
|
|
|
else
|
2018-12-04 10:49:21 +00:00
|
|
|
ASIMD_FLAG = -march=armv8-a
|
|
|
|
CRC_FLAG = -march=armv8-a+crc
|
|
|
|
AES_FLAG = -march=armv8-a+crypto
|
|
|
|
PMULL_FLAG = -march=armv8-a+crypto
|
|
|
|
SHA_FLAG = -march=armv8-a+crypto
|
2018-12-01 17:48:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_acle.cxx
|
|
|
|
TOPT = $(ASIMD_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(TCXXFLAGS) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
ACLE_FLAG += -DCRYPTOPP_ARM_ACLE_AVAILABLE=1
|
|
|
|
else
|
|
|
|
CXXFLAGS += -DCRYPTOPP_ARM_ACLE_AVAILABLE=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_asimd.cxx
|
|
|
|
TOPT = $(ASIMD_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
ARIA_FLAG = $(ASIMD_FLAG)
|
|
|
|
BLAKE2B_FLAG = $(ASIMD_FLAG)
|
|
|
|
BLAKE2S_FLAG = $(ASIMD_FLAG)
|
|
|
|
CHACHA_FLAG = $(ASIMD_FLAG)
|
|
|
|
CHAM_FLAG = $(ASIMD_FLAG)
|
|
|
|
LEA_FLAG = $(ASIMD_FLAG)
|
|
|
|
NEON_FLAG = $(ASIMD_FLAG)
|
|
|
|
SIMECK_FLAG = $(ASIMD_FLAG)
|
|
|
|
SIMON64_FLAG = $(ASIMD_FLAG)
|
|
|
|
SIMON128_FLAG = $(ASIMD_FLAG)
|
|
|
|
SPECK64_FLAG = $(ASIMD_FLAG)
|
|
|
|
SPECK128_FLAG = $(ASIMD_FLAG)
|
|
|
|
SM4_FLAG = $(ASIMD_FLAG)
|
|
|
|
else
|
|
|
|
ASIMD_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_ASM
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_crc.cxx
|
|
|
|
TOPT = $(CRC_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifneq ($(strip $(HAVE_OPT)),0)
|
|
|
|
CRC_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_ARM_CRC32_AVAILABLE=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_aes.cxx
|
|
|
|
TOPT = $(AES_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifneq ($(strip $(HAVE_OPT)),0)
|
|
|
|
AES_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_ARM_AES_AVAILABLE=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_pmull.cxx
|
|
|
|
TOPT = $(PMULL_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifneq ($(strip $(HAVE_OPT)),0)
|
|
|
|
PMULL_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_ARM_PMULL_AVAILABLE=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_sha.cxx
|
|
|
|
TOPT = $(SHA_FLAG)
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifneq ($(strip $(HAVE_OPT)),0)
|
|
|
|
SHA_FLAG =
|
|
|
|
CXXFLAGS += -DCRYPTOPP_ARM_SHA_AVAILABLE=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_sm3.cxx
|
|
|
|
TOPT = -march=armv8.4-a+crypto
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
SM3_FLAG = -march=armv8.4-a+crypto
|
|
|
|
SM4_FLAG = -march=armv8.4-a+crypto
|
|
|
|
endif
|
|
|
|
|
|
|
|
TPROG = TestPrograms/test_arm_sha3.cxx
|
|
|
|
TOPT = -march=armv8.4-a+crypto
|
|
|
|
HAVE_OPT = $(shell $(CXX) $(CXXFLAGS) $(ACLE_FLAG) $(ZOPT) $(TOPT) $(TPROG) -o $(TOUT) 2>&1 | tr ' ' '\n' | wc -l)
|
|
|
|
ifeq ($(strip $(HAVE_OPT)),0)
|
|
|
|
SHA3_FLAG = -march=armv8.4-a+crypto
|
|
|
|
SHA512_FLAG = -march=armv8.4-a+crypto
|
|
|
|
endif
|
|
|
|
|
|
|
|
# IS_ARMV8
|
|
|
|
endif
|
|
|
|
|
|
|
|
# DETECT_FEATURES
|
|
|
|
endif
|
|
|
|
|
|
|
|
# IS_ARM32, IS_ARMV8, IS_NEON
|
|
|
|
endif
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### Common #####
|
|
|
|
###########################################################
|
|
|
|
|
2017-05-27 02:20:38 +00:00
|
|
|
# No ASM for Travis testing
|
|
|
|
ifeq ($(findstring no-asm,$(MAKECMDGOALS)),no-asm)
|
|
|
|
ifeq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_DISABLE_ASM
|
|
|
|
endif # CXXFLAGS
|
|
|
|
endif # No ASM
|
|
|
|
|
|
|
|
# Undefined Behavior Sanitizer (UBsan) testing. Issue 'make ubsan'.
|
|
|
|
ifeq ($(findstring ubsan,$(MAKECMDGOALS)),ubsan)
|
|
|
|
ifeq ($(findstring -fsanitize=undefined,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -fsanitize=undefined
|
|
|
|
endif # CXXFLAGS
|
|
|
|
ifeq ($(findstring -DCRYPTOPP_COVERAGE,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_COVERAGE
|
|
|
|
endif # CXXFLAGS
|
|
|
|
endif # UBsan
|
|
|
|
|
|
|
|
# Address Sanitizer (Asan) testing. Issue 'make asan'.
|
|
|
|
ifeq ($(findstring asan,$(MAKECMDGOALS)),asan)
|
|
|
|
ifeq ($(findstring -fsanitize=address,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -fsanitize=address
|
|
|
|
endif # CXXFLAGS
|
|
|
|
ifeq ($(findstring -DCRYPTOPP_COVERAGE,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_COVERAGE
|
|
|
|
endif # CXXFLAGS
|
|
|
|
ifeq ($(findstring -fno-omit-frame-pointer,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -fno-omit-frame-pointer
|
|
|
|
endif # CXXFLAGS
|
|
|
|
endif # Asan
|
|
|
|
|
|
|
|
# LD gold linker testing. Triggered by 'LD=ld.gold'.
|
|
|
|
ifeq ($(findstring ld.gold,$(LD)),ld.gold)
|
|
|
|
ifeq ($(findstring -fuse-ld=gold,$(CXXFLAGS)),)
|
|
|
|
ELF_FORMAT := $(shell file `which ld.gold` 2>&1 | cut -d":" -f 2 | $(EGREP) -i -c "elf")
|
|
|
|
ifneq ($(ELF_FORMAT),0)
|
|
|
|
LDFLAGS += -fuse-ld=gold
|
|
|
|
endif # ELF/ELF64
|
|
|
|
endif # CXXFLAGS
|
|
|
|
endif # Gold
|
|
|
|
|
|
|
|
# Valgrind testing. Issue 'make valgrind'.
|
|
|
|
ifneq ($(filter valgrind,$(MAKECMDGOALS)),)
|
|
|
|
# Tune flags; see http://valgrind.org/docs/manual/quick-start.html
|
|
|
|
CXXFLAGS := $(CXXFLAGS:-g%=-g3)
|
|
|
|
CXXFLAGS := $(CXXFLAGS:-O%=-O1)
|
|
|
|
CXXFLAGS := $(CXXFLAGS:-xO%=-xO1)
|
|
|
|
ifeq ($(findstring -DCRYPTOPP_VALGRIND,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -DCRYPTOPP_VALGRIND
|
|
|
|
endif # -DCRYPTOPP_VALGRIND
|
|
|
|
endif # Valgrind
|
|
|
|
|
|
|
|
# Debug testing on GNU systems. Triggered by -DDEBUG.
|
|
|
|
# Newlib test due to http://sourceware.org/bugzilla/show_bug.cgi?id=20268
|
|
|
|
ifneq ($(filter -DDEBUG -DDEBUG=1,$(CXXFLAGS)),)
|
2018-10-29 12:41:54 +00:00
|
|
|
USING_GLIBCXX := $(shell $(CXX) $(CXXFLAGS) -E pch.cpp 2>&1 | $(EGREP) -i -c "__GLIBCXX__")
|
2017-05-27 02:20:38 +00:00
|
|
|
ifneq ($(USING_GLIBCXX),0)
|
|
|
|
ifeq ($(HAS_NEWLIB),0)
|
|
|
|
ifeq ($(findstring -D_GLIBCXX_DEBUG,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -D_GLIBCXX_DEBUG
|
|
|
|
endif # CXXFLAGS
|
|
|
|
endif # HAS_NEWLIB
|
|
|
|
endif # USING_GLIBCXX
|
|
|
|
endif # GNU Debug build
|
|
|
|
|
2016-01-05 01:23:19 +00:00
|
|
|
# Dead code stripping. Issue 'make lean'.
|
|
|
|
ifeq ($(findstring lean,$(MAKECMDGOALS)),lean)
|
|
|
|
ifeq ($(findstring -ffunction-sections,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -ffunction-sections
|
|
|
|
endif # CXXFLAGS
|
|
|
|
ifeq ($(findstring -fdata-sections,$(CXXFLAGS)),)
|
|
|
|
CXXFLAGS += -fdata-sections
|
|
|
|
endif # CXXFLAGS
|
2017-05-27 02:23:35 +00:00
|
|
|
ifneq ($(IS_IOS),0)
|
2016-01-05 01:23:19 +00:00
|
|
|
ifeq ($(findstring -Wl,-dead_strip,$(LDFLAGS)),)
|
|
|
|
LDFLAGS += -Wl,-dead_strip
|
|
|
|
endif # CXXFLAGS
|
|
|
|
else # BSD, Linux and Unix
|
|
|
|
ifeq ($(findstring -Wl,--gc-sections,$(LDFLAGS)),)
|
|
|
|
LDFLAGS += -Wl,--gc-sections
|
|
|
|
endif # LDFLAGS
|
|
|
|
endif # MAKECMDGOALS
|
|
|
|
endif # Dead code stripping
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### Source and object files #####
|
|
|
|
###########################################################
|
|
|
|
|
2016-11-05 01:20:45 +00:00
|
|
|
# List cryptlib.cpp first, then cpu.cpp, then integer.cpp to tame C++ static initialization problems.
|
2018-12-01 17:48:47 +00:00
|
|
|
SRCS := cryptlib.cpp cpu.cpp integer.cpp $(filter-out cryptlib.cpp cpu.cpp integer.cpp pch.cpp simple.cpp cryptlib_bds.cpp,$(sort $(wildcard *.cpp)))
|
2017-11-01 22:25:44 +00:00
|
|
|
# For Makefile.am; resource.h is Windows
|
|
|
|
INCL := $(filter-out resource.h,$(sort $(wildcard *.h)))
|
|
|
|
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
# Cryptogams AES for ARMv4 and above. We couple to ARMv7.
|
2018-12-01 17:48:47 +00:00
|
|
|
# Avoid iOS. It cannot consume the assembly.
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
ifeq ($(IS_ARM32),1)
|
2018-12-01 17:48:47 +00:00
|
|
|
ifneq ($(IS_IOS),1)
|
|
|
|
CRYPTOGAMS_AES_FLAG = -march=armv7-a
|
|
|
|
CRYPTOGAMS_AES_FLAG += -Wa,--noexecstack
|
|
|
|
SRCS += aes_armv4.S
|
|
|
|
endif
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
endif
|
|
|
|
|
2016-11-05 01:20:45 +00:00
|
|
|
# List cryptlib.cpp first, then cpu.cpp, then integer.cpp to tame C++ static initialization problems.
|
2015-11-05 06:59:46 +00:00
|
|
|
OBJS := $(SRCS:.cpp=.o)
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
OBJS := $(OBJS:.S=.o)
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2016-11-05 01:20:45 +00:00
|
|
|
# List test.cpp first to tame C++ static initialization problems.
|
2018-07-30 00:30:19 +00:00
|
|
|
TESTSRCS := adhoc.cpp test.cpp bench1.cpp bench2.cpp bench3.cpp datatest.cpp dlltest.cpp fipsalgt.cpp validat0.cpp validat1.cpp validat2.cpp validat3.cpp validat4.cpp validat5.cpp validat6.cpp validat7.cpp validat8.cpp validat9.cpp validat10.cpp regtest1.cpp regtest2.cpp regtest3.cpp regtest4.cpp
|
2017-11-01 22:25:44 +00:00
|
|
|
TESTINCL := bench.h factory.h validate.h
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
|
|
|
|
# Test objects
|
2015-12-08 19:55:58 +00:00
|
|
|
TESTOBJS := $(TESTSRCS:.cpp=.o)
|
2015-11-05 06:59:46 +00:00
|
|
|
LIBOBJS := $(filter-out $(TESTOBJS),$(OBJS))
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
# For Shared Objects, Diff, Dist/Zip rules
|
|
|
|
LIB_VER := $(shell $(EGREP) "define CRYPTOPP_VERSION" config.h | cut -d" " -f 3)
|
|
|
|
LIB_MAJOR := $(shell echo $(LIB_VER) | cut -c 1)
|
|
|
|
LIB_MINOR := $(shell echo $(LIB_VER) | cut -c 2)
|
|
|
|
LIB_PATCH := $(shell echo $(LIB_VER) | cut -c 3)
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
ifeq ($(strip $(LIB_PATCH)),)
|
|
|
|
LIB_PATCH := 0
|
|
|
|
endif
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2015-12-26 18:57:04 +00:00
|
|
|
ifeq ($(HAS_SOLIB_VERSION),1)
|
|
|
|
# Full version suffix for shared library
|
|
|
|
SOLIB_VERSION_SUFFIX=.$(LIB_MAJOR).$(LIB_MINOR).$(LIB_PATCH)
|
2018-02-20 15:05:52 +00:00
|
|
|
# Different patchlevels and minors are compatible since 6.1
|
|
|
|
SOLIB_COMPAT_SUFFIX=.$(LIB_MAJOR)
|
2015-12-26 18:57:04 +00:00
|
|
|
SOLIB_FLAGS=-Wl,-soname,libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
|
|
|
endif # HAS_SOLIB_VERSION
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
###########################################################
|
|
|
|
##### Targets and Recipes #####
|
|
|
|
###########################################################
|
|
|
|
|
2018-01-27 18:05:23 +00:00
|
|
|
# Default builds program with static library only
|
|
|
|
.PHONY: default
|
|
|
|
default: cryptest.exe
|
|
|
|
|
2018-07-31 17:33:57 +00:00
|
|
|
.PHONY: all static dynamic
|
2018-01-27 18:05:23 +00:00
|
|
|
all: static dynamic cryptest.exe
|
2015-07-31 18:24:49 +00:00
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
ifneq ($(IS_IOS),0)
|
2015-11-05 06:59:46 +00:00
|
|
|
static: libcryptopp.a
|
|
|
|
shared dynamic dylib: libcryptopp.dylib
|
|
|
|
else
|
2015-06-08 11:50:22 +00:00
|
|
|
static: libcryptopp.a
|
2015-12-26 18:57:04 +00:00
|
|
|
shared dynamic: libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
2015-11-05 06:59:46 +00:00
|
|
|
endif
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2018-01-27 18:05:23 +00:00
|
|
|
.PHONY: test check
|
|
|
|
test check: cryptest.exe
|
2015-06-08 11:50:22 +00:00
|
|
|
./cryptest.exe v
|
|
|
|
|
2016-01-05 01:23:19 +00:00
|
|
|
# CXXFLAGS are tuned earlier. Applications must use linker flags
|
|
|
|
# -Wl,--gc-sections (Linux and Unix) or -Wl,-dead_strip (OS X)
|
|
|
|
.PHONY: lean
|
|
|
|
lean: static dynamic cryptest.exe
|
|
|
|
|
2015-07-31 18:24:49 +00:00
|
|
|
.PHONY: clean
|
2015-06-08 11:50:22 +00:00
|
|
|
clean:
|
2018-07-28 13:31:41 +00:00
|
|
|
-$(RM) adhoc.cpp.o adhoc.cpp.proto.o $(LIBOBJS) $(AOSP_CPU_OBJ) rdrand-*.o $(TESTOBJS) $(DLLOBJS) $(LIBIMPORTOBJS) $(TESTIMPORTOBJS) $(DLLTESTOBJS)
|
2017-03-09 09:01:36 +00:00
|
|
|
@-$(RM) libcryptopp.a libcryptopp.dylib cryptopp.dll libcryptopp.dll.a libcryptopp.import.a
|
|
|
|
@-$(RM) libcryptopp.so libcryptopp.so$(SOLIB_COMPAT_SUFFIX) libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
2018-07-28 13:21:31 +00:00
|
|
|
@-$(RM) cryptest.exe dlltest.exe cryptest.import.exe cryptest.info ct et
|
2017-11-05 08:42:39 +00:00
|
|
|
@-$(RM) *.la *.lo *.gcov *.gcno *.gcda *.stackdump core core-*
|
2017-03-09 09:01:36 +00:00
|
|
|
@-$(RM) /tmp/adhoc.exe
|
|
|
|
@-$(RM) -r /tmp/cryptopp_test/
|
|
|
|
@-$(RM) -r *.exe.dSYM/
|
|
|
|
@-$(RM) -r *.dylib.dSYM/
|
|
|
|
@-$(RM) -r cov-int/
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2018-07-28 13:21:31 +00:00
|
|
|
.PHONY: autotools-clean
|
|
|
|
autotools-clean:
|
2017-11-05 08:38:19 +00:00
|
|
|
@-$(RM) -f configure.ac configure configure.in Makefile.am Makefile.in Makefile
|
2018-07-28 16:38:15 +00:00
|
|
|
@-$(RM) -f config.guess config.status config.sub config.h.in compile depcomp
|
|
|
|
@-$(RM) -f install-sh stamp-h1 ar-lib *.lo *.la *.m4 local.* lt*.sh missing
|
|
|
|
@-$(RM) -f cryptest cryptestcwd libtool* libcryptopp.la libcryptopp.pc*
|
2017-11-05 08:42:39 +00:00
|
|
|
@-$(RM) -rf m4/ auto*.cache/ .deps/ .libs/
|
2018-07-28 13:21:31 +00:00
|
|
|
|
|
|
|
.PHONY: cmake-clean
|
|
|
|
cmake-clean:
|
|
|
|
@-$(RM) -f cryptopp-config.cmake CMakeLists.txt
|
|
|
|
@-$(RM) -rf cmake_build/
|
|
|
|
|
|
|
|
.PHONY: distclean
|
|
|
|
distclean: clean autotools-clean cmake-clean
|
2018-07-28 13:31:41 +00:00
|
|
|
-$(RM) adhoc.cpp adhoc.cpp.copied GNUmakefile.deps benchmarks.html cryptest.txt
|
|
|
|
@-$(RM) cryptest-*.txt cryptopp.tgz libcryptopp.pc *.o *.bc *.ii *~
|
2018-07-28 13:21:31 +00:00
|
|
|
@-$(RM) -r cryptlib.lib cryptest.exe *.suo *.sdf *.pdb Win32/ x64/ ipch/
|
2018-08-02 01:33:24 +00:00
|
|
|
@-$(RM) -r $(LIBOBJS:.o=.obj) $(TESTOBJS:.o=.obj)
|
2018-08-05 00:18:50 +00:00
|
|
|
@-$(RM) -r $(LIBOBJS:.o=.lst) $(TESTOBJS:.o=.lst)
|
|
|
|
@-$(RM) -r TestCoverage/ ref*/
|
2018-07-28 13:21:31 +00:00
|
|
|
@-$(RM) cryptopp$(LIB_VER)\.* CryptoPPRef.zip
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2018-05-06 04:10:38 +00:00
|
|
|
# Install cryptest.exe, libcryptopp.a and libcryptopp.so.
|
|
|
|
# The library install was broken-out into its own recipe at GH #653.
|
2015-07-31 18:24:49 +00:00
|
|
|
.PHONY: install
|
2018-05-06 04:10:38 +00:00
|
|
|
install: cryptest.exe install-lib
|
2018-02-05 13:54:13 +00:00
|
|
|
@-$(MKDIR) $(DESTDIR)$(BINDIR)
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) cryptest.exe $(DESTDIR)$(BINDIR)
|
|
|
|
$(CHMOD) 0755 $(DESTDIR)$(BINDIR)/cryptest.exe
|
2018-02-05 13:54:13 +00:00
|
|
|
@-$(MKDIR) $(DESTDIR)$(DATADIR)/cryptopp/TestData
|
|
|
|
@-$(MKDIR) $(DESTDIR)$(DATADIR)/cryptopp/TestVectors
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) TestData/*.dat $(DESTDIR)$(DATADIR)/cryptopp/TestData
|
|
|
|
$(CHMOD) 0644 $(DESTDIR)$(DATADIR)/cryptopp/TestData/*.dat
|
|
|
|
$(CP) TestVectors/*.txt $(DESTDIR)$(DATADIR)/cryptopp/TestVectors
|
|
|
|
$(CHMOD) 0644 $(DESTDIR)$(DATADIR)/cryptopp/TestVectors/*.txt
|
2018-05-06 04:10:38 +00:00
|
|
|
|
|
|
|
# A recipe to install only the library, and not cryptest.exe. Also
|
|
|
|
# see https://github.com/weidai11/cryptopp/issues/653.
|
|
|
|
.PHONY: install-lib
|
|
|
|
install-lib:
|
|
|
|
@-$(MKDIR) $(DESTDIR)$(INCLUDEDIR)/cryptopp
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) *.h $(DESTDIR)$(INCLUDEDIR)/cryptopp
|
|
|
|
$(CHMOD) 0644 $(DESTDIR)$(INCLUDEDIR)/cryptopp/*.h
|
2015-12-27 18:13:16 +00:00
|
|
|
ifneq ($(wildcard libcryptopp.a),)
|
2018-02-05 13:54:13 +00:00
|
|
|
@-$(MKDIR) $(DESTDIR)$(LIBDIR)
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) libcryptopp.a $(DESTDIR)$(LIBDIR)
|
|
|
|
$(CHMOD) 0644 $(DESTDIR)$(LIBDIR)/libcryptopp.a
|
2015-12-27 18:13:16 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(wildcard libcryptopp.dylib),)
|
2018-02-05 13:54:13 +00:00
|
|
|
@-$(MKDIR) $(DESTDIR)$(LIBDIR)
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) libcryptopp.dylib $(DESTDIR)$(LIBDIR)
|
|
|
|
$(CHMOD) 0755 $(DESTDIR)$(LIBDIR)/libcryptopp.dylib
|
|
|
|
-install_name_tool -id $(DESTDIR)$(LIBDIR)/libcryptopp.dylib $(DESTDIR)$(LIBDIR)/libcryptopp.dylib
|
2015-12-27 18:13:16 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(wildcard libcryptopp.so$(SOLIB_VERSION_SUFFIX)),)
|
2018-02-05 13:54:13 +00:00
|
|
|
@-$(MKDIR) $(DESTDIR)$(LIBDIR)
|
2019-01-03 00:48:20 +00:00
|
|
|
$(CP) libcryptopp.so$(SOLIB_VERSION_SUFFIX) $(DESTDIR)$(LIBDIR)
|
|
|
|
$(CHMOD) 0755 $(DESTDIR)$(LIBDIR)/libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
2015-12-26 18:57:04 +00:00
|
|
|
ifeq ($(HAS_SOLIB_VERSION),1)
|
2017-12-16 14:07:23 +00:00
|
|
|
-$(LN) libcryptopp.so$(SOLIB_VERSION_SUFFIX) $(DESTDIR)$(LIBDIR)/libcryptopp.so
|
|
|
|
$(LDCONF) $(DESTDIR)$(LIBDIR)
|
2015-12-26 18:57:04 +00:00
|
|
|
endif
|
2015-11-05 06:59:46 +00:00
|
|
|
endif
|
2019-01-03 00:48:20 +00:00
|
|
|
ifneq ($(wildcard libcryptopp.pc),)
|
|
|
|
@-$(MKDIR) $(DESTDIR)$(LIBDIR)/pkgconfig
|
|
|
|
$(CP) libcryptopp.pc $(DESTDIR)$(LIBDIR)/pkgconfig
|
|
|
|
$(CHMOD) 0644 $(DESTDIR)$(LIBDIR)/pkgconfig/libcryptopp.pc
|
|
|
|
endif
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
.PHONY: remove uninstall
|
|
|
|
remove uninstall:
|
2015-12-31 06:43:42 +00:00
|
|
|
-$(RM) -r $(DESTDIR)$(INCLUDEDIR)/cryptopp
|
|
|
|
-$(RM) $(DESTDIR)$(LIBDIR)/libcryptopp.a
|
|
|
|
-$(RM) $(DESTDIR)$(BINDIR)/cryptest.exe
|
2017-03-09 09:01:36 +00:00
|
|
|
@-$(RM) $(DESTDIR)$(LIBDIR)/libcryptopp.dylib
|
|
|
|
@-$(RM) $(DESTDIR)$(LIBDIR)/libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
|
|
|
@-$(RM) $(DESTDIR)$(LIBDIR)/libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
|
|
|
@-$(RM) $(DESTDIR)$(LIBDIR)/libcryptopp.so
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2017-09-13 11:16:41 +00:00
|
|
|
libcryptopp.a: $(LIBOBJS) $(AOSP_CPU_OBJ)
|
|
|
|
$(AR) $(ARFLAGS) $@ $(LIBOBJS) $(AOSP_CPU_OBJ)
|
2015-06-08 11:50:22 +00:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
2015-12-31 21:05:14 +00:00
|
|
|
ifeq ($(HAS_SOLIB_VERSION),1)
|
2015-12-26 18:57:04 +00:00
|
|
|
.PHONY: libcryptopp.so
|
2015-12-27 18:13:16 +00:00
|
|
|
libcryptopp.so: libcryptopp.so$(SOLIB_VERSION_SUFFIX)
|
2015-12-31 21:05:14 +00:00
|
|
|
endif
|
2015-12-26 18:57:04 +00:00
|
|
|
|
2018-11-16 00:11:29 +00:00
|
|
|
libcryptopp.so$(SOLIB_VERSION_SUFFIX): $(LIBOBJS) $(AOSP_CPU_OBJ)
|
|
|
|
$(CXX) -shared $(SOLIB_FLAGS) -o $@ $(strip $(CXXFLAGS)) -Wl,--exclude-libs,ALL $(LIBOBJS) $(AOSP_CPU_OBJ) $(LDFLAGS) $(LDLIBS)
|
2015-12-26 18:57:04 +00:00
|
|
|
ifeq ($(HAS_SOLIB_VERSION),1)
|
|
|
|
-$(LN) libcryptopp.so$(SOLIB_VERSION_SUFFIX) libcryptopp.so
|
|
|
|
-$(LN) libcryptopp.so$(SOLIB_VERSION_SUFFIX) libcryptopp.so$(SOLIB_COMPAT_SUFFIX)
|
|
|
|
endif
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2018-11-16 00:11:29 +00:00
|
|
|
libcryptopp.dylib: $(LIBOBJS) $(AOSP_CPU_OBJ)
|
|
|
|
$(CXX) -dynamiclib -o $@ $(strip $(CXXFLAGS)) -install_name "$@" -current_version "$(LIB_MAJOR).$(LIB_MINOR).$(LIB_PATCH)" -compatibility_version "$(LIB_MAJOR).$(LIB_MINOR)" -headerpad_max_install_names $(LDFLAGS) $(LIBOBJS) $(AOSP_CPU_OBJ)
|
2015-12-08 19:55:58 +00:00
|
|
|
|
|
|
|
cryptest.exe: libcryptopp.a $(TESTOBJS)
|
2016-10-26 22:26:07 +00:00
|
|
|
$(CXX) -o $@ $(strip $(CXXFLAGS)) $(TESTOBJS) ./libcryptopp.a $(LDFLAGS) $(LDLIBS)
|
2015-06-08 11:50:22 +00:00
|
|
|
|
2015-12-08 19:55:58 +00:00
|
|
|
# Used to generate list of source files for Autotools, CMakeList and Android.mk
|
|
|
|
.PHONY: sources
|
|
|
|
sources:
|
2018-07-25 04:11:09 +00:00
|
|
|
$(info ***** Library sources *****)
|
|
|
|
$(info $(filter-out $(TESTSRCS),$(SRCS)))
|
2015-12-08 19:55:58 +00:00
|
|
|
$(info )
|
2018-07-25 04:11:09 +00:00
|
|
|
$(info ***** Library headers *****)
|
|
|
|
$(info $(filter-out $(TESTINCL),$(INCL)))
|
2017-11-01 22:25:44 +00:00
|
|
|
$(info )
|
2018-07-25 04:11:09 +00:00
|
|
|
$(info ***** Test sources *****)
|
|
|
|
$(info $(TESTSRCS))
|
2017-11-01 22:25:44 +00:00
|
|
|
$(info )
|
2018-07-25 04:11:09 +00:00
|
|
|
$(info ***** Test headers *****)
|
|
|
|
$(info $(TESTINCL))
|
2015-12-08 19:55:58 +00:00
|
|
|
|
2015-06-08 11:50:22 +00:00
|
|
|
adhoc.cpp: adhoc.cpp.proto
|
|
|
|
ifeq ($(wildcard adhoc.cpp),)
|
|
|
|
cp adhoc.cpp.proto adhoc.cpp
|
|
|
|
else
|
|
|
|
touch adhoc.cpp
|
|
|
|
endif
|
|
|
|
|
2015-11-18 20:35:35 +00:00
|
|
|
# Include dependencies, if present. You must issue `make deps` to create them.
|
|
|
|
ifeq ($(wildcard GNUmakefile.deps),GNUmakefile.deps)
|
|
|
|
-include GNUmakefile.deps
|
|
|
|
endif # Dependencies
|
|
|
|
|
2018-07-28 02:00:28 +00:00
|
|
|
# Cryptogams ARM asm implementation.
|
2018-11-10 13:00:14 +00:00
|
|
|
aes_armv4.o : aes_armv4.S
|
2018-12-01 17:48:47 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) -fpermissive $(CRYPTOGAMS_AES_FLAG) -c) $<
|
|
|
|
|
|
|
|
cpu-features.o: cpu-features.h cpu-features.c
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) -fpermissive -c) cpu-features.c
|
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available.
We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1.
ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future.
Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
2018-07-15 12:35:14 +00:00
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# SSSE3 or NEON available
|
2018-11-10 13:00:14 +00:00
|
|
|
aria_simd.o : aria_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(ARIA_FLAG) -c) $<
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# SSE, NEON or POWER7 available
|
|
|
|
blake2s_simd.o : blake2s_simd.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(BLAKE2S_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSE, NEON or POWER8 available
|
|
|
|
blake2b_simd.o : blake2b_simd.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(BLAKE2B_FLAG) -c) $<
|
2017-09-13 21:16:57 +00:00
|
|
|
|
2018-10-27 16:59:29 +00:00
|
|
|
# SSE2 or NEON available
|
2018-11-10 13:00:14 +00:00
|
|
|
chacha_simd.o : chacha_simd.cpp
|
2018-10-27 16:59:29 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(CHACHA_FLAG) -c) $<
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# AVX2 available
|
|
|
|
chacha_avx.o : chacha_avx.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(CHACHA_AVX2_FLAG) -c) $<
|
|
|
|
|
2018-06-19 22:03:28 +00:00
|
|
|
# SSSE3 available
|
2018-11-10 13:00:14 +00:00
|
|
|
cham_simd.o : cham_simd.cpp
|
2018-06-19 22:03:28 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(CHAM_FLAG) -c) $<
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# Power9 available
|
|
|
|
darn.o : darn.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(DARN_FLAG) -c) $<
|
|
|
|
|
2018-12-13 15:19:54 +00:00
|
|
|
# SSE2 on i686
|
|
|
|
donna_sse.o : donna_sse.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SSE2_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSE2 on i686
|
2018-12-01 17:48:47 +00:00
|
|
|
sse_simd.o : sse_simd.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SSE2_FLAG) -c) $<
|
2017-09-13 21:16:57 +00:00
|
|
|
|
|
|
|
# SSE4.2 or ARMv8a available
|
2018-11-10 13:00:14 +00:00
|
|
|
crc_simd.o : crc_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(CRC_FLAG) -c) $<
|
|
|
|
|
|
|
|
# PCLMUL or ARMv7a/ARMv8a available
|
2018-11-10 13:00:14 +00:00
|
|
|
gcm_simd.o : gcm_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(GCM_FLAG) -c) $<
|
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# SSSE3 available
|
2018-11-10 13:00:14 +00:00
|
|
|
lea_simd.o : lea_simd.cpp
|
2018-06-22 20:26:27 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(LEA_FLAG) -c) $<
|
|
|
|
|
2017-09-13 21:16:57 +00:00
|
|
|
# NEON available
|
2018-11-10 13:00:14 +00:00
|
|
|
neon_simd.o : neon_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(NEON_FLAG) -c) $<
|
|
|
|
|
|
|
|
# AESNI or ARMv7a/ARMv8a available
|
2018-11-10 13:00:14 +00:00
|
|
|
rijndael_simd.o : rijndael_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(AES_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSE4.2/SHA-NI or ARMv8a available
|
2018-11-10 13:00:14 +00:00
|
|
|
sha_simd.o : sha_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SHA_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSE4.2/SHA-NI or ARMv8a available
|
2018-11-10 13:00:14 +00:00
|
|
|
shacal2_simd.o : shacal2_simd.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SHA_FLAG) -c) $<
|
2017-09-13 11:16:41 +00:00
|
|
|
|
2018-07-01 07:21:42 +00:00
|
|
|
# SSSE3 or NEON available
|
2018-11-10 13:00:14 +00:00
|
|
|
simeck_simd.o : simeck_simd.cpp
|
2018-07-01 07:21:42 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SIMECK_FLAG) -c) $<
|
|
|
|
|
2018-08-16 22:24:22 +00:00
|
|
|
# SSE4.1, NEON or POWER7 available
|
2018-11-10 13:00:14 +00:00
|
|
|
simon64_simd.o : simon64_simd.cpp
|
2018-08-16 22:24:22 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SIMON64_FLAG) -c) $<
|
2018-02-19 04:23:50 +00:00
|
|
|
|
2018-08-16 22:24:22 +00:00
|
|
|
# SSSE3, NEON or POWER8 available
|
2018-11-10 13:00:14 +00:00
|
|
|
simon128_simd.o : simon128_simd.cpp
|
2018-08-16 22:24:22 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SIMON128_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSE4.1, NEON or POWER7 available
|
2018-11-10 13:00:14 +00:00
|
|
|
speck64_simd.o : speck64_simd.cpp
|
2018-08-16 22:24:22 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SPECK64_FLAG) -c) $<
|
|
|
|
|
|
|
|
# SSSE3, NEON or POWER8 available
|
2018-11-10 13:00:14 +00:00
|
|
|
speck128_simd.o : speck128_simd.cpp
|
2018-08-16 22:24:22 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SPECK128_FLAG) -c) $<
|
2018-02-19 04:23:50 +00:00
|
|
|
|
2018-12-01 17:48:47 +00:00
|
|
|
# ARMv8.4 available
|
|
|
|
sm3_simd.o : sm3_simd.cpp
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SM3_FLAG) -c) $<
|
|
|
|
|
2018-07-13 12:33:13 +00:00
|
|
|
# AESNI available
|
2018-11-10 13:00:14 +00:00
|
|
|
sm4_simd.o : sm4_simd.cpp
|
2018-07-13 12:33:13 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) $(SM4_FLAG) -c) $<
|
|
|
|
|
2015-06-08 11:50:22 +00:00
|
|
|
%.o : %.cpp
|
2017-09-13 21:16:57 +00:00
|
|
|
$(CXX) $(strip $(CXXFLAGS) -c) $<
|
2015-07-20 10:55:42 +00:00
|
|
|
|
2018-10-27 15:34:11 +00:00
|
|
|
.PHONY: dep deps depend
|
|
|
|
dep deps depend GNUmakefile.deps:
|
|
|
|
$(CXX) $(strip $(CXXFLAGS) -DCRYPTOPP_DISABLE_ASM) -MM *.cpp > GNUmakefile.deps
|