Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-11-03 Thread Lakshmi Chowdam
Thanks Jeff, It is the problem of the Module-Definition file of one of project module. Now we are able to build the application successful. Thanks for your support. Thanks, Lakshmi. On Tuesday, November 1, 2016 at 6:26:20 PM UTC+5:30, Jeffrey Walton wrote: > > > > LNK2001 unresolved external

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-11-01 Thread Jeffrey Walton
> > LNK2001 unresolved external symbol "public: virtual void __cdecl > > > CryptoPP::DL_SignatureMessageEncodingMethod_DSA::ComputeMessageRepresentative(class > > > > CryptoPP::RandomNumberGenerator &,unsigned char const *,unsigned > > __int64,class CryptoPP::HashTransformation &,struct

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-11-01 Thread Jeffrey Walton
> Hi Jeff, > > I have used the provided pre-converted set of project files except > v120 > > I have created the library successfully and when I integrated in my > application it produced couple of link errors as below: > > LNK2001 unresolved external symbol "public: virtual void __cdecl >

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-11-01 Thread Lakshmi Chowdam
On Tuesday, November 1, 2016 at 9:47:16 AM UTC+5:30, Lakshmi Chowdam wrote: > > > > On Monday, October 31, 2016 at 6:04:49 PM UTC+5:30, Jeffrey Walton wrote: >> >> > Changed the properties as: >> > >> > 1) Platform Toolset-> Visual Studio 2013 (v120) >> > 2) C/C++->Code Generation -> Runtime

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Lakshmi Chowdam
On Monday, October 31, 2016 at 6:04:49 PM UTC+5:30, Jeffrey Walton wrote: > > > Changed the properties as: > > > > 1) Platform Toolset-> Visual Studio 2013 (v120) > > 2) C/C++->Code Generation -> Runtime Library as Multi-threaded Debug DLL > > (/MDd) (This configuration I used because of

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Lakshmi Chowdam
On Monday, October 31, 2016 at 5:46:45 PM UTC+5:30, Jeffrey Walton wrote: > > > and also, in the link >> property >> cryptopp_$(PlatformToolset).lib;%(AdditionalDependencies) >> > > This does not look right to me. The static library is called cryptlib.lib. > I don't ever recall seeing it

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Jeffrey Walton
> Changed the properties as: > > 1) Platform Toolset-> Visual Studio 2013 (v120) > 2) C/C++->Code Generation -> Runtime Library as Multi-threaded Debug DLL > (/MDd) (This configuration I used because of Json code expected /MDd) > 3) checked the corresponding build from the Build->Batch Build > > I

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Jeffrey Walton
> and also, in the link > property > cryptopp_$(PlatformToolset).lib;%(AdditionalDependencies) > This does not look right to me. The static library is called cryptlib.lib. I don't ever recall seeing it named like cryptlib_v120.lib. Can you verify the filename? Jeff -- -- You received

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Lakshmi Chowdam
On Monday, October 31, 2016 at 4:43:15 PM UTC+5:30, Jeffrey Walton wrote: > > > I have built 64 bit crypto library for windows application(64 bit) with >> the option "Multi-threaded Debug DLL (/MDd)" >> >> How did you build it? > After downloaded the source code from the

Re: Crypto 64 bit library produced unresolved external symbols linking errors(LNK2019) for Windows application

2016-10-31 Thread Jeffrey Walton
> I have built 64 bit crypto library for windows application(64 bit) with > the option "Multi-threaded Debug DLL (/MDd)" > > How did you build it? > When I compiled the code, I am getting many unresolved external symbols > linking errors(LNK2019) as below: > > How did you set up your