0
votes
1answer
50 views
boost linker errors -regular expressions - c++
hi am trying to compile a simple program in boost library but i keep getting linker errors
#include <iostream>
#include <string>
#include <boost\regex.hpp> // …
2
votes
2answers
30 views
Unable to locate definition of etext , edata , end
This is a code from linux man page....
#include <stdio.h>
#include <stdlib.h>
extern char etext, edata, end;
int main(int argc, char *argv[])
{
…
0
votes
2answers
89 views
Problem statically linking MFC libraries
I have a Visual Studio 6 workspace I'm trying to convert to a Visual Studio 2008 solution. The output of said solution is a .dll. It has to be a .dll and it needs to statically l …
0
votes
7answers
172 views
How do you actually use a C library?
I'm sure this question has been asked many times, but I can't figure this out. Bear with me.
So when you download a library, you get a bunch of .c and .h files, plus a lot of othe …
1
vote
2answers
16 views
Framework not found AudioUnit
Been banging my head agains the wall for awhile now.
My Xcode project went a little haywire while refactoring, and refused to build. I've squashed all the other errors, except one …
1
vote
3answers
150 views
Extract statically linked libraries from an executable
I'm not sure if this is even possible, but given an executable file (foo.exe), with has many libraries which has been linked statically.
Is there any software that extract from t …
0
votes
2answers
24 views
[ linux, g++, linking]: library is in ldconf cache and Links Manually, but not by default
Hi all,
This appears similar to an earlier post: http://stackoverflow.com/questions/335928/linux-gcc-linking-ld-cannot-find-a-library-that-exists But to the best of my knowledge, …
0
votes
4answers
44 views
xerces-c 2.8 : error while loading shared libraries
Hi,
I'm trying to compile a program running on an HP UX server on a Red Hat Linux.
It uses xerces-c library to parse xml files. Compilation is ok, but when i try to run it, I get …
0
votes
1answer
64 views
linking mess with libc
I have a library compiled into a .a file, linked against my application. (iphone, developing with Xcode)
Everything seems to be fine, linking seems to succeed, but when I run the …
2
votes
1answer
41 views
problem w/ linking static function g++
Hi-
I am trying to build a small program and I have my own library libfoo. I have a camera class that is calling a static function from my Vector3 class (i.e. crossProduct). My …
3
votes
4answers
89 views
How to statically link using link.exe
I've been trying to statically link against a C++ library called Poco on Windows using the Visual Studio 2008 command line tools.
I build my program with:
cl /I..\poco\lib /c mya …
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
4answers
142 views
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6?
I want to preface this with the important notice that I am not a C/C++ programmer, and know very little about how linkage of libraries works in C.
Our code uses libstdc++.so.6 (gc …
-9
votes
2answers
129 views
For what reason does an IDE not check to see if it can create a binary before compiling? [closed]
Is there a specific reason as to why an IDE would go through the trouble of compiling a project only to have it fail when linking?
I won't tell you why this bothers me, because a …
1
vote
1answer
26 views
Linker Error: iPhone Unit Test Bundle referencing App classes
Starting with an app already in development, I have carried out the instructions in the iPhone Development Guide – Unit Testing Applications
I can successfully include and use my …
