Hi! Just as this link suggests: http://www.cryptopp.com/fom-serve/cache/99.html I am reporting I had success compiling cryptopp 5.5.2 on Solaris 10 U4 (x86) using the included GCC 3.4.3. I just had to tweak the GNUMakefile a bit:
on line 16: - PREFIX = /usr + PREFIX = /usr/local line ~40: remove the "if GAS210_OR_LATER" and the corresponding "endif". For some reason, even tought Solaris GCC uses gas 2.15, it wasn't entering in the if and then when building it was failing because of assembler errors. line ~45: - CXXFLAGS += -Wa,--divide # allow use of "/" operator + CXXFLAGS += -Wa # allow use of "/" operator Sorry for not providing a patch, but I am no expert creating them. Notice that the build process throws a lot of warning regarding template usage, and other things, but in the end the cryptest.exe file passed all tests. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. -~----------~----~----~----~------~----~------~--~---
