Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
343 views

Is this code broken or is there a bug in g++?

For some strange reason g++ (versions 4.5.0 and 4.5.2) cannot compile this code: bool somefunc() { return false; } class C { public: static const int a = 0; static const int b = 1; }; ...
12
votes
3answers
1k views

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 try to #import one of my classes in my test class and try to use it. If I try to build ...
12
votes
2answers
13k views

Lua on iPhone?

I am trying to use Lua on the iphone. On Mac OSX, in a normal Cocoa application (not iPhone), I used the following code: lua_State* l; l = lua_open(); luaL_openlibs(l); luaL_loadstring(l, ...
11
votes
5answers
4k views

“bad codegen, pointer diff” linker error with Xcode 4

Recompiling a C++ iPhone app with Xcode 4 I get this nasty linker error: ld: bad codegen, pointer diff in __static_initialization_and_destruction_0(int, int) to global weak symbol ...
10
votes
2answers
8k views

Problem Linking Boost Library in Linux

I am trying to build a project using Boost's Asio and I am having some trouble. Initially, I tried to build the project without any additional libraries since everything is supposedly in the header ...
8
votes
5answers
315 views

Why virtual function can't be unimplemented when allocated with 'new'?

struct A { virtual void foo(); // unused and unimplemented virtual void bar () {} }; int main () { A obj; // ok obj.bar(); // <-- added this edition A* pm = ...
8
votes
2answers
653 views

Whole program optimization failing in VC2008

I have a reasonably large C++ program (~11mb exe) compiled under VS2008 and was interested to see if whole program optimization would significantly affect its performance. However, turning on whole ...
7
votes
1answer
502 views

$non_lazy_ptr link error with agvtool version variables?

I've been using agvtool for one of my iPhone apps on general principle, and have recently found a reason why I want to be able to check the version variable (so that I can re-copy help content into ...
7
votes
3answers
3k views

Exporting static data in a DLL

I have a DLL which contains a class with static members. I use __declspec(dllexport) in order to make use of this class's methods. But when I link it to another project and try to compile it, I get ...
5
votes
4answers
2k views

C++ - LNK2019 error unresolved external symbol [template class's constructor and destructor] referenced in function _main

[[UPDATE]] -> If I #include "Queue.cpp" in my program.cpp, it works just fine. This shouldn't be necessary, right? Hey all -- I'm using Visual Studio 2010 and having trouble linking a quick-and-dirty ...
5
votes
6answers
585 views

VS2008: Can I build a project with 2 CPP files of the same name in different folders?

Here is my folder structure: / | -- program.cpp -- utility.h -- utility.cpp | -- module/ | -- utility.h -- utility.cpp // Note that I have two files named utility.h and two named ...
5
votes
1answer
2k views

Help with linker failer: .gnu.linkonce.t

I'm having trouble linking a shared library using gcc 3.2.3 with binutils 2.18. When I try to link the library I get the following error: .gnu.linkonce.t_... referenced in section .rodata: defined in ...
4
votes
5answers
2k views

Q_OBJECT throwing 'undefined reference to vtable' error

I'm using Qt Creator 2.0.1 with Qt 4.7.0 (32 bit) on Windows 7 Ultimate 32 bit. Consider the following code, which is a minimum to produce the error: class T : public QObject, public QGraphicsItem { ...
4
votes
4answers
227 views

Trouble with 'extern' Keyword

I have a set of global variables and a method in a cpp file. int a; int b; int c; void DoStuff() { } in the header file I have declared them explicitly with the extern keyword. My problem is ...
4
votes
1answer
11k views

linker error - linker input file unused because linking not done. then undefined reference to a function in that file

Ok so I'm having trouble with my linking of files. Basically, my program works: the main program, is gen1 gen1 - recieves input sends to str2value for processing, outputs resaults str2value, brakes ...
3
votes
3answers
117 views

C++ Template: Partial template Function Specialization in template class

I want to specialize specific function in template class. Eg: template<class T> class A { public : void fun1(T val); void fun2(T val1, T val2); }; template <class ...
3
votes
1answer
71 views

Linking error when upgrading from lua 4.0.1 to 5.1.4

I'm working on a really old source code (compiled in Red Hat). Before it had lua-4.0.1 so I just compiled the latest lua (lua-5.1.4) and installed it in the same directory as the old one. The ...
3
votes
0answers
827 views

Weak symbol link on Mac OS X

Currently I encountered a weak link issue on Mac OS X 10.6.7 with Xcode 4.0.2. robin@chameleon:/tmp/o$ gcc --version i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3) As the ...
3
votes
3answers
2k views

How to link during Matlab's MEX compilation

I've written a program of the following form: #include "stuff_I_need.h" int main(){ construct_array(); // uses OpenMP pragma's print_array(); return(0); } that compiles, links, and runs ...
3
votes
4answers
522 views

How to redefine malloc() in Linux for use in C++ new

I have a mem_malloc() and mem_free() defined for me and I want to use them to replace the malloc() and free() and consequently C++'s new and delete. I define them as follows: extern "C" { extern ...
3
votes
2answers
953 views

Linker Error During OpenGL: SuperBible Tutorial

I'm currently trying to decide between DirectX and OpenGL by programming a little DirectX 10 and OpenGL 3.3. I already have the setup for DirectX finished, it was fairly easy to link and compile. ...
3
votes
3answers
743 views

C++: pure virtual assignment operator

why if we have pure virtual assignment operator in a base class, then we implement that operator on the derived class, it give linker error on the base class? currently I only have the following ...
3
votes
2answers
853 views

Undefined reference to non-member function - C++

I have the following in header file. namespace silc{ class pattern_token_map { /* Contents */ }; pattern_token_map* load_from_file(const char*); } In the CPP file (this has got ...
3
votes
2answers
1k views

Boost lib linker error Visual C++

I downloaded the source for Launchy and am trying to build it in Visual Studio 2005. The Launchy project is built using VC7 so I had to update the project files to VC8 and that process seemed to go ...
3
votes
4answers
10k views

Trying to include a library, but keep getting 'undefined reference to' messages

I am attempting to use the libtommath library. I'm using the NetBeans IDE for my project on Ubuntu linux. I have downloaded and built the library, I have done a 'make install' to put the resulting ...
3
votes
1answer
3k views

Error and warnings in Xcode when declaring Array of NSString* as a global extern

I am declaring an array of NSString* in a header file of a class. PolygonShape.h NSString* POLYGON_NAMES[] = {@"Invalid Polygon", @"Monogon", ...}; Now I am using this in PolyginShape.m as follows: ...
3
votes
4answers
5k views

“file not recognized” while using the GNU linker

I'm probably doing something wrong, being a newbie. Could you please help me out? I've written a simple Hello World program in C called hello.c, and ran the following command: gcc -S hello.c That ...
2
votes
2answers
121 views

Undefined reference to `kill'

I developed an application for an ARM7 embedded system in C. Now I want to compile and link it with C++ in order to use some C++ features. To do this, I am using mipsel-elf-g++ instead of ...
2
votes
2answers
70 views

Linker error when using static members

I'm using Qt 4.7 and Cmake 2.8.3 with g++ 4.2.1 on Mac OS X. I'm getting a bizarre linker error when using static or global variables in one of my files. Here's the error: ld: duplicate symbol ...
2
votes
1answer
92 views

unresolved external symbol __imp__Inf and __imp__Nan

I just tried to build Qt for WinCE7.0 using VS2008 after lots of code modification I successfully compiled main libraries. While Compiling the QtScript library I received the following linker errors: ...
2
votes
3answers
134 views

Undefined reference to 'main'

You got to love linker errors *sarcasm*. Any way, I am developing a psp game using the psp port of allegro which came with pspsdk. And after I fixed all the other undefined references this one stumps ...
2
votes
1answer
51 views

how to link lpng package

I use VC++, boost::gil package and lpng package to read a png image. After debuging I have following linking problem: Error 3 error LNK2001: unresolved external symbol _png_set_swap ...
2
votes
1answer
167 views

AVR linker error, “relocation truncated to fit”

I'm trying to compile some code for an ATmega328 micro, and I want use the libraries and the core of Arduino. I'm using CMake. I have gotten to compile the core library and all objects of my code and ...
2
votes
2answers
349 views

CocoaLumberjack Error: Symbol not found: _objc_storeStrong

I'm relatively new to iOS development, and am trying to implement CocoaLumberjack logging. I downloaded the latest source from https://github.com/robbiehanson/CocoaLumberjack, have included the ...
2
votes
1answer
230 views

Link error while building a C++ Unit test project in VS.NET 2010

I am trying to build a very simple C++ unit test project. The setup is just so happened to be exactly the same as what this blog described. I built a static library TestLib.lib and a C++ unit test ...
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
3answers
141 views

“Undefined Symbol _memset”

I asked a similar question, but I have some update which is really confusing me. Essentially, I want to link a number of object files with the linker as follows: /usr/ccs/bin/ld -o q -e start_master ...
2
votes
1answer
132 views

Unresolved external symbol with operator overloading and templates

In trying to compile this program: namespace MyNamespace { template<typename T> class Test { public: class Inner { int x; public: ...
2
votes
1answer
75 views

Unresolved external symbol after every change in code

I've got a problem with my code. It basically looks like this: someclass.hpp: class SomeClass { public: SomeClass(); ~SomeClass(); //... some other methods }; someclass.cpp: ...
2
votes
1answer
144 views

GDC D2 Compile: undefined reference to `_Unwind_SjLj_XYZ'

I just downloaded GDC (gcc-4.5.2-tdm-1-gdc-r575-20110723.zip) to use with MinGW-w32, and upon trying to compile/link a file, I got these errors: ...
2
votes
3answers
212 views

Visual Studio, MSBuild: First build after a clean fails, following builds succeed

There's obviously something wrong with my build, but I can't figure it out. I narrowed this down to one of my projects: first build after clean fails, all following builds succeed. I get linking ...
2
votes
2answers
96 views

overloading a virtual function that is used in a base classes non-virtual function

Hey so i'm trying to build the following member Functors of class ConcavePolygon, and i'm getting Linker External symbol error for some reason: unresolved external symbol "public: virtual void ...
2
votes
1answer
352 views

GHUnit Linker Error with App Classes

I'm trying to run a GHUnit test to just test that a setter actually works for a NSManagedObject object in my app. My app is called Machine and my GHUnit target is called Tests. I've added Machine as ...
2
votes
3answers
85 views

undefined reference to `timer_getoverrun' gets solved by passing -lrt to gcc. But why?

I was experimenting with a few timer functions and ended up with the above linker error. Someone on the net suggested to pass -lrt to gcc and it worked! What is '-lrt' and how did it help to overcome ...
2
votes
1answer
292 views

Python 3.2 Debug Lib

I need to either download or build the python32_d.lib, unfortunately whenever I search for how to obtain said lib all I get is people asking the same question, but never the actual answer. One answer ...
2
votes
1answer
2k views

Android NDK linker error 'Undefined reference to std::ios_base' when using FreeImage

I am trying to statically link against the open frameworks build of libfreeimage.a for the Android NDK (using the native-activity sample as a template). When I compile and link my project I get a lot ...
2
votes
1answer
584 views

Linker error in Visual C++ Windows Forms project

I am using SQLAPI++ to connect to Oracle from my Visual C++ application. I can easily connect to database from VC++ only when I do it in Win32 console appliation mode. But when I try to do the same ...
2
votes
2answers
1k views

libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'

At first I warn that I/m not programmer, but administrator only I try to understand some actions When I installed program made by Oracle, I got log message: /usr/bin/make -f ins_precomp.mk relink ...
2
votes
1answer
1k views

ld.exe cannot find -lcurl

(I spotted a question similar to this, but it was 2 years old.) I'm developing a Windows Form Application in Visual C++ 2008, which uses the FTP feature of libCurl. Although I've added the lib and ...
2
votes
2answers
223 views

How do I define a template class and divide it into multiple files?

I have written a simple template class for test purpose. It compiles without any errors, but when I try to use it in main(), it give some linker errors. main.cpp #include <iostream> #include ...

1 2 3 4 5 10