Questions tagged [libraries]

Use this tag for questions about software libraries. This tag is NOT for questions about computer programs used in public lending libraries or other brick-and-mortar libraries. Questions asking us to recommend or find a library are off-topic.

A library is a collection of non-volatile resources used by programs on a computer, often to develop software.

Libraries contain code and data that provide services to independent programs. This encourages the sharing and changing of code and data in a modular fashion, and eases the distribution of the code and data. Library files are not executable programs. They are either static libraries that are merged with an executable when the executable is being compiled and linked, making them "statically linked", or they are dynamic libraries that are loaded by a dynamic linker while the executable is running, making them "dynamically linked". The dynamic linker may also allow an application to explicitly request that a module be loaded and to obtain references to routines in the module; this can be used to implement plug-ins.

The above was taken from the Wikipedia entry Library (computing).


Questions asking us to recommend or find a library, documentation or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam.

3030 questions
1
vote
1 answer

schoolproject extra function with new library

Tomorrow I have an exam for a C programming and we have to present a program we have made. I was assigned a postfix calculator and I finished this. But to get extra points, we have to add an extra function to the program that was not in the…
Kat
  • 659
  • 2
  • 11
  • 22
1
vote
1 answer

How to build statically linked application with PIC enabled static libraries

I've a statically linked application (sample.a) and I want to build it with a third party library(third-party-lib.a) which is PIC enabled. Note that the third party library is NOT a shared library. It is a PIC enabled static library. Can anyone…
1
vote
1 answer

Not possible to compile. Headers files.Enclosed own objects definition

Here I am with a similar question as the last time, and for which I could not find any answer. Note that I consider important: Normally I compile my programs in opencv with the next command: g++ -o def program.cpp `pkg-config --cflags opencv`…
Ivánovick
  • 257
  • 1
  • 5
  • 16
1
vote
1 answer

Compiling from Netbeans fails, but from terminal works

I have a problem with having Netbeans compile the way I want to. I can't get Netbeans to compile my program. When I'm in the Ubuntu Terminal I can compile my program with the following command: gcc -L/usr/local/lib -I/usr/local/include/libxml++-2.6…
NeViXa
  • 73
  • 7
1
vote
1 answer

How to import javascript files / library into GWT (Eclipse)

Possible Duplicate: gwt and javascript files Seems like a simple enough task, but i'm having trouble doing it at the moment... edit: actual import, not reference through script tags in manifest files...
user1021138
  • 478
  • 4
  • 14
1
vote
1 answer

Techniques for handling arrays whose storage requirements exceed RAM

I am author of a scientific application that performs calculations on a gridded basis (think finite difference grid computation). Each grid cell is represented by a data object that holds values of state variables and cell-specific constants. Until…
westie314
  • 761
  • 1
  • 5
  • 4
1
vote
1 answer

External Libraries in Visual Studio 2010

I wish to use a few external libraries in a project: libpng and libvorbis. Now, on Linux, I can happily build these and just add a configuration file to scons to allow extra include/lib paths if you want to build them outside of the system include…
Ricky26
  • 41
  • 4
1
vote
2 answers

can i provide a project contents as jar files to another projects?

Hi i have the project developed in eclipse environment is working fine, and i want to use that project as resource or add as jar file to another project.if possible can please let me know how to do this one. will help lot for me.
Deepu Mandy
  • 117
  • 12
1
vote
1 answer

New to Mono - help setting search path?

Running Ubuntu Oneric 11.10 with 1 GB RAM and 250 GB HDD Dell Inspiron Laptop. I got some demo code from a tutorial to read XML. When I compile it, I get this message: "The type or namespace name '.Xml' does not exist in the namespace 'System'. Are…
gvtmath
  • 13
  • 4
1
vote
1 answer

How can I get info about the computers devices?

I've been looking for way to obtain the system info, e.g. total memory, number of processor, hard drive free space etc.. asking the kernel for that info, how do I manage to do that from c++, without using .system calls or system_info structures, via…
Jason
1
vote
0 answers

Managed code library gets unloaded

I have this rather weird situation that I don't really know how to word it properly... The situation is like this: I have an ASP.NET Web application (WA). It references an assembly (CL1) that makes calls to a Unmanaged Dynamic Library (DLL). This…
Vlad
  • 2,340
  • 17
  • 30
1
vote
2 answers

Is there a way to revert eclipse android ADT from r17 to r16 since javadoc and source attachment is broken?

In ADT r17 there have been changes to the ADT where libraries should be placed in "libs" and somehow autodetected for use in the project. Unfortunately I have found no way to set javadoc and source attachment on the auto-imported jars. Some suggest…
FeatureCreep
  • 1,726
  • 1
  • 19
  • 23
0
votes
2 answers

Java SE and Scala Standard Library - cases when one of them is preferable

We all know that one can use Java libraries from Scala and vice versa. But even looking over the surface of Java SE and Scala standard library, we can notice that there are many parts in them that solve identical or at least similar problems. The…
Oleg Kunov
  • 179
  • 1
  • 12
0
votes
1 answer

GUI in using QT with data from c program

I am quite new to C++ and C. And I am wondering how to import some data from C program and using it in order to draw a GUI in c++ ? what happen if the C program has its own Library? how to include it ? I am working with Linux platform. Thanks
Riko Rm
  • 53
  • 1
  • 1
  • 4
0
votes
2 answers

mvn sonar:sonar do not use in pom.xml

i've got a problem with an sonar analysis trought maven. in my pom.xml i define a tag under my pom.xml file:
Simon Mardiné
  • 538
  • 2
  • 7
  • 21
1 2 3
99
100