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 ...
3
votes
2answers
2k views
Are there general guidlines for solving undefined reference/unresolved symbol issues?
I'm having several "undefined reference" (during linkage) and "unresolved symbol" (during runtime after dlopen) issues where I work. It is quite a large makefile system.
Are there general rules and ...
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
3answers
95 views
C++: Unresolved externals driving me nuts
I'm taking a class on C++ and this is driving me berserk. The funnest part is that no guide seems to tell me exactly what to do and no question seems to address the problem here. It's probably due in ...
1
vote
1answer
467 views
setup include path in eclipse CDT in mac os (headers from framework)
for example I need to include a header
#include <OpenGL/glext.h>
while it is actually a header file glext.h under OpenGL.framework/Headers/.
Therefore it is no way to give eclipse a physical ...
1
vote
2answers
3k views
undefined reference to `pthread_mutex_trylock'
I have the following test program.
#include <iostream>
#include <cstdlib>
using namespace std;
pthread_mutex_t mymutex = PTHREAD_MUTEX_INITIALIZER;
int main(int argc, char *argv[])
...
1
vote
4answers
1k views
Extern keyword and unresolved external symbols!
I drew a little graph in paint that explains my problem:
But it doesn't seem to show up when I use the <img> tag after posting?
Here is a direct link: http://i44.tinypic.com/103gcbk.jpg
0
votes
2answers
211 views
Eclipse C++Type Not Resolved Issue
For an assignment, I'm to create a custom singly-linked list using a class previously created as the type.
When creating the node for the list in any methods in the custom list class, however, I get ...
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
3answers
172 views
Upgrade to VS2010: Random Unresolved Symbol
I just went from visual studio 2008 to 2010, and after solving all issues my project runs perfectly.
However sometimes a project is complaining about unresolved symbols. When I rebuild the objects ...
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 ...
0
votes
3answers
121 views
Linking error in C++ - implementing a indexList
Linking...
Directory.obj : error LNK2019: unresolved external symbol "public: void __thiscall indexList<class entry,100>::read(class std::basic_istream<char,struct ...