Tagged Questions
4
votes
4answers
3k views
Easy check for unresolved symbols in shared libraries?
I am writing a fairly large C++ shared-object library, and have run into a small issue that makes debugging a pain:
If I define a function/method in a header file, and forget to create a stub for it ...
4
votes
2answers
3k views
Possible reasons for [ILINK32 Error] Error: Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj?
Can you suggest what factors can cause an C++ Builder's 2009 linker error "Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj"?
We have a set ...
2
votes
2answers
68 views
Link error when using source files not on the root project directory (files included in the search paths) (Visual C++)
I've been programing a template structure and after make it work I decided to use it on some other project. The template consists in two files. ListOctree.cpp and ListOctree.h.
While they compile and ...
2
votes
1answer
198 views
C++ project compiles as static library but not dynamic (Visual Studio)
I'm a little new to c++ in visual studio, and I'm trying to compile a massive C++ project with Visual Studio. I've gone through and added all source and header files to my project and also updated ...
1
vote
0answers
354 views
iOS: _main referenced from _main$non_lazy_ptr
I am trying to create an executable using the following linker command:
/path/to/ld64/i686-apple-darwin9-ld64 -ObjC -dead_strip -L/ -o ../someoutput -exported_symbol _main -Z ...
0
votes
1answer
246 views
MSVSC++ 2008 Linker Broken, Will Not Compile Any Program
I have been having some major issues with my Visual Studio 2008 Pro install. It will not compile any program, no matter how simple it is, without giving me at least 15 linker errors. I have tried a ...
0
votes
0answers
90 views
C++ LINKING ERROR UNRESOLVED
I still have the linking error that i encountered on an attempt to compile my files:
Linking CXX executable simulation
Undefined symbols:
"JobCreationFactory::createFiles(HardDisk)", referenced ...
0
votes
2answers
178 views
How am I getting a linker error: Unresolved external symbol
This is in a Windows Console application, so I have no idea how this is happening at all.
#include "Library.h"
//poglathon.cpp
//starting region
bool Poglathon(std::vector<std::string>& ...
0
votes
2answers
460 views
How to detect unresolved symbol when creating a library?
Under Solaris 10, I'm creating a library A.so that calls a function f() which is defined in library B.so. To compile the library A.so, I declare in my code f() as extern.
Unfortunately, I "forgot" to ...