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

Setting up a cross-platform C++ project in Eclipse with cross-platform libraries

I am working on a cross-platform C++ project with 8 other people which uses the following libraries: OpenCV Library Boost C++ Library The project is inteded to be cross-platform so all users have agreed not to use platform-specific code, and, to…
eold
  • 5,972
  • 11
  • 56
  • 75
9
votes
2 answers

GCC Compile Error: /usr/bin/ld: cannot find -lsqlite3.lib

I'm trying to compile a little C-program using SQLite3. I've already included the Header-File and converted the .dll file into a .lib file. The interesting thing is that on windows, gcc (CodeBlocks) can compile the source code without any problems.…
Michael Gierer
  • 401
  • 2
  • 6
  • 15
9
votes
3 answers

How to pack python files and its dependencies in a single executable file?

I've got a piece of software which consists of several python sources and a couple of c++ libraries. I'd like to pack them in a executable single file, just like java does with .jar files. Is there a way to do that?
Igor Gatis
  • 4,648
  • 10
  • 43
  • 66
9
votes
1 answer

App OpenStreetMap for Android & iOS

I would like to do a mobile native app (Android & iOS) with OpenStreetMap. I need to work with maps offline for trekking. I read about OSMDroid, MapsForge for Android, but I need to do in iOS too. Could you recommend me some libraries, tips etc for…
crisconru
  • 170
  • 2
  • 7
9
votes
5 answers

Choose adapter dynamically depending on librarie(s) installed

I am designing a library that has adapters that supports a wide-range of libraries. I want the library to dynamically choose which ever adapter that has the library it uses installed on the machine when importing specific classes. The goal is to be…
eandersson
  • 25,781
  • 8
  • 89
  • 110
9
votes
4 answers

Multi-line pretty-printing of (nested) collections in Java

I want to be able to (pretty-)print the contents of my maps. They should have newlines and indentation rather than on a single line; ignoring the toString methods of collections/iterables/etc; and recursing into nested collections. This is…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
9
votes
2 answers

What open source C# library can read/write micro QR codes?

I am looking for a C# library to generate and read micro QR codes (example below). It would be great if the llibrary could recognise a micro QR code in an image with other things in it (i.e. isolate and read the QR code.)
James
  • 30,496
  • 19
  • 86
  • 113
9
votes
3 answers

how to solve 'this' problems with node libraries like async and request

I've written a node script that gets some data by requesting REST API data (using the library request). It consists of a couple of functions like so: var data = { /* object to store all data */ }, function getKloutData() { request(url, function()…
askmike
  • 1,900
  • 4
  • 21
  • 27
9
votes
1 answer

Javadoc with Gradle : Don't get the libraries while running javadoc task

I am new to gradle, and I am trying to run javadoc using gradle. I have followed the gradle javadoc page, so I have added my next task in the build.gradle: apply plugin: 'java' task myJavadocs(type: Javadoc) { source = sourceSets.main.allJava …
raspayu
  • 5,089
  • 5
  • 37
  • 50
8
votes
4 answers

C++ crypt libraries in boost or any else

I would like to ask if boost has some libraries useful for crypting tasks. well if boost does not have such libs I would like to hear what crypt libraries would you recommend.(some widly used libs) thank you.
codekiddy
  • 5,897
  • 9
  • 50
  • 80
8
votes
1 answer

How to use "cabal-dev ghci" with a non-sandbox, non-global (user?) package?

I'm trying out cabal-dev for a project I'm working on; the project is a library, and cabal-dev does a great job of building a sandboxed version of it - but I'm having trouble with part of my workflow... I have a script, scratch.hs, which…
gimboland
  • 1,926
  • 2
  • 19
  • 28
8
votes
0 answers

Obtaining a list of 3rd party libraries used by an Android APK

Is there a way of obtaining a list of 3rd party libraries being used by an Android APK file, without access to the source code? I'm thinking of 2 options: 1. Using a tool such as LibRadar to detect. However, as far as I know, it uses signature based…
user1118764
  • 9,255
  • 18
  • 61
  • 113
8
votes
1 answer

How to convert PDF file into PPT file using java?

I want to convert a pdf file to a ppt file in java. Is there any third party library for this and how can i use it?
Nilesh Nikumbh
  • 302
  • 3
  • 15
8
votes
1 answer

How to write cmake modules for "boost-like" multi-component library?

I'm currently writing a c++ library, that has several "sub libraries", like for example the boost library. Let's name the library "TestLib" and the sub libraries "Base" and "Ext", where Base contains come basic stuff, that doesn't depend an any…
8
votes
2 answers

Separate User Library and System Library in RStudio's Packages pane under Windows 10?

I'm setting up R/RStudio on a new Windows 10 machine; first time setting it up in a non-UNIX environment, so bear with me. From my previous experience with R/RStudio under Linux and macOS, I wanted to setup separate libraries for system and user,…
Supertasty
  • 296
  • 2
  • 9