Tagged Questions
The static-libraries tag has no wiki summary.
27
votes
3answers
6k views
Objective-C categories in static library
Can you guide me how to properly link static library to iphone project. I use staic library project added to app project as direct dependency (target -> general -> direct dependecies) and all works ...
18
votes
1answer
261 views
Compiling ghc with -fPIC support
I'm trying to install GHC with -fPIC support in Fedora.
I've grabbed a source tarball since it seems no binary one has this.
In Build.mk i've changed the quick build type to
ifeq "$(BuildFlavour)" ...
16
votes
4answers
6k views
Static libraries in Xcode 4
(My question has been asked here before but with no working answers that I can see. E.g. Xcode4 Workspace with Static library project & application project)
I'm trying to use a library provided ...
15
votes
2answers
331 views
getting linking error due to different library for ios and iphonesimulator?
I am using libiVisualizationChart.a library, there are separate libraries for iphoneos and iphonesimulator. I have added both the libraries in xcode project and mentioned both the library paths in ...
15
votes
1answer
1k views
Linking Windows DLL files from static libraries using CMake without hand-crafting unresolved symbol names
The Situation
I'm using Visual Studio 2008 SP1 (Professional Edition, both for 32-bit and 64-bit
builds). I'm seeking a workaround to what I believe is a very
unhelpful "limitation" in ...
14
votes
2answers
2k views
How to build an Objective-C static library?
I have some Objective-C classes, which I am currently using in both a Cocoa application (Mac OS X) and a Cocoa-Touch application (iOS). Currently, when I update those classes, I have to copy those ...
13
votes
7answers
3k views
Difference between static and shared library
What is the difference between static and shared libraries?
I use Eclipse and there are several project types including Static Libraries and Shared Libraries? Does one have an advantage over the ...
13
votes
4answers
9k views
Creating static library for iPhone
There's an open source library that I would like to use for my iPhone app. The library is written in C and compiles with Makefiles. I would like to use a static library.
If I add the .a file to my ...
12
votes
2answers
840 views
How to compile Haskell to a static library?
Hey,
I'm learning Haskell and I'm interested in using it to make static libraries for using in Python and probably C. After some googling I found out how to get GHC to output a shared object, but it ...
12
votes
6answers
54k views
How to resolve 'unrecognized selector sent to instance'?
In the AppDelegate, I'm alloc'ing an instance defined in a static library. This instance has an NSString property set a "copy". When I access the string property on this instance, the app crashes ...
10
votes
5answers
4k views
Can you reference Xib files from static libraries on the iPhone?
In my app, i currently have all my code separated into a static library, to make it easier to set up the xcode project targets for the actual app and for unit tests for my code. The problem with this ...
10
votes
3answers
6k views
Convert a Static Library to a Shared Library
I have a third-party library which consists mainly of a large number of static (.a) library files. I can compile this into a single .a library file, but I really need it to be a single .so shared ...
9
votes
4answers
4k views
Interface Builder can't see classes in a static library
I have refactored some UIView sub-classes into a static library. However, when using Interface Builder to create view components for a project that uses the static library I find that it is unaware of ...
8
votes
2answers
170 views
How to use function from static library if I don't have header file
Is it a way to use function from static lib, if I don't have header file, only *.a file, but I know function signature?
8
votes
2answers
144 views
Do static libraries, which depend on other slibs need the actual 'code' from them to work?
Sorry about the vague question title, I just want to ascertain some things.
Static libraries don't link with other static libraries, right?
So when I write a slib: A, that uses functionality of ...
8
votes
1answer
354 views
Boost.Test tests on a static library
I'm using Boost.Test for unit testing.
Because of several reasons, I would like to write the unit test cases on different static libraries.
The problem is that when I do this, the automatic ...
8
votes
4answers
322 views
What are the pro and cons of statically linking a library?
I want to release an application I developed as a hobby both for Linux and Windows. This application depends on boost (and possibly other libraries). The norm for this kind of application (a chess ...
8
votes
1answer
2k views
Static initialization and destruction of a static library's globals not happening with g++
Until some time ago, I thought a .a static library was just a collection of .o object files, just archiving them and not making them handled differently. But linking with a .o object and linking with ...
8
votes
4answers
3k 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 in the main project. ...
8
votes
4answers
3k views
Categories in static library for iPhone device 3.0
I have categories in my static library. Any application developer should set -ObjC flag to "Other Linker Flags" to use my static library properly. It works fine for iPhone device/iPhone Simulator 2.x ...
8
votes
3answers
3k views
Decrease Qt GUI application size
I'm learning to develop apps using Qt Creator. I have built a simple app under Windows, depends on uses mingwm10.dll, QtCore4.dll, QtGui4.dll, QtNetwork4.dll.
Out of QtQui4.dll I use only a a couple ...
8
votes
2answers
5k views
How to static link on OS X
I'm trying to link to a static library on OS X. I used the -static flag in the gcc command but I an error message:
ld_classic: can't locate file for: -lcrt0.o
collect2: ld returned 1 exit status
I ...
8
votes
5answers
5k 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 library which in turn ...
7
votes
1answer
35 views
Prevent import of function from static library
Say I have two static libraries that were not built by me and I have no control over their contents.
Library 1 has functions:
A()
B()
C()
Library 2 has functions:
A()
D()
E()
Both need to be ...
7
votes
2answers
971 views
difference between framework and static library in xcode4, and how to call them
I am quite new to xcode and objective-c. I want to ask a very basic question.
I saw that when "linking binary to libraries" in project settings, there are difference about framework and libraries ...
7
votes
4answers
2k views
GCC: static linking only some libraries
How can I statically link only a some specific libraries to my binary when linking with GCC?
gcc ... -static ... tries to statically link all the linked libraries, but I haven't got the static ...
6
votes
1answer
325 views
How to create static library for iOS without making all symbols public
This question has been asked before, but digging into the documentation for the various development tools it seems like this is possible, just not obvious.
Motivation:
Making a static library for ...
6
votes
2answers
5k views
Xcode 4 can't locate public header files from static library dependancy
I'm working on an iOS application project which came from Xcode 3. I have now moved to Xcode 4 my project builds a number of static libraries.
Those static libraries also declare public headers and ...
6
votes
3answers
4k views
How to build universal ios static library
I'm trying to build a static library that I can use with both ios3.x and ios4.x. I can build a static library with ios3.0 that works with another project in ios3.0 but won't compile in ios4. The same ...
6
votes
1answer
916 views
Determining the CPU architecture of a static library (LIB) on Windows
I just built libpng on a 64-bit Windows machine using VS2008. It produces a libpng.lib file inside the \projects\visualc71\Win32_Lib_Release directory (Configuration used being "LIB Release").
I ...
6
votes
1answer
989 views
How to build a library for both iPhone simulator and device?
I want to build a static library for iphone. I want to give my users the .a library which they can use for both simulator test and device test. Do I have to build two library in simulator mode and ...
6
votes
5answers
726 views
How to force inclusion of an object file in a static library when linking into executable?
I have a C++ project that due to its directory structure is set up as a static library A, which is linked into shared library B, which is linked into executable C. (This is a cross-platform project ...
6
votes
2answers
1k views
Finding undefined symbols in windows static lib
Is there any way to find out the list of undefined symbols in windows static library compiled using VC6?
I know the nm command will list all the symbols in linux and symbols with a tag of "U" can be ...
6
votes
5answers
967 views
What is proper naming convention for MSVC dlls, static libraries and import libraries
What is standard or "most-popular" naming convention for MSVC library builds.
For example, for following platforms library foo has these conventions:
Linux/gcc:
shared: libfoo.so
import: ---
...
6
votes
3answers
16k views
Using a static library in QT Creator
Greetings,
I'm having a hell of a time finding documentation which clearly explains how to use a static library in QT Creator.
I've created and compiled my static library using QT Creator ...
6
votes
5answers
4k views
g++: In what order should static and dynamic libraries be linked?
Let's say we got a main executable called "my_app" and it uses several other libraries: 3 libraries are linked statically, and other 3 are linked dynamically.
In which order should they be linked ...
6
votes
4answers
2k views
What does a GCC compiled static library contain?
My application links against libsamplerate.a. I am doing this to make distributing the final binary easier.
I am worried that perhaps the code inside the .a file depends on some other libraries I ...
5
votes
1answer
135 views
initialisation of static object when linking against a static library
What are the rules for initialisation of static object declared in another shared library? For instance, consider the following:
file X.hpp:
struct X {
X ();
static X const s_x;
};
struct Y {
...
5
votes
2answers
221 views
Is using --start-group and --end-group when linking faster than creating a static library?
If one builds static libraries in one's build scripts and one wants to use those static libraries in linking the final executable, the order one mentions the .a files is important:
g++ main.o hw.a ...
5
votes
1answer
502 views
How to use FLAC in iPhone application?
I'm developing iPhone app that should use Google Voice API, so my app should convert voice recorded in m4a to flac. Of course I should use libflac, but all my attempts to compile static library for ...
5
votes
1answer
1k views
Xcode 4, Interface Builder and the Awareness of Classes in a Static Library
Although Xcode 4 is advertised being aware of cross-project classes of projects in a shared workspace, I didn't find this working and did some research about the problem. The common solution discussed ...
5
votes
3answers
256 views
Double initialization of a static STL container in a C++ library
There are a few good questions and answers here around the "static initialization order fiasco", but I seem to have hit against yet another expression of it, specially ugly because it does not crash ...
5
votes
1answer
567 views
Duplicate symbol: Include static lib A in static lib B, also include lib A and B in XCode Project
I've been trying to build up a set of reusable libraries for app development, but I'm starting to run into a problem.
One of my static libs is a set of general use methods (categories on Objective-C ...
5
votes
1answer
234 views
Creating both static and shared C++ libraries
I'd like to build both static and shared libraries in a project.
I know that shared libraries need to be be created from objects compiled with -fpic to get Position Independent Code while the static ...
5
votes
2answers
9k views
Android NDK, two Static Libraries and Linking
I started off creating libraries as shared libraries, but I considered it would be more efficient to create one shared libraries and the rest static. When it was all shared, it compiled and linked ...
5
votes
1answer
1k views
g++ linker: force static linking if static library exists?
I've a program which links to many libraries. g++, by default, prefers to link to shared libraries , even if corresponding archive exists. How can I change this preference to prefer static archive ...
5
votes
4answers
358 views
Static library (.lib) to Python project
is it possible to import modules from .lib library to Python program (as simple as .dll)?
5
votes
3answers
494 views
Hide struct definition in static library
I need to provide a C static library to the client and need to be able to make a struct definition unavailable. On top of that I need to be able to execute code before the main at library ...
5
votes
3answers
1k views
Loading time for shared libraries vs static libraries
I have a question on shared libraries vs static libraries loading time.
Assume that i have a executable foo.exe which uses liba, libb, libc. Also at a given time there are more than 10 instances of ...
5
votes
3answers
3k views
Tool to view functions exported in static library
Is there a tool that I can use to see what functions are exported by a static library? I am getting linker errors in VS2005, and I want to make sure that a static library I am including does indeed ...