Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
11answers
12k views

Static linking vs dynamic linking

Are there any compelling performance reasons to choose static linking over dynamic linking or visa versa in certain situations? I've heard or read the following, but I don't know enough on the subject ...
33
votes
2answers
3k views

Small Haskell program compiled with GHC into huge binary

My source code can be found here: https://github.com/tm1rbrt/S3DM When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
16
votes
2answers
3k views

CMake: how to produce binaries “as static as possible”

I would like to have control over the type of the libraries that get found/linked with my binaries in CMake. The final goal is, to generate binaries "as static as possible" that is to link statically ...
16
votes
7answers
2k views

Making small haskell executables?

Are there any good ways to make small haskell executables? With ghc6 a simple hello world program seems to come to about 370kB (523kB before strip). Hello world in C is about 4kB (9kB before strip).
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 ...
9
votes
5answers
17k views

Xcode 4 Final - “armv6 armv7” issue while linking with armv6 libs

Until xcode 4 final (I was using 3.latest and 4 GM for the time it was available) this didn't happen. When I upgraded to xcode 4 final version, I started getting a linking error while trying to link ...
8
votes
3answers
444 views

Create a static Haskell Linux executable

It's not often two things I love so much come together to cause me so much annoyance (besides my kids). I've written a Haskell program at work that uses libraries like text, xml-enumerator, ...
8
votes
6answers
11k views

Xcode4 Linking Problem. File was built for archive which is not the architecture being linked (arm6)

Recently, I switched to Xcode4 and when I compile my project I got following error. ld: warning: ignoring file ...
8
votes
1answer
615 views

Why does gcc not implicitly supply the -fPIC flag when compiling static libraries on x86_64

I've had numerous problems compiling shared objects that link statically against static libraries. This problem only shows up on x84_64 platforms. When doing the same compilation work on x86_32 I do ...
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 ...
7
votes
1answer
125 views

How to build midas.obj from the midas source code

Recently I discovered a problem on the midas and I fixed it, the problem now is that I want to use MidasLib not the midas.dll and with the source code I'm only able to build the DLL. The source is ...
7
votes
3answers
480 views

VS2010 static linking issue

my company has recently upgraded from VS2005 to VS2010. We have a huge project which uses a lot of modules which are being linked statically into the exe. But there seem to be some issues with linking ...
7
votes
4answers
669 views

Linking : Static vs Dynamic

In my application I have 3 major parts: Exe : an executable file Lib_A : a library contains a singleton class and a base class for some calculations to be use in singleton class Lib_B : a ...
7
votes
4answers
916 views

C++ application - should I use static or dynamic linking for the libraries?

I am going to start a new C++ project that will rely on a series of libraries, including part of the Boost libraries, the log4cxx or the google logging library - and as the project evolves other ones ...
7
votes
3answers
6k views

#pragma comment(lib, “xxx.lib”) equivalent under Linux?

I have a static library file called libunp.a, I do know I could use gcc -lunp xx to link to the library. I could use #pragma comment(lib,"xxx.lib") to tell the microsoft c/c++ compiler to include the ...
7
votes
1answer
2k views

How to statically link an existing linux executable?

Looking for a way to convert a dynamically linked executable to a static executable. Seems like it should be possible but man pages are turning up short and google's not helping either.
6
votes
3answers
2k views

Linux static linking is dead?

In fact, -static gcc flag on Linux doesn't work now. Let me cite from the GNU libc FAQ: 2.22. Even statically linked programs need some shared libraries which is not acceptable for me. What ...
5
votes
1answer
185 views

How to statically link libstdc++

I am trying to get my program working in another machine where libstdc++ versions is different. I am developing and compiling it on netbeans. I have specified the option -static-libstdc++ but the ...
5
votes
3answers
330 views

How to statically link all libraries except a few using g++?

I have a requirement that I link all my libraries statically including libstdc++, libc, pthread etc. There is one omniorb library which I want to link dynamically. Currently I have dynamically linked ...
5
votes
1answer
86 views

Automatically Specify .LIB in Header for Visual Studio 2008 C++

Is it possible to automatically link a c++ static library in Visual Studio 2008? Or, is there an improvement to use from the standard approach? I am developing a set of c++ libraries and ...
5
votes
3answers
203 views

Static methods in C++

I am having a little trouble working with static methods in C++ Example .h: class IC_Utility { public: IC_Utility(); ~IC_Utility(); std::string CP_PStringToString( const unsigned char ...
5
votes
1answer
330 views

How do I include only used symbols when statically linking with gcc?

I'm deploying a small program compiled with gcc, 4.3.2-1.1 (Debian). This program will be deployed on virtual machine templates ranging from Debain 5 to bleeding edge Fedora, Ubuntu, Slackware, Arch ...
5
votes
1answer
314 views

Why do we need to link libraries like pthread when they are already in the right folder “/lib” and “/usr/lib”?

1. Why do we need to link the non standard libraries/include non standard header files when they are already present in the right folder anirudh@anirudh-Aspire-5920:~/Documents/DUMP$ locate ...
5
votes
2answers
319 views

How to build a program so that it doesn't require DLLs

How can I compile a (Haskell) program so that it doesn't require DLLs? I wrote a program that uses GLUT and requires glut32.dll. I compiled it with ghc --make program.hs. Now I want to distribute my ...
5
votes
2answers
364 views

ImageMagick static compilation with another project gives linker errors

I've downloaded the ImageMagick source, compiled the wizard to create a Visual Studio solution for static linkage, and included the static library Magick++ project in my sample project (code below). ...
5
votes
3answers
2k views

Trying to statically link Boost

I am working in Linux, Eclipse CDT, g++, with Boost library. Having existing program which uses Boost thread, I try to link it statically instead of dynamically. /usr/local/lib directory contains the ...
5
votes
4answers
816 views

Do I need static libraries to statically link?

On 'C', Linux, Do I need static libraries to statically link, or the shared ones I have suffice? If not, why not? (Don't they contain the same data?)
5
votes
3answers
5k views

Static Libraries on iPhone device

I have two projects, a Cocoa iPhone application and a static library which it uses. I've tested it successfully on the iPhone simulator, but when I try to deploy it to my iPhone device I get (symbol ...
4
votes
2answers
173 views

Deploying Yesod to Heroku, can't build statically

I'm very new to Yesod and I'm having trouble building Yesod statically so I can deploy to Heroku. I have changed the default .cabal file to reflect static compilation if flag(production) ...
4
votes
3answers
103 views

Trying to use extern in reverse order

When we have an exe or dll and a static library attached to it, we are able to use extern keyword to access static library's variables and/or functions from the exe or dll. To make things simpler, ...
4
votes
2answers
186 views

Startup code of a statically-linked executable issues so many system calls?

I am experimenting by statically compiling a minimal program and examining the system calls that are issued: $ cat hello.c #include <stdio.h> int main (void) { write(1, "Hello world!", 12); ...
4
votes
2answers
139 views

Why isn't static linking used more?

I understand the benefits of dynamic linking (old code can take advantage of library upgrades automatically, it's more space efficient), but it definitely has downsides, especially in the ...
4
votes
2answers
123 views

static member explicit definition

Consider this code: #include<iostream> using namespace std; class Wilma { public: static int i; Wilma() { cout<<"\nWilma ctor\n"; ...
4
votes
2answers
134 views

gcc functions with constructor attribute are not being linked

I have a bunch of static libraries and they are interdependent. I faced problems while linking those libraries for my target because of dependencies. As a workaround I created one single archive file ...
4
votes
6answers
608 views

Redefine malloc/free with static linking has multiple definition error

Recently, my company want to update the compiler from gcc-3.4 to gcc-4.5. However, our customer's machine may not have the up-to-date libstdc++.so, so we want to static link our binary. Our program ...
4
votes
4answers
290 views

Compiling C++ into portable linux binaries

Ok, this question is about portable as in no dependencies (i.e. "I can put the binaries in a USB key and bring it with me everywhere, e-mail them to friends etc"). I have heard of static linking but ...
4
votes
3answers
132 views

C++ Avoiding library linking

I currently have a c++ setup like the following class FlowController { public: //... private: cntrl::OneWayValve _intake; } As you can see i'm using a cntrl::OneWayValve instance ...
4
votes
3answers
705 views

Statically linking against library built with different version of C Runtime Library, ok or bad?

Consider this scenario: An application links to 3rd party library A. A is built using MSVC 2008 and is statically linking (ie. built with /MT) to the C Runtime Library v9.0. The application is built ...
4
votes
1answer
1k views

Is there a way to determine which version of Visual Studio was used to compile a static library?

I have a collection of static libraries (.lib) files one of which may have been built with a different version of Visual Studio. This is causing the code generation of a project that links against all ...
4
votes
2answers
2k views

Proper way to link against libraries from libraries for the iPhone/CocoaTouch

I'm writing a static library for the iPhone and I'm wondering if what I'm doing is recommended or if I should take a different approach. The static library I'm writing is dependant on libxml2. ...
3
votes
1answer
59 views

two static libraries with duplicate symbols in Xcode

I have two static libraries which seem to have duplicate symbols(TBXML.o) and won't compile. ld: duplicate symbol _OBJC_METACLASS_$_TBXML in ...
3
votes
1answer
131 views

Haskell Static vs Dynamic Linking in Deployment

Why doesn't cabal install use the flag --enable-shared by default? I've notice that trivial programs when compiled without this flag, get huge in file size. Is there a connection? Is this a design ...
3
votes
2answers
138 views

Static Linking in Fortran

I've developed a module written in C++ that manages the licenses for my company's product. To prevent DLL replacement, it is our goal to statically link the DLL in the solution. This is very easy to ...
3
votes
3answers
495 views

Haskell program built on Ubuntu 11.10 doesn't run on Ubuntu 10.04

I'm trying to provide the users of my program with some Linux binaries in addition to the current Windows ones, so I installed Ubuntu 11.10 (since the haskell-platform package on 11.04 is still the ...
3
votes
1answer
230 views

poppler library for Android app (NDK) will be possible instead of xpdf?

I need to create an Android app that shows pdf files and I want to use xpdf or poppler library. This question is only about these 2 choices. I already know how to exploit poppler-qt4 so I'd prefer to ...
3
votes
6answers
104 views

Can you link a C++ library from a C application?

I have cross compiled an open-source library (C++ based) using my G++ cross compiler. I am now trying to use the outputted .a files in my C based application that is built using my GCC compiler... Is ...
3
votes
2answers
156 views

How can I strip down the Qt libraries to remove stuff not used by my application?

I'm shipping a stand-alone Linux application with Qt libraries compiled-in. Is there a tool which would scan my source code, see which classes/methods my app uses, then it would pluck the ...
3
votes
4answers
319 views

c++ linux double destruction of static variable. linking symbols overlap

Enviroment: linux x64, compiler gcc 4.x Project has following stucture: static library "slib" -- inside this library, there is static object "sobj" dynamic library "dlib" -- links staticly "slib" ...
3
votes
3answers
1k views

Cannot compile a simple Qt program in MT mode as opposed to MD in Visual Studio 2010

I'm trying to compile using MTd in Visual Studio 2010 instead of MDd (so that the dll's are packaged in and i won't need to distribute them with my exe), but I keep getting "fatal error LNK1169: one ...
3
votes
2answers
172 views

Error when statically building a windows application

I have an application that compiles and works fine when i dynamically link everything, but when I want to have a static build of it it will not compile. In visual studio 2010 I set the Use MFC in a ...

1 2 3 4 5 6