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
7
votes
5 answers

How can I include a nib in an OS X static library?

I've seen several posts addressing this topic in regards to iOS, but the one or two mentions of OS X just say to build a framework instead of a static library. (I can't find the post that had decent framework instructions.) I've created my project…
Moshe
  • 57,511
  • 78
  • 272
  • 425
7
votes
2 answers

D Development Process

What is the recommended development process for D programs that use packages that are cloned from github and separately built? Typically in relation to how C/C++ projects are built using make, autotools, cmake, etc. Most other build specifications…
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
7
votes
1 answer

Simplified Crypto Libraries for iOS

I've worked with Java cryptography for many years. Now, we have a requirement to write an iOS application that will send encrypted payloads from the mobile device to a Java service. I've begun working with the iOS crypto support (CommonCrypto,…
Shadowman
  • 11,150
  • 19
  • 100
  • 198
7
votes
2 answers

Remove Qt libraries on Mac

I want to remove the installed Qt 4.8 libraries and install Qt 4.6 libraries on my mac. But when I try to install them I get: "Qt libraries cannot be installed on this disk. A newer version of this software already exists on this disk" I…
Jacob Krieg
  • 2,834
  • 15
  • 68
  • 140
7
votes
5 answers

Why does ls() in R not show global variables?

In the code below, LETTERS and letters are global, or in the global search path and reachable through another package (same thing!) > LETTERS [1] "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" [20] "T" "U" "V" "W" "X"…
mda
  • 1,158
  • 14
  • 18
7
votes
3 answers

what text to speech and speech recognition libraries are available for Clojure?

what text to speech and speech recognition libraries are available for Clojure? So far I have found https://github.com/klutometis/speech-recognition https://github.com/klutometis/speech-synthesis both of these use Google and thus depend of the…
6
votes
0 answers

PIP equivalent for installing pre-built binaries from the unofficial Python pre-built repository

It's quite often that people need to install pre-built binaries of common Python libraries. Although PIP is great, it often can't build the binaries itself as many of these binaries rely on other libraries to be present. Is there a PIP equivalent…
Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382
6
votes
2 answers

Add external libraries to Symfony2 project

I am trying to add an external library (PHP Simple DOM Parser, http://simplehtmldom.sourceforge.net/index.htm) to a Symfony2 project. I took a tutorial that explains how to include third party libraries to Symfony2…
Mike
  • 2,686
  • 7
  • 44
  • 61
6
votes
0 answers

Mac pip install pyodbc fails with library not found for -lodbc

So I've been going in circles looking for answers to this and it seems to be a problem very specific to my situation. I am trying to get a Python Django project connecting to an Azure SQL Database with the ODBC 17 Driver. I have used brew to install…
TheJoe
  • 125
  • 7
6
votes
1 answer

LibCds: Michael Hashmap and Split Order List

I am using libcds and they have an implementation of Michael Hash Map and Split order list. Based on the information I gathered from the doc here is how I implemented them: includes: #include #include…
Steven Feldman
  • 833
  • 1
  • 15
  • 28
6
votes
3 answers

C/C++ Library for dynamic graphs?

I'm looking for a library to operate on dynamical graphs. I have a simulation where I must repeatedly calculate the average geodesic length for a graph after doing some changes in its structure (adding and deleting edges, on an undirected graph, all…
Rafael S. Calsaverini
  • 13,582
  • 19
  • 75
  • 132
6
votes
1 answer

Is there a native implementation version of Java Advanced imaging api?

Is there a native implementation of the java advanced imaging api? We currently are using the jar files 1-jai_core-1.1.3.jar and 2-jai_codec-1.1.3.jar I have heard there is an implementation of this api written with native code that runs much…
benstpierre
  • 32,833
  • 51
  • 177
  • 288
6
votes
2 answers

Can I use in Google Apps Scripts a defined Class in a library with ES6 (V8)?

I'm trying to use a class defined in a library but I only receive an error as a result. [LibraryProject]/library/model/Update.gs class Update { constructor(obj = {}) { if(typeof obj == "string"){ options = JSON.parse(obj); } …
raultm
  • 706
  • 6
  • 20
6
votes
1 answer

Should I install plotly.js or plotly.js-dist via npm?

There are two packages plotly.js and plotly.js-dist. What is the difference between them and which one should I use? Moreover on npmjs.org on plotly.js page it says in order to install plotly.js one have to run: npm install plotly.js-dist I mean, I…
matvs
  • 1,763
  • 16
  • 26
6
votes
2 answers

Failed to instantiate custom view inflater android.support.v7.app.AppCompatViewInflater

I am trying to implement Google Sign In on my application. Its working fine, but when I try to login, I get the following error on my logcat: 2018-10-04 14:55:14.784 16313-16313/? I/AppCompatDelegate: Failed to instantiate custom view inflater…
Ravers
  • 988
  • 2
  • 14
  • 45