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
2 answers

eclipse libraries no longer working

i had put two libraries on the build path of my project, and then i closed eclipse for the night. when i re-opened eclipse, and opened the same workspace, the libraries "aren't working" in that eclipse isn't doing any of the helpful things it was…
Tony Stark
  • 24,588
  • 41
  • 96
  • 113
1
vote
1 answer

differences between libgfortran.3 and libgfortran

What is the difference between libgfortran.3 and libgfortran? Are they interchangeable? I am running into a Internal Error: list_formatted_write(): Bad type error including a packaged libgfortran.3 library, and I want to be aware of the potential…
kilojoules
  • 9,768
  • 18
  • 77
  • 149
1
vote
0 answers

Linking a Dynamic Haskell Library, Missing Symbols

I've got a bit of an issue. I've been working on linking some Rust code I'm developing with some heavy-lifting algorithms that have been written in Haskell. I have gotten cargo to play nicely with ghc and cabal, and have my code working the the…
1
vote
0 answers

Visual Studio 2013: Where do "_Adding library" requests come from?

When I compile some inherited code in VS2013, I get the following output: 1>------ Rebuild All started: Project: Conocontrol, Configuration: Debug Win32 ------ 1> stdafx.cpp 1> _Adding library: PGL7ud.lib: MFC7.0, Debug, UNICODE 1> …
1
vote
2 answers

"Read" does not name a type

I have been writing a program which requires me to take input from the serial monitor in Arduino. However I'm having some problems. Here's my code. UPDATE: This is the new code I have created after a couple revisions. #include…
1
vote
2 answers

java.lang.NoClassDefFoundError & Failed resolving ... interface 804 (LibGDX)

I'm building a game using LibGDX and previously I've been able to launch both the Desktop and Android projects, however I recently integrated an additional external library and now the Android project is failing to launch (however the Desktop…
1337ingDisorder
  • 821
  • 1
  • 6
  • 17
1
vote
1 answer

rvm and different versions of a system library

I need to run a set of tests against the same ruby version and same gemset but with different versions of a .so library. Therefor I need to have two ruby installations (for the same version 1.8.7), each one pointing to a different set of .so files.…
1
vote
0 answers

Latest Versions of libfreenect

I have written some software for a computer vision project, and want to make sure it is using the latest version of the libfreenect libraries and headers. Unfortunately, I can't figure out which are more up to date. There are several packages…
user46877
  • 51
  • 5
1
vote
1 answer

How do I override the email template for django postman?

I am trying to override the default email for django-postman's notification system. In the docs, it says Default templates are provided with the application. Same as for the views, you can override them, and design yours. However in the code…
calina-c
  • 215
  • 2
  • 6
1
vote
1 answer

TeamViewer SDK - Xamarin

recently I have tried importing TeamViewer SDK for Android to Xamarin.Android. I resolved binding and started my app and when I wanted to create a session according to their example it showed the TeamViewer icon and text "waiting for your partner to…
ainer
  • 125
  • 1
  • 2
  • 8
1
vote
2 answers

Android Studio: how to add and use project as library, not as module

I have 2 libraries: chilkat-9.5.0-android-all simple-file-chooser-master I have copied both into libs folder and used it as libs. When I try to import these libs into my java class I got red markup on their names. It means that android studio…
Rokas Devolskis
  • 61
  • 1
  • 10
1
vote
1 answer

How do I add global libraries to IntelliJ IDEA?

I've tried adding .jar files to the Global Libraries section in settings, but whenever I create a new project, those libraries still have to be manually added to the project. I've consulted the documentation on Jetbrains's site…
dbconfession
  • 1,147
  • 2
  • 23
  • 36
1
vote
2 answers

Creating Library Header Files in C++? (As opposed to old-fashined C?)

I have just learned C++ -- and I decided one project I am working for, I am better off going back to the drawing board and writing it from scratch in C++, rather than trudging on with C. There is just one concern --- part of this project includes…
Sophia_ES
  • 1,193
  • 3
  • 12
  • 22
1
vote
0 answers

java.lang.UnsatisfiedLinkError.Can't find dependent libraries

Ok, first of all this is like the first library I ever load, so remember I can have failed in something incredibly basic and if you can help me in a very for dummies language I would appreciate it. I work with eclipse for windows, and tried to load…
dquijada
  • 1,697
  • 3
  • 14
  • 19
1
vote
0 answers

Idea / Java : how to remove an artifact?

I need to build a project that refers to another (I'm newbie in Java development using idea 14). The first let's call it "commons" contains based classes to use in all my future projects. The second let's call it "app1" contains a JavaFx…
Emmanuel BRUNET
  • 1,286
  • 3
  • 19
  • 46
1 2 3
99
100