0
votes
1answer
9 views
Geospatial library for the iPhone
I'm thinking about creating a location-aware iPhone app that could work offline by coming packaged with a list of points of interest (POIs). The app would read the user's current …
0
votes
1answer
27 views
Linking GUI app against a static lib in QtCreator
Hi,
What is the right way to build a library from source using MinGW and then reference it in the GUI application's project? I'm not familiar with gcc and makefiles, but I think t …
1
vote
2answers
48 views
core data in a static library for the iPhone
I've built a static library that makes heavy use of the Core Data framework. I can successfully use the library in my external project, but ONLY if I include the .xcdatamodel file …
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 …
1
vote
7answers
205 views
The .Net equivalent of static libraries?
I'm building a tool in managed code (mostly C++/CLI) in two versions, a 'normal user' version and a 'pro' version.
The fact that the core code is identical between the two versio …
0
votes
0answers
19 views
Use libpng static lib in ImageMagick/GraphicsMagick
Hi everyone,
I'd like to compile a executable that contains imagemagick and it's delegate libraries like libpng to ease distribution. I easily compile imagemagick into my app but …
0
votes
2answers
39 views
How could I create a static library using visual stdio tools on the command line and automate .def creation
I'd like to create a static library using windows tools (cl.exe, link.exe, lib.exe, etc.) but I don't want to manually enter the names of the functions to export either in a .def f …
1
vote
1answer
82 views
Using CHDataStructures.framework on iPhone
Hi,
I'm new to iPhone programming and I'm trying to use CHDataStructures in my project. But I'm running into some issues:
When I directly try to build it right after download I …
0
votes
3answers
39 views
Resources in a static lib file - MFC
MFC is failing to launch my dialog boxes, it seems, because it can't find the resource identifiers. The dialog boxes are in a separate .lib file (so it has a separate .rc file, whi …
2
votes
5answers
730 views
VC++ resources in a static library
Is it possible to build resources into a static library and reuse them by simply linking with the library?
I'm primarily thinking about the case where you call a function in the l …
0
votes
1answer
65 views
Libraries “rt” and “dl” in Cygwin
Perhaps this is stupid but I'm unable to find out which package I have to install in Cygwin to fix the following missing libraries:
config.status: creating unix.buildinfo
config. …
0
votes
2answers
194 views
Linking a shared library against a static library: must the static library be compiled differently than if an application were linking it?
At least on Linux and Solaris, static libraries are really just a bunch of compiled .o's tossed into one big compressed file. When compiling a static library, usually the -fpic fla …
0
votes
1answer
170 views
CMake Visual Studio linking executable with static library
I have a very simple (currently just a main.cpp) CMake C++ project that I'm trying to build on both Mac OS X and Windows. It depends on libgsasl, which I have compiled as a static …
1
vote
1answer
60 views
How to know when to use the .a or .so when linking to Boost?
I wanted to try out the Boost::Serialization library for a project I'm working on. I'm also trying to get used to programming in Linux as well. I set up boost in its default locati …
0
votes
5answers
320 views
Why are static library headers not found?
I've used Clint Harris' tutorial to set up code sharing between projects, and everything works just as expected on my computer. But on my co-worker's machine, it seems the compiler …
