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
6
votes
0 answers

how to remove unused external libraries Intellij

I am working on a project with Intellij and for some reason we imported too many libraries. now I need to remove all the unnecessary libraries. is there a way to remove them without removing the actually used libraries?
A.khaled
  • 505
  • 1
  • 5
  • 13
6
votes
1 answer

Fast linear system solver for D?

Where can I get a fast linear system solver written in D? It should be able to take a square matrix A and a vector b and solve the equation Ax = b for b and, ideally, also perform explicit inversion on A. I have one I wrote myself, but it's pretty…
dsimcha
  • 67,514
  • 53
  • 213
  • 334
6
votes
1 answer

Where to "install" thirdparty libraries & header files to on Windows?

Where do you store your thirdparty libraries and header files to when developing C/C++ on Windows? When developing on Linux the package managers usally installs thirdparty libraries to /usr/lib and /usr/include. So I know where to look for. I am…
Matthias Güntert
  • 4,013
  • 6
  • 41
  • 89
6
votes
3 answers

Modifying an imported library in Go

My Problem Elastic Beats is an open source project for log shippers written in Go. It features several log outputs, including console, Elasticsearch and Redis. I would like to add an output of my own - to AWS Kinesis. I have cloned the repo to…
Adam Matan
  • 128,757
  • 147
  • 397
  • 562
6
votes
6 answers

build.gradle warning 'avoid using + in version numbers'

This is my build.gradle app-level file. apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion "26.0.2" defaultConfig { applicationId "it.myco.app.myproj" minSdkVersion 16 …
F.M.
  • 243
  • 2
  • 8
  • 23
6
votes
3 answers

How to include external libraries in Ant build.xml file?

In my Java source-code I want to use different classes from java archives (.jar) stored in my application's "lib" directory. But if I do "ant run" then I always get a "java.lang.NoClassDefFoundError" message. I tried several things to fix it but…
Benny Code
  • 51,456
  • 28
  • 233
  • 198
6
votes
2 answers

How to add directories to the Library search paths for autoconf

I'm just getting started with autotools, and have followed A. Duret-Lutz's tutorial closely to get a working C hello world that uses GNU gettext. The AM_CFLAGS and AM_LDFLAGS are set appropriately in the Makefile.am, and the code compiles and runs…
klmanion
  • 63
  • 1
  • 5
6
votes
3 answers

machine learning libraries in s+ (or R)?

have been searching around the internet and stackoverflow, but haven't been able to find any information on libraries for machine learning in s-plus or R. does anyone know of any or could perhaps point me in the right direction? thank you!
danielle
  • 69
  • 1
6
votes
3 answers

How can I reference libraries in another project within Eclipse Helios?

We have a problem at the place that I work with referencing multiple projects in our code. Basically, we have a product, which I'll call Leviathan. This project has quite a number of other versions, each of which we maintain as separate projects…
jwir3
  • 6,019
  • 5
  • 47
  • 92
6
votes
2 answers

Where Should One Place Third Party Libraries?

This may seem a bit ridiculous to ask, but I'm struggling to find a good system for this. Are there any standardized systems for storing and organizing third party development libraries? I'm plagued with OCD and consider myself to be a…
JosephTLyons
  • 2,075
  • 16
  • 39
6
votes
3 answers

Running applications against a different SDK in OS X?

Summary I want to run my cross-compiled application against the 10.5 libraries. Is there an environmental variable that allows this to work? Longer version I cross-compiled my OS X C++ application for a 10.5 target, on a 10.6 host. It compiles fine.…
Paul Biggar
  • 27,579
  • 21
  • 99
  • 152
6
votes
0 answers

Using angular 1 module in angular 2 app

I want to use an angular 1 module (angular-smart-table) in my angular 2 app and other angular 1 modules. Is there a way to do this? The docs show how to upgrade an angular 1 app to angular 2. Would all of my external libraries break?
6
votes
2 answers

pow() function working without any math libraries

It seems on some software/compilers the pow() function works without any math libraries at all. Only with . But in others it complains. Have math functions been added to the library or to some other place?
YelizavetaYR
  • 1,611
  • 6
  • 21
  • 37
6
votes
2 answers

C: Common Frameworks/Libraries

What are some common general purpose library as Boost is to C++ but for C? It should be a cross-platform library and include collections such as trees, linked-lists, queues, etc... What are the advantages/disadvantages to those libraries?
user295190
6
votes
4 answers

Function pattern/predicate matching in Python

I'd like to be able to dispatch different implementations of a function, based not only on the type of the first parameter, but based on arbitrary predicates. Currently I have to do it like so: def f(param): try: if param > 0: …
Aviv Cohn
  • 15,543
  • 25
  • 68
  • 131