A static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable. This executable and the ...

learn more… | top users | synonyms

0
votes
0answers
6 views

Trying to build application in redhat machine and getting undefined reference error from linker

I am new in this sphere and need help of experienced people. I am trying to build the product on redhat machine with gcc-4.7.2. I am linking lstdc++ statically. As a result I am getting undefined ...
0
votes
1answer
23 views

is `libc` and `crt1.o` statically or dynamically linked?

I'm really just trying to get my head around static and dynamic linking. When I invoke a compilation driver like unix> gcc myfile.c, crt1.o and libc.a (or libc.dylib) are linked to produce the ...
0
votes
1answer
22 views

statically linked libraries on mac

I just don't understand. I'm to believe that gcc automatically links libc.a when invoking the gcc driver. However, out of curiosity I wanted to link libc.a statically using -static, but I get; ld: ...
0
votes
0answers
7 views

hidapi : static linking (cross platform win32, linux, macos)

I see many people talkin about hidapi, and it indeed seems like a powerful HID library, however, they mention on the website that they want it linkable in any way people want, problem is, I can't seem ...
1
vote
1answer
29 views

How linux does load libraries in application

I'm interested how does linux act in situation that pictured. You can see library "A" is staticaly linked with application. But this application depends on dynamic library B, and it in turn depends ...
0
votes
1answer
24 views

A procedure imported by {dll} could not be loaded

I have several Unmanaged C++ written lib files which I need to link to Managed C++ dll. Then I need to invoke functions of this Managed C++ from C# application. First step is OK - Managed C++ dll ...
0
votes
0answers
5 views

Extract libraries and building a static binary with them

Our project needs different libraries to be installed (libXxf86m-devel, libjpeg-turbo-devel, etc). We used to install the libraries manually. The resulting binary after the build process is dependent ...
0
votes
0answers
20 views

Linking opengl java libraries

I have a project that I'm supposed to be working on with a team, and which I'm trying to set up in Eclipse. I've only ever done small Java projects before and always wrote them in gedit and compiled ...
0
votes
0answers
17 views

Making a static lib target with variable dependencies with CMake

So I have a static library A which can have a bunch of settings turned on, depending on the compiling configuration. I have these settings pushed out to an IMPORT file: cmake_minimum_required ...
0
votes
0answers
7 views

static library using shared library API

I am creating a static library called libapp.a which provides API's to upper application and uses libxml2 API's (shared library). This libapp.a need to be linked to final executable. But when I ...
0
votes
0answers
45 views

Linking against clang

After many failing attempts to build clang for iOS, I found this clang.deb at: http://ininjas.com/repo/debs/ I extracted the files and put them in a Xcode project. Building (for device) works fine, ...
0
votes
1answer
23 views

CMake link order and LINK_INTERFACE_MULTIPLICITY

I'm attempting to link static libraries against test cases in a collaborative cmake project. My understanding is that I can use the link_interface_multiplicity option to get around libraries being ...
0
votes
0answers
35 views

Undefined reference to functions from pcap.h

I write RTP sniffer and need to create dll to use it in my java project as native. I use cl.exe cl.exe -I"C:\Program Files\Java\jdk1.7.0_13\include" -I"C:\Program ...
0
votes
0answers
30 views

Static linking of qt

I am trying to produce a statically linked .exe of qt4.8 without any presence of .dll like QtCore4.dll and QtGui4.dll. I am making use of Visual Studio 2010. I tried making use of this tutorial. But ...
1
vote
1answer
38 views

cmake ignores static library link request

I've searched hours on how to solve this and everything I tried did not work. I'm trying to link statically with certain libraries, (libPoco, libmysqlcpp, libmysqlclient, libssl). I'm using cmake, ...
0
votes
1answer
42 views

Linking Custom Static Lib with Windows Phone 8 Runtime

I have a custom static library i´m trying to use it with Windows Phone Runtime. I could not add in to the Windows Runtime. Is there a way to use Static Libraries in Windows Runtime "Windows Phone 8" ...
1
vote
2answers
163 views

How to link host code with a static CUDA library after separable compilation?

Alright, I have a really troubling CUDA 5.0 question about how to link things properly. I'd be really grateful for any assistance! Using the separable compilation features of CUDA 5.0, I generated a ...
1
vote
0answers
298 views

Runtime Opencv HighGui Error- “HIGHGUI ERROR: V4L/V4L2: VIDIOC_S_CROP”. Opencv cross compiled. Host=64bit Ubuntu 12.04. Target=ARM-Cortex-A9

I am a beginner at OpenCV and trying my best to get a simple application running on an embedded platform. I cross-compiled OpenCV 2.4.4 and built it WITH_GTK=ON, WITH_UNICAP=ON, WITH_V4L=ON as needed ...
0
votes
1answer
41 views

g++ - Cant link to static library built with VS2012

I built a static library (.lib) with VS2012. I wrote a test program by including my header and then tried to link it with the .lib file with g++ g++ Test.cpp Gray.lib -o test.exe (All files are in ...
1
vote
1answer
35 views

C - Compile with dependencies included

I have some code which I want to run on a machine which I do not have root access to. That machine does not have some of the libraries needed to run this code. Is there any way to include all ...
-1
votes
0answers
28 views

What is the best mode of linking for Windows system libraries?

I know that there are 3 types of library linking: Static linking, where the relevant pieces of library code get directly copied into the final executable file, and possibly even further optimized. ...
1
vote
1answer
106 views

OpenCV 2.4.1 static linking with Qt

I have compile OpenCV 2.4.1 statically without error using MinGW and CMake. I checked With_QT I just unchecked BUILD_SHARED_LIBS and proceed with mingw32-make and mingw32-make install. It was built ...
1
vote
0answers
185 views

C++ Qt Static linking in Windows

I've created an application using Qt in C++, the problem is that I need to statically link the dependencies within the executable and I don't really know how. I've performed the following steps: ...
1
vote
0answers
81 views

VS C++ Dead code elimination

I have a small project in C++ VS 2010, which uses a couple of static link libraries(.lib files). This options are turned on: OPT:REF, OPT:ICF, /GL, GR- When I add unused method to a class, which ...
1
vote
1answer
42 views

How to reuse static library code which is already linked into a DLL with another C++ application in visual studio 2010?

I'm working on a C++ solution in Visual Studio 2010. I've a DLL file which is using some standard C++ library functions (such as string or file functions). For some portability reasons I have to ...
0
votes
0answers
28 views

Using py2app to deploy an application using opencv for Mac

I finished scripting a a computer vision algorithm in python that rely heavily on opencv. I want to be able to deploy a standalone application to work under Mac OS that you don't have to preinstall ...
1
vote
1answer
99 views

Python 3.3 undefined references with static linking

Operating System: Ubuntu 12.04 x86_64 I've compiled libpython3.3m.a from source, along with the related headers. I wrote the following Makefile (specifically, look at my CFLAGS variable, which ...
0
votes
1answer
131 views

Adding static library inside Xcode C++ project

Currently, I'm developing a C++ project with Xcode 4.6.1. I need to add inside my project a static library mylib.a and the related header file mylib.h. I just read this solution, but it won't works: ...
1
vote
1answer
59 views

Why using LIB in C++ static DLL linking?

I know how to implement both static and runtime dll linking, but I'm more interested in why dll's LIB (static library) is needed in static dll linking? Usually LIB is noting but a container of code ...
3
votes
1answer
122 views

Combining third-party static libraries into a stand-alone static library with cmake?

So I have, say, libA.a libB.a libC.a libD.so and some code that is linked into libPack.a. Later on, I'll create libFinal.so that will link to libPack.a and the libFinal.so is finally used on a ...
0
votes
1answer
56 views

embedded python in c++, do i need python installed

when embedding python in a c++ application using #include "python2.6/Python.h" and linking -lpython2.6 does the target computer (computer running the final compiled program) need to have python ...
1
vote
0answers
93 views

How to transfer executable made of Qt 4.8.3 and OpenCV 2.4.3 from Ubuntu 12.10 to Fedora 14?

I compiled a Qt-GUI project using Qt 4.8.3 & OpenCv 2.4.3 in Ubuntu 12.10. I need to transfer the executable to Fedora 14 to run. But, for the 1st time, it gave me an error can't open the file ...
1
vote
2answers
91 views

Embed POCO static library into another one

I'm developing an SDK (as dynamic and static lib) using Poco, and I would like to embed the Poco static libs into my one to avoid the end user to setup and link the Poco enviroment. The C/C++ settings ...
0
votes
2answers
51 views

How to check if dll generated is statically or dynamically linked?

Following is my linking command: Running Mkbootstrap for XML::SAX::ExpatXS () C:\Perl\bin\perl.exe -MExtUtils::Command -e chmod -- 644 ExpatXS.bs link ...
5
votes
1answer
128 views

Static and Shared Linking with MingW

I want to start with a simple linking usage to explain my problem. Lets assume that there is a library z which could be compiled to shared library libz.dll(D:/libs/z/shared/libz.dll) or to static ...
0
votes
0answers
30 views

What is the best alternative to SFX archives that can do the feature that I describe below?

I am looking for functionality very similar to a WinRAR SFX archive. I am essentially asking for an EXE wrapper. I have a small application (written in C++ using Qt library) that requires MSVC ...
0
votes
0answers
47 views

poco c++ static linking problems with undefined references to symbols

I'm trying to link to static versions of the POCO C++ libs like this: g++ BCCMain.o -L$_POCO_LIBS -Wl,-Bstatic $_POCO_LIBS/libPocoFoundation.a $_POCO_LIBS/libPocoUtil.a $_POCO_LIBS/libPocoXML.a ...
2
votes
1answer
137 views

Undefined references when statically linking C++ and C libraries

I have 3 libraries I am trying to link (more than that, but all that is needed for this explanation). The "root" library is c++, which has the second library as a dependency for it and is also c++. ...
0
votes
0answers
41 views

Building a statically linked version of mkvtoolnix on Mac OS X 10.8.2

How can I build a statically linked version of mkvtoolnix? The configure script does not recognize the flags --enable-static and --disable-shared. I also tried to set the environment variables ...
1
vote
1answer
56 views

Allocate C++ object across MSVCRT versions

I have VS2010 and i need to build application. Also i have .dll with .lib and .h built with VS2005. This library depend on log4cxx.dll (i built 2010 and downloaded 2005 binary). When i call library ...
1
vote
0answers
16 views

How to name the .a file when creating static library with g++? [duplicate]

Why is it necessary to have 'lib' as the first 3 letters of the .a created? As in: http://segfault.in/2008/04/how-to-create-static-libraries-with-gcc/ Thanks
1
vote
1answer
113 views

Rewriting symbols in static iOS libraries

I am working on an iOS app which links several static libraries. The challenge is, those linked libraries define same method names with different implementations. Oddly, I don't get any duplicate ...
0
votes
1answer
57 views

how to add statically link run-time assemblies?

i am trying to run an exe file on another computer that doesn't have visual studios installed. When i try run the file i get the error : This application has failed to start because the application ...
0
votes
1answer
81 views

code::blocks linking doesn't work for lib files

I just had a fresh new version of Code::Blocks(12.11) and tried to make a glut example project, but the generated code has some linking issues. The minGW settings are is set to the correct values, ...
4
votes
1answer
58 views

Why am I getting errors that refer to a bunch of unresolved OpenSSL symbols that clearly exist?

I am building a shared library (we'll call it "foo") that makes use of another library (we'll call it "bar"). "bar" makes use of some functions from OpenSSL. Here's where the problem surfaces. "bar" ...
0
votes
0answers
34 views

CLAPACK - Cannot find header file

I'm developing a C++ application and using code from this url: Here It uses the CLAPACK library in one of the functions and and I have installed it using this The problem: Whenever I try to include ...
0
votes
0answers
37 views

Linking with ZMQ on OSX getting an error

I have some code I wrote that uses the google C++ logger and 0MQ. I installed everything to /opt/local and when I poke around there, the .hpp and .a files are in /include and /lib Oh, I used: ...
0
votes
0answers
139 views

ffmpeg latest visual studio builds or linking with (.a) libs

there is a problem. I need to link ffmpeg(particularly libavcodec) statically into visual studio 2008 project. I found some visual studio solutions in internet but they are very old (around 0.6 ...
1
vote
0answers
106 views

Statically combining C++ libraries

I created an iOS framework with a combined, universal static C++ library from the Poco sources by using lipo and libtool. Essentially, what I do is : compile Poco for iPhoneOS and iPhoneSimulator ...
2
votes
0answers
110 views

Force order of linking libraries in Qt Creator

I'm trying to use a 3rd party driver from an app in Qt Creator. This app has to be included as a static library. It won't compile without the /MT flags. After much heartache, I've gotten it down to ...

1 2 3 4 5 11