CodeLite eating lib

General questions regarding the usage of CodeLite
TomekGasinski
CodeLite Curious
Posts: 2
Joined: Thu Apr 15, 2010 6:27 pm
Genuine User: Yes
IDE Question: C++
Contact:

CodeLite eating lib

Post by TomekGasinski »

In panel Project Settings->Linker
Libraries: libboost_filesystem-vc80-mt-s-1_42.lib
but command line is: link.exe /nologo /OUT:./Debug/cl_napisy ./Debug/main_.obj "/LIBPATH:." boost_filesystem-vc80-mt-s-1_42.lib
"lib" in name library is eating (library name is: libboost_filesystem-vc80-mt-s-1_42.lib)
This library name is ok in VS2005 and C::B.


PS:
Thank You for CodeLite. :D
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: CodeLite eating lib

Post by eranif »

Try adding an extra 'lib' prefix, so the lib name will be:
liblibboost_filesystem-vc80-mt-s-1_42.lib

If it works, please open a bug for this at sourceforge (the link to the bug tracker can be found from the web site main page http://codelite.org)

Eran
Make sure you have read the HOW TO POST thread
TomekGasinski
CodeLite Curious
Posts: 2
Joined: Thu Apr 15, 2010 6:27 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: CodeLite eating lib

Post by TomekGasinski »

working
liblib.....
Tomek
Post Reply