Tagged Questions

0
votes
7answers
123 views

Virtual tables are undefined

Hi, I wrote some code but I am unable to compile it: #include <cstdio> #include <vector> using namespace std; class Visitor; class Land { public: virtual voi …
4
votes
4answers
142 views

C++ linker - Lack of duplicate symbols

Why does the following code not give me a duplicate symbol linker error for Impl? I ran across this problem in some code I inherited and I'm recreating a shorter version here for …
0
votes
3answers
32 views

LNK1106 with big binary resource

I have a rather huge .dat-file (896MB) included as a BIN resource in my project. Now I get a LNK1106 link error ("fatal error LNK1106: invalid file or disk full: cannot seek to 0x3 …
0
votes
1answer
30 views

When trying to include ‘#include <boost/regex.hpp>’ I get: 1>LINK : fatal error LNK1104: cannot open file ‘libboost_regex-vc100-mt-gd-1_39.lib’

Not sure why i get that, I downloaded libs from here and while I have a lib called 'libboost_regex-vc90-mt-gd-1_39.lib I don't have one which is called 'libboost_regex-vc100-mt-gd- …
1
vote
1answer
32 views

LD linker: Target address aligning but not address in ROM

I have a program that's resident in flash and will run from flash. Early in the program data segments are copied from flash to ram. I'm using a linker script like (simplified): .t …
-2
votes
5answers
88 views

c++ templated class does not link

template<typename AT> class growVector { int size; AT **arr; AT* defaultVal; public: growVector(int size , AT* defaultVal); //Expects number of e …
0
votes
3answers
87 views

C++ unresolved symbols

Hey I'm getting an unresolved symbol error at linking in my proj. Im linking to an external library, and yes i have set up the configuration correctly, but when in Debug it output …
4
votes
5answers
98 views

Linkers and architectures

Why do we have linkers for different architectures? Service of the linker is to resolve addresses. So how it is related to the instructions of target architecture?
0
votes
3answers
18 views

What to the linker function definitions stand for?

We have a linker error when upgrading an SDK. Looking inside the .lib file we can see the old function definition was: ?SetupMOSSDK@@YAEPBGKPBUMOSGUID@@K@Z However the new .lib …
3
votes
3answers
85 views

Modify dll exports (symbol table). I want to obfuscate the function names.

I have a third party dll that I want to change the symbol names. Is this possible? I dont want the competition to know what component my product uses. I don't have the source for t …
0
votes
5answers
135 views

Undefined symbols. ld: symbol not found

Everything is working except this undefined symbols error: bash-3.2$ make g++ -Wall -g solvePlanningProblem.o Position.o AStarNode.o PRM.o PRMNode.o Worl.o SingleCircleWorld.o Myw …
0
votes
1answer
23 views

MFC CRT Order Linker Problem

Hey there! I have exactly the problem described here (i'm getting those linker errors when trying to add MFC to my project): http://support.microsoft.com/?scid=kb%3Ben-us%3B148652 …
8
votes
3answers
212 views

How do I force the linker to include a function I need during debugging?

I often make small methods to assist debugging, which aren't used in the actual program. Typically most of my classes has an AsString-method which I add to the watches. I know Delp …
0
votes
2answers
90 views

Pruning a static library in c++

I am trying to expose a single well defined class by building a static library and then shipping the built library with a few header files that define that class and the interfaces …
1
vote
1answer
172 views

Cross-compile libgcrypt for the iPhone? Linker error… can’t seem to find “fwrite” and “strerror”?

I have successfully cross-compiled the Apache Portable Runtime (APR) for the iPhone, using a set of configure scripts that invoke the GNU Autotools "./configure" with the necessary …

1 2 3 4 5 20 next
15 30 50 per page