On Aug 10, 2015, at 3:29 , Jeffrey Walton <[email protected]> wrote: > On Monday, August 10, 2015 at 3:02:32 AM UTC-4, Jeffrey Walton wrote: > > ... > /Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:402:41: warning: unused > parameter 'iv' [-Wunused-parameter] > > virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw > NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't > support resynchronization");} > > Uri - you do a lot on OS X. Are you seeing this kind of pollution in the > output of make?
I’m on the GitHub code. I recompiled everything with clang++ (current Xcode) and g++ (v5.2 from Macports). This is the only warning I got from clang: WARNING: CRYPTOPP_NO_UNALIGNED_DATA_ACCESS is not defined in config.h This is all I’m getting from g++: fipstest.cpp:37:33: warning: unknown option after '#pragma GCC diagnostic' kind [-Wpragmas] # pragma GCC diagnostic ignored "-Wunneeded-internal-declaration” Common to both compilers during cryptest.exe linking: libtool: file: algebra.o has no symbols libtool: file: eccrypto.o has no symbols libtool: file: eprecomp.o has no symbols libtool: file: simple.o has no symbols libtool: file: strciphr.o has no symbols ranlib libcryptopp.a ranlib: file: libcryptopp.a(algebra.o) has no symbols ranlib: file: libcryptopp.a(eccrypto.o) has no symbols ranlib: file: libcryptopp.a(eprecomp.o) has no symbols ranlib: file: libcryptopp.a(simple.o) has no symbols ranlib: file: libcryptopp.a(strciphr.o) has no symbols Sample of my g++ compile line (similar for clang++): g++ -maes -mpclmul -msse2 -msse3 -mssse3 -msse4.2 -mtune=native -Wa,-q -DNDEBUG -O3 -fPIC -march=native -DCRYPTOPP_DISABLE_ASM -Wall -Wextra -Wno-type-limits -Wno-unknown-pragmas -pipe -c adhoc.cpp -- -- 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. --- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
