vote up 0 vote down star

Does anyone have a clue why those two lines would cause that linker error?

std::ifstream ifs("filename.file");
boost::archive::binary_iarchive iarchv( ifs );

Error 8 fatal error LNK1104: cannot open file 'F:\dev\project\build\win32-unit\tests\Debug\framework_core_tests.lib' ramework_core_tests framework_core_tests

The same happens with any Boost::Archive type.

Its trying to link against a library of the same name as my executable for some reason when that project doesn't nor never existed and is not defined as a library to link against in my project files.

flag
What compiler, etc? – GMan Nov 1 at 2:28
The compiler im using is VC++ 9 – Dallin Wellington Nov 2 at 0:04

2 Answers

vote up 0 vote down

You need to link with the boost_serialization library.

link|flag
It already is explicitly in the project files. – Dallin Wellington Nov 3 at 2:04
I do "g++ foo.cpp -lboost_serialization" on Linux, what do your project files look like? – epronk Nov 4 at 22:59
vote up 0 vote down

maybe you should add a reference to a lib that contains that functions?

link|flag
Please read the thread thoroughly again. This library it is trying to link against never had existed, nor am I missing any library references. That's the odd part about this linker error, I am linking against libboost-serialization. – Dallin Wellington Nov 2 at 0:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.