Skip to content

Commit

Permalink
Add CRYPTOPP_DISABLE_ASM to dependency recipe
Browse files Browse the repository at this point in the history
This stops the inclusion of SSE headers without arch options that break the recipe
  • Loading branch information
noloader committed Oct 27, 2018
1 parent d7d76fa commit 06d0072
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions GNUmakefile-cross
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 06d0072

Please sign in to comment.