> The command "make clean cryptopp.dll" show the following error: > > make: *** No rule to make target `modexppc.export.o', needed by > `cryptopp.dll'. > Stop. > > I'm using now gcc versión 4.6.2 (GCC) and previously I use the latest > version of GCC (4.8.1 I think) and the same errors occurs. > > Anyone knows what could be happen? > Hmmm... I don't believe we have changed anything related to cryptopp.dll.
The 'cryptopp.dll' target is located at http://github.com/weidai11/cryptopp/blob/master/GNUmakefile#L524 . $DLLOBJS rule is at http://github.com/weidai11/cryptopp/blob/master/GNUmakefile#L306, and it includes modexppc.cpp : DLLOBJS := $(DLLSRCS:.cpp=.export.o) Finally, the recipe to make $DLLOBJS is at https://github.com/weidai11/cryptopp/blob/master/GNUmakefile#L638 : %.export.o : %.cpp $(CXX) $(CXXFLAGS) -DCRYPTOPP_EXPORTS -c $< -o $@ Let me investigate this a little more. -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to cryptopp-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.