Top "Linker-errors" questions

An error received when combining individually compiled object files into executable code.

inline function linker error

I am trying to use inline member functions of a particular class. For example the function declaration and implementation without …

c++ inline linker-errors
Why am I getting undefined reference to pthread_mutexattr_settype?

I am trying to compile and link a sample file from the Novell LDAP C SDK but the link is …

c linux gcc shared-libraries linker-errors
ERROR LNK2019:unresolved external symbol, c++

I have written a template class, for a map/dictionary data structure, and keep getting this strange error (ERROR LNK2019:…

c++ visual-studio-2010 linker-errors lnk2019
How to fix "LME288/Unknown heap name" warning?

Suddenly, out of the blue, I get the LME288 linker error. [ilink32 Warning] Warning: D:/Projects/TrainFever Game Manager/TFGM/…

linker-errors c++builder windows-7-x64 c++builder-10.2-tokyo c++builder-xe7
Undefined reference to new operator

Never seen this linker error in my life until I started programming PSP homebrew applications. Anyway, I am making an …

c++ vector g++ linker-errors
Link error while building a unit test target

I have a XCode4 / iOS project with a regular target and unit test target. Everything works fine, except when I …

unit-testing xcode4 linker-errors ocunit
Calling C++ method from Objective C

I have the following files. foo.h (C++ header file) foo.mm (C++ file) test_viewcontroller.h (objective c header …

iphone objective-c linker-errors
undefined reference to symbol 'pthread_key_delete@@GLIBC_2.2.5

I'm trying to make a file in Ubuntu and when i make i keep getting this error: /usr/bin/ld: ../../…

linux linker-errors undefined-reference
Using pthread in c++

I am using pthread.h in a *.cc file. when I try to use pthread_exit(0); or pthread_join(mythrds[…

c++ linker pthreads linker-errors