Serving the Quantitative Finance Community

 
User avatar
LevyProcess
Topic Author
Posts: 0
Joined: August 29th, 2003, 12:07 am

Missing QuantLib Library file

July 2nd, 2007, 8:27 pm

While implementing a bond pricing model using QuantLib, I get the error message:LINK : fatal error LNK1104: cannot open file 'QuantLib-vc71-sgd-0_3_10.lib'I cannot find anywhere such a library file. Does anyone have any idea as to how to get around this problem?Thanks in advance.Text
 
sjoo
Posts: 0
Joined: March 24th, 2003, 1:54 am

Missing QuantLib Library file

July 2nd, 2007, 9:47 pm

Hi LevyProcessplz check the programming model of your project. 'QuantLib-vc71-sgd-0_3_10.lib' is for Debug SingleThread. or check whether you built the library or not. FYIwhen you compile QL0.38 with vs6, you can get the libraries as follows:Win32 Release - > QuantLib-vc6-mt-s-0_3_8.libWin32 Debug - > QuantLib-vc6-mt-sgd-0_3_8.libWin32 Release MTDLL - > QuantLib-vc6-mt-0_3_8.libWin32 Debug MTDLL - > QuantLib-vc6-mt-gd-0_3_8.libWin32 Release SingleThread - > QuantLib-vc6-s-0_3_8.libWin32 Debug SingleThread - > QuantLib-vc6-sgd-0_3_8.lib best regards,sjoo
Last edited by sjoo on July 1st, 2007, 10:00 pm, edited 1 time in total.
 
User avatar
quantman
Posts: 8
Joined: February 6th, 2002, 12:22 pm

Missing QuantLib Library file

July 3rd, 2007, 8:43 pm

Hello,Have you installed Boost before running Quantlib ? Did you build the library ? Quantlib is not ready to use after you download the latest release from the sourceforge page, it needs some setup (Boost + building the library).Regards.
Last edited by quantman on July 2nd, 2007, 10:00 pm, edited 1 time in total.