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
1 answer

Using header files in C

I'm having a couple of issues including custom libraries in my program I have my main.c file and a library.c (where all the functions are stored) and library.h (where all the prototypes are stored). In main.c I'm placing #include "library.h" but the…
gabevt
  • 33
  • 1
  • 7
1
vote
1 answer

How do I tell what libraries I have succesfully imported in Python and what functions these libraries offer me?

I am a relatively new Python user. I am trying to replicate a series of modules and classes discussed in textbooks. Even though I have all the libraries available in Python that are imported in the code I am replicating, I am still get a lot of…
Thdh
  • 81
  • 4
1
vote
1 answer

Android HeatmapTileProvider not importing into project

I am new to Android and working through a tutorial on the developer site . I am getting stuck at the first Hurdle as it states HeatmapTileProvider cannot be resolved. The code is below: mProvider = new HeatmapTileProvider.Builder() …
androidNewbie
  • 49
  • 1
  • 1
  • 8
1
vote
1 answer

How to compile rtaudio with QT?

I need to install the real time proccess library "rtaudio-4.1.1" on windows in order to use it in C++ projet. I'd try to compile the library project given by MIT website with QTCreator. I opened the qt project RTaudio and click on compile and the…
1
vote
3 answers

Are runtime libraries inherently dynamic libraries?

I am cross compiling for a system with an OpenMP parallelized program, but when I run on the target, I get the error: can't load library 'libgomp.so.1' After looking around, I see that it's an OpenMP runtime library. Is there any was to statically…
Spence123
  • 97
  • 1
  • 1
  • 10
1
vote
3 answers

How can I create and use my own static library in C?

I want to my make own library and have it use the same syntax as the standard C libraries as in #include So that it looks like #include and some of the libraries that are included with C. Can I make the library static as opposed to…
1
vote
0 answers

Can not find functions for text editing

I am relatively new to the Google doc/sheets environment (I downloaded the suite about one week ago). I have used the script editor and have had excellent results with spreadsheet functions, but when I attempt to perform functions from the Text…
1
vote
1 answer

Are there any exsisting abstract file catalog libraries?

I'd like to make sure I'm not reinventing the wheel with my current project. I'm writing a tool that creates a catalog of content for a CAD program, which catalogs files. My Catalog class represents a hierarchical structure of files and folders.…
Eric Anastas
  • 21,675
  • 38
  • 142
  • 236
1
vote
1 answer

C++ Client networking library with JSON handler

I'm moving from Java and was looking for something as simple as possible to manage a client connection from C++. In Java I used Netty, that was really straightforward. Once you opened the connection, it's very easy to convert object in JSON and send…
M4rk
  • 2,172
  • 5
  • 36
  • 70
1
vote
1 answer

Including Armadillo C++ library in a C++ project in Microsoft Visual Studio 2015

I'm trying to include the Armadillo C++ library, a linear algebra library, in a C++ project I'm working on, and I'm having a difficult time figuring out how to do so. I'm unfamiliar with how to add libraries to a project in general, so I've been…
1
vote
1 answer

Trouble implementing Android Design Support Library

I have been trying to implement Android's Design Support Library without success. I have followed the steps from here. After a few issues with Warning:Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app…
Sebek
  • 642
  • 8
  • 22
1
vote
1 answer

Linker symbols not found

I'm trying to compile something I've fetched off of github with gcc: users-MBP:Chip-8-Emulator user$ gcc -o chip8 chip8.c Undefined symbols for architecture x86_64: "_SDL_Delay", referenced from: _chip8_draw in chip8-bc89fc.o "_SDL_Flip",…
Juicy
  • 11,840
  • 35
  • 123
  • 212
1
vote
1 answer

My external JAR file libraries are not showing up in 'External Libraries' after import

I have a JAR file that I am trying to import as a library to use. I have it in my libs folder. I have the following command in Gradle compile fileTree(dir: 'libs', include: ['*.jar']) However, I do not see this library in my External Libraries…
KrispyK
  • 235
  • 6
  • 18
1
vote
1 answer

Adding jar files into eclipse in a LibGdx project

I tried to add a jar file in the "core" project by doing: right click in the project->properties->java build path -> libraries -> add external jars And when I tried to see the class file it says "source not found" also it's giving me this error:…
centenond
  • 1,170
  • 1
  • 8
  • 23
1
vote
1 answer

Oculus rift, how to add libraries in Visual Studio

Ok, i'm trying to do what is writtent here https://developer.oculus.com/documentation/pcsdk/latest/concepts/dg-sensor/ but i have problem with #include i have no idea where i have to add it, it needs(ovr_capi) much more libraries. where to download…
Paul10220
  • 21
  • 3