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.

3395 questions
1
vote
3 answers

c++ Libraries for windows only

here is a list with c++ headers.I would like to know if they can be used to compile programs only for windows or for other systems too: iostream or iostream.h stdio.h cstdlib math.h
user3671292
  • 83
  • 1
  • 6
1
vote
1 answer

How to use Pillow to display an image?

Edit: It might help to know that I'm using python 2.7.9 (that's what was taught in my GIS class). I've almost got it working I think. Although now it's a new question. I have this code from PIL import Image im =…
1
vote
1 answer

Using Javascript libraries with CocoaScript

I'm creating a plugin for Bohemian Coding's Sketch. They are using CocoaScript for creating plugins. Regular coding works fine, however I wondered if it is possible to use javascript libraries with CocoaScript. Specifically I tried multiple…
st_phan
  • 715
  • 9
  • 23
1
vote
0 answers

Using AVT Vimba SDK in QT Creator C++

I would like to write simple program to capture images with Allied Vision Technologies Camera using QT Creator in C++. The problem is I have some errors which I don't understand. I created a simple QT console application. I added external libraries…
Glamdring
  • 84
  • 1
  • 5
1
vote
1 answer

Disable FPE handler on run-time in Fortran

I have a library written in Fortran that uses Intel's MKL (linked statically). I'm using ifort for compiling and linking. When I link my library (dynamically) with some other code using the -fpe0 option, I get floating point exceptions in the MKL,…
fpnick
  • 419
  • 2
  • 6
  • 18
1
vote
0 answers

Intellij Importing Local Project as Library: package does not exist

In Intellij, I have a java project that I would like to use (add it as a dependency) in multiple other java projects. I've tried "Project Structure >> Libraries" and adding the project. This gives no errors, and even allows auto complete of classes…
bcorso
  • 45,608
  • 10
  • 63
  • 75
1
vote
1 answer

How do you get C++ libraries to work in Eclipse?

I'm not gonna waste too much time moaning about how difficult it is coming from Java, a language where you quite literally click a button and select a file to add external libraries to a project, to C++ where it seems impossible to do without the…
user3530525
  • 691
  • 3
  • 8
  • 20
1
vote
1 answer

How to call jar files libraries inside EAR from JAR within

Im having a problem when reading libraries from jar within EAR file. This is my project tree: https://i.stack.imgur.com/FgVs2.jpg In my MANIFEST.MF file (of the jar) I have this: Manifest-Version: 1.0 Class-Path: lib/jboss-logging-spi.jar…
user1352643
  • 39
  • 2
  • 5
1
vote
1 answer

Emscripten C++ Library Link

I have a basic C++ GLUT program and I am trying to run Javascript code from inside C++ functions. I found Emscripten and done lots of testing, but I can't figure out how to actually use it in my projects. I added the emscripten folder to my…
1
vote
1 answer

How to build static libraries?

I need to build a static library to create a binary. I am using ubuntu 15.04 and I need libdevmapper static library. I am sorry I couldn't be more clear as I have absolutely no clue how to do that. I installed libdevmapper-dev, it only installs .so…
1
vote
1 answer

Build/install llvm/clang with both 32 & 64-bit support libraries

My (built from source) llvm/clang install is able to create 32/64-bit executables fine, but when I created the installation it only produced 64-bit libraries (eg, libclang). I've sifted through their documentation, looked through the configure help,…
Brian Vandenberg
  • 4,011
  • 2
  • 37
  • 53
1
vote
2 answers

How to copy linked libraries from a code::blocks project to another one?

I recently began working with the PortAudio library for C++. To compile even the simplest example I have to link my project to 8 different libraries. I am working with code::blocks as an IDE. I would like to create a new project and tell the linker…
Andrés Marafioti
  • 819
  • 1
  • 7
  • 23
1
vote
1 answer

How to link a library .a with f2py?

I'm trying to interface CUTEst with python using ugly. I tried to use f2py like so: f2py -c -m ugly \ /home/gabriel/Documentos/ugly/src/gen77/gen77_main.f \ /home/gabriel/Documentos/ugly/src/gen77/gen77.f \ ELFUN.f GROUP.f RANGE.f \ …
1
vote
0 answers

Issue Building tess-two library

I am relatively new to android development and I have a problem building the project at the step 'ndk-build'. Error - "Command not found". I follow the build steps from here. I am using a 64bit Kubuntu 14.10.
1
vote
1 answer

Range subtraction in the Excel Object Model

When using Excel Interop libraries from .NET, I can find a Range object representing the cell offset from Range X by calling something like. Range Y = X.Range[2,3]; But what should I do to perform the inverse operation, ie: I have two Range…
mcoolbeth
  • 467
  • 1
  • 6
  • 19
1 2 3
99
100