Add CRYPTOPP_DISABLE_ASM to dependency recipe

This stops the inclusion of SSE headers without arch options that break the recipe
pull/730/head
Jeffrey Walton 2018-10-27 11:34:11 -04:00
parent d7d76fa5f7
commit 06d0072d6a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 4 additions and 2 deletions

View File

@ -633,5 +633,7 @@ sm4-simd.o : sm4-simd.cpp
%.o : %.cpp
$(CXX) $(strip $(CXXFLAGS) -c) $<
GNUmakefile.deps:
$(CXX) $(strip $(CXXFLAGS) -MM) *.cpp > GNUmakefile.deps
.PHONY: dep deps depend
dep deps depend GNUmakefile.deps:
$(CXX) $(strip $(CXXFLAGS) -DCRYPTOPP_DISABLE_ASM) -MM *.cpp > GNUmakefile.deps