From 21d69598ab9b18d4aad86e31ed4792ea7d437f53 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 26 Oct 2018 11:10:07 -0400 Subject: [PATCH] Add CRYPTOPP_DISABLE_ASM to dependency recipe This stops the inclusion of SSE headers without arch options that break the recipe --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 60cd8a23..a451be95 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -864,7 +864,7 @@ endif .PHONY: dep deps depend dep deps depend GNUmakefile.deps: - $(CXX) $(strip $(CXXFLAGS)) -MM *.cpp > GNUmakefile.deps + $(CXX) $(strip $(CXXFLAGS) -DCRYPTOPP_DISABLE_ASM) -MM *.cpp > GNUmakefile.deps # CXXFLAGS are tuned earlier. .PHONY: native no-asm asan ubsan