Tagged Questions
The undefined-reference tag has no wiki summary.
12
votes
6answers
255 views
Is there a sequence point between these assignments?
Is there a sequence point between the two assignments in the following code:
f(f(x=1,1),x=2);
11
votes
4answers
8k views
C++ templates, undefined reference
I have a function declared like so:
template <typename T>
T read();
and defined like so:
template <typename T>
T packetreader::read() {
offset += sizeof(T);
return ...
9
votes
3answers
240 views
C-callback to function template: explicitly instantiate template
Premise
I’m using a C library (from C++) which provides the following interface:
void register_callback(void* f, void* data);
void invoke_callback();
Problem
Now, I need to register a function ...
6
votes
1answer
187 views
D2 gdc link error - undefined reference to `_D3std6stdint12__ModuleInfoZ`
I'm using https://bitbucket.org/goshawk/gdc/downloads/gcc-4.5.2-tdm-1-gdc-r575-20110723.zip with TDM GCC 4.5.2 in -v2 mode to build a DLL. In one of the modules I do import std.stdint. So I thought I ...
4
votes
3answers
2k views
C++ linker errors, Undefined references to Items that should be referenced from a Share Object
I am building a library, called physgameengine, to aid in building games. This game library links against several libraries, including: Ogre3d, Bullet Physics and SDL, which are in the library files ...
3
votes
4answers
69 views
Should a virtual function essentially have a definition
Is it essential to have a definition for a virtual function?
Consider this sample program below:
#include <iostream>
using namespace std;
class base
{
public:
void virtual ...
3
votes
2answers
168 views
Unsdefined reference to library class members errors from caller program
Additional Questions added below, 4/11/2011
I am developing a cross-platform set of shared libraries DLLs/Sos and tester programs in C++ though I have to be able to support C. The libraries will ...
3
votes
3answers
774 views
undefined reference when using extern
I have the following setup (hopefully this is not too bare an example):
A.h
typedef std::map<unsigned int, float> MyClass;
extern MyClass inst;
A.cpp
MyClass inst;
B.h
#include ...
3
votes
5answers
1k views
gcc wont compile and run MySQL C libraries
#include <my_global.h>
#include <mysql.h>
int main(int argc, char **argv)
{
printf("MySQL client version: %s\n", mysql_get_client_info());
}
~$ gcc -o mysql-test MySQL-Test.c
im ...
3
votes
1answer
4k views
Undefined references when trying to link Qt app with my static library
I have a static library that I have built with MinGW, I am trying to link to that library from a Qt application. I keep getting linker errors caused by one of the object files in the library. This ...
2
votes
2answers
74 views
Linking programs to C++ Project in Eclipse? Linux
I am given the command to link programs:
g++ -o prog_name prog_name.cc -lsicklms-x -pthread
However, I'm not using the command line, I'm using eclipse.
My Project is called "Test" and I have only ...
2
votes
1answer
129 views
“undefined reference” error with g++
I just wrote a simple game (if you're interested, each player should say a word beginning with the last letter of the word said by his opponent.)
It won't compile with the following output:
...
2
votes
1answer
106 views
a ocaml code which compiles, but does not go with toplevel
I am doing an exercise of a free course. The following ocaml code compiles when I "make", but it complains once I am trying to put it into toplevel. Why?
let main () =
(* Parsing arguments *)
let ...
2
votes
2answers
371 views
Undefined Reference to
Hi when I compile my code for a linked list, I get a bunch of undefined reference errors. The code is below. I have been compiling with both of these statements g++ test.cpp as well as g++ ...
2
votes
1answer
464 views
Undefined OLE references in external library even when linking with libole32
Using MINGW, I'm trying to link my C code with a static C++ library that performs some OLE operations:
mingw32-gcc main.o resources.o -o mbcom.exe -L../../Lib/Iup -liup -liupole -lole32 -lcomctl32 ...
2
votes
1answer
2k views
undefined reference to `__stack_chk_fail'
Getting this error while compiling C++ code:
undefined reference to `__stack_chk_fail'
Options already tried:
added -fno-stack-protector while compiling - did not work, error persists
added a ...
2
votes
2answers
354 views
c++ “ undefined reference to 'Foo::Foo(std::string)' ”
I'm not too familiar with c++ and how instantiating objects work, so this is probably a very simple thing to solve. When I compile with g++ I get the error " undefined reference to ...
2
votes
3answers
143 views
Instantiating C++ template functions
I am facing a few problems with "undefined reference to " errors. I may not be able to post the code, but the declarations and the way I am calling the functions are as follows:
Declarations:
...
2
votes
5answers
2k views
C++: Undefined reference to instance in Singleton class
I'm currently trying to implement a factory as a singleton. I practically used the textbook example of the Singleton pattern. Here's the .h file:
namespace oxygen{
class ImpFactory{
public:
...
2
votes
1answer
239 views
Why is curses on linux giving me following error?
Trying to get getch() working to capture key press.
#include <curses.h>
...
...
WINDOW *w;
char f;
w = initscr();
timeout(3000);
f = getch();
endwin();
is ...
2
votes
3answers
3k views
Undefined reference to 'yylex()'
I'm trying to use flex and bison to create a simple scripting language. Right now, I'm just trying to get a calculator working.
I can't get it to compile, though. When I run this makefile:
OBJECTS = ...
1
vote
1answer
64 views
Undefined reference on very simple program
Once I installed Ubuntu 11.10, strange error appears. I want to use GD with my C program, so I installed package "libgd2-xpm-dev". Everything was installed - files gd.h and libgd.a are in ...
1
vote
1answer
84 views
wxstring undefined reference
I'm getting undefined reference upon linking a program using wxgtk. I tried suggestions from other places like defining unicode macro and --no-as-needed, but neither has fixed the problem. These are ...
1
vote
1answer
57 views
ubuntu and libcap (capabilities) undefined reference
I'm trying to compile the following minimal C code on ubuntu 10.10:
#include <sys/capability.h>
void main(void)
{
cap_t cap;
cap = cap_get_proc();
}
with gcc -lcap test.c ...
1
vote
1answer
40 views
Trouble with libstatgrab
Having trouble using libstatgrab -- I receive the following error at compile time:
"libstatgrabTest.cpp:16: undefined reference to sg_get_process_stats"
I'm guessing it is because I need to include ...
1
vote
1answer
45 views
Problems with linking .cpp files in Code::Blocks
I'm having a headerfile called cnVector.h whose implementation is written in cnVector.cpp.
Those two files are located in the same directory.
cNormalCBP/
+ src/
+ cNormal/
+ ...
1
vote
0answers
230 views
android jni ndk-build----------> undefined reference to `std::allocator<char>::allocator()'
android jni ndk-build---------->the error is:
undefined reference to `std::allocator::allocator()'
i have created a Application.mk under project/JNI/
with "APP_STL := gnustl_static"
so, any ideas, ...
1
vote
1answer
298 views
undefined reference to `__gxx_personality_sj0
With gcc 4.6 when trying to execute this code:
#include <iostream>
using namespace std;
#include <bitset>
int main()
{
//Int<> a;
long long min = ...
1
vote
1answer
111 views
Linkage error using shared dll with minimal C++/SWIG/Lua code
This is a really specific compilation problem involving C++, SWIG and Lua.
I have a really simple base code :
[AClass.hpp]
class AClass {
public:
AClass();
};
[AClass.cpp]
#include ...
1
vote
6answers
108 views
g++ undefined reference in very simple example
Please help with the following noob question about C++ and g++ compilation and linking. Essentially I have 2 classes in 2 different files, and can compile them but when I attempt to link, one class ...
1
vote
1answer
240 views
C++ / Mysql Connector : undefined reference to `get_driver_instance'
I've found some topics on this forum concerning the same error, but I didn't find the solution in it.
I'm trying to make work C++ & Mysql Connector on Ubuntu 11.04.
My error is (after following ...
1
vote
4answers
198 views
C++ Library Troubles with GCC
I'm brand new to C++ but I have a lot of general experience with programming, so I'm familiar with most low level concepts.
Anyway, I thought I'd try writing an IRC client, since IRC appears to have ...
1
vote
2answers
431 views
Compiling with Clang using Libc++ undefined references
The first couple are too long to reference. I get this error when I try to compile clang++ -stdlib=libc++ ../main.cc ... with clang and libc++ from the SVN.
error: undefined reference to 'typeinfo ...
1
vote
2answers
580 views
Multiple definition […] first define here
I'm writing a H264 parser (no OO), but I'm trying to use some modules to organize better the things.
I'm having this problems:
`CMakeFiles/server.dir/mainclass.cpp.o:(.bss+0x0): multiple definition ...
1
vote
2answers
65 views
Is there a way to cope with undefined reference error for template functions without implementing them in header?
I hope the problem is clear. Is there an alternative way not to get undefined reference error without implementing template functions in header files? Thanks in advance.
1
vote
3answers
735 views
C++:Undefined reference to 'FMOD:: X'
After looking around for various sound API libraries, I have decided to use FMOD for the time being.
Problem is that whenever I try to compile one of the code examples, I get the following errors:
...
1
vote
0answers
105 views
Adding symbol to external names directory of static library
I am confused by the difference in the symbol lists produced by otool and nm for a particular static library. I am trying to link a few static libraries to create the final executable but the linker ...
1
vote
2answers
975 views
C++ undefined reference to defined function
I cannot figure out why this is not working. I will put up all three of my files and possibly someone can tell me why it is throwing this error. I am using g++ to compile the program.
Program:
...
1
vote
1answer
691 views
Undefined reference to template members
I'm new to C++, and preparing a homework by using NetBeans IDE on Ubuntu 10.04. I use g++ as a C++ compiler.
The error message:
build/Debug/GNU-Linux-x86/Maze.o: In function `Maze':
...
1
vote
3answers
112 views
Undefined references
Linker Error:
$ make
g++ -Wall -g main.cpp SDL_Helpers.cpp Game.cpp DrawableObject.cpp `sdl-config --cflags --libs` -lSDL_mixer
/tmp/ccdxzrej.o: In function `Game':
...
1
vote
1answer
384 views
Problem using SDCC in a Makefile during the link step
The Small Device C Compiler (SDCC) will produce a ihx (Intel Hex) file even if there are undefined reference errors during the link step. This behavior causes problems when using SDCC in a Makefile ...
1
vote
3answers
84 views
Why is my .cpp file not being processed?
I'm trying to compile (make) a game source and it seems that my gRace.cpp file is being excluded or something because it keeps returning undefined reference errors for all my gRace class methods.
...
1
vote
3answers
481 views
Getting undefined references when linking against a static library
I made a static library with GCC. Building of the library was OK.
When I use it the linker throws undefined reference errors on some functions. But nm says the functions are defined and exported in ...
1
vote
4answers
413 views
C code compiled with C++: undefined reference
I have a small program that I can compile with GCC and ICC without any difficulties, but I would also like the code to work with G++ and ICPC. I tried to add this:
#ifdef __cplusplus
extern "C" {
...
1
vote
2answers
6k views
In function `_start': init.c:(.text+0x30): undefined reference to `main'
I'm working on a C project with around 30 source files (.c). I'm building this project on a 32 bit micro-controller(i.MX515) running on Ubuntu using GNU tools.
The compilation phase completes ...
1
vote
3answers
767 views
Undefined reference to
I keep getting this error message every time I try to compile, and I cannot find out what the problem is. any help would be greatly appreciated:
...
1
vote
1answer
869 views
MinGW/G++/g95 link problem - libf95 undefined reference to `MAIN_'
Summing up, my problem consists on compiling g95 objects inside a C++ application.
Actually, I'm constructing an interface for an old fortran program.
For this task, I'm using the wxWidgets GUI ...
1
vote
1answer
429 views
Undefined reference to
I'm doing an opengl/qt3 assignment, but I'm running into an undefined reference error:
Renderer.h:
...
#include "Mesh.h"
... Mesh mesh;
Renderer.cpp:
...
mesh.load("ball.obj");
...
Mesh.h:
...
...
1
vote
1answer
237 views
An error when compiling using curlpp
I tried to compile first simple example, and see compile error: undefined reference to `curlpp::Cleanup::Cleanup()'
In linker options i wrote curl-config --libs, in command line
$ curl-config --libs
...
1
vote
2answers
1k views
Undefined Reference to class function issue
I've scoured the internet and my own intellect to answer this basic question, however, much to my own dismay I've been unable to find a solution. I'm normally pretty good about multiple header files ...