From e82ee1c6f0a77e452d2ed8c5153511536076c03a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 4 Aug 2018 20:28:31 -0400 Subject: [PATCH] Fix typo in SM4 recipe on PowerPC --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 0bc7e210..bfacbf57 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -413,7 +413,7 @@ ifneq ($(IS_PPC32)$(IS_PPC64)$(IS_AIX),000) SIMON_FLAG = -mcpu=power4 -maltivec SPECK_FLAG = -mcpu=power4 -maltivec SIMECK_FLAG = -mcpu=power4 -maltivec - SM4_FLAG = -mcpu=power7 -maltivecs + SM4_FLAG = -mcpu=power7 -maltivec endif # GCC and some compatibles HAVE_CRYPTO = $(shell $(CXX) $(CXXFLAGS) -DADHOC_MAIN -mcpu=power8 -maltivec -dM -E adhoc.cpp 2>&1 | $(GREP) -i -c -E '_ARCH_PWR8|_ARCH_PWR9|__CRYPTO')