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

Choosing platform for a specific program

Today I started thinking about a new project, and I found one. The goal is to get a first version working in the first three months. I'm going to write a "laser/light-show simulator" program, that you can generate such lightshows as you see on big…
wvd
  • 1,189
  • 2
  • 12
  • 23
1
vote
1 answer

Creating libraries in C++ for other languages

I am wondering what is the best/most common way to create a C++ library that I could create a wrapper for in another language.For example I if I create a library in C++ I'd like to create a wrapper for it in C# and then later on create a wrapper for…
1
vote
2 answers

Simple ruby interpreter problem : `require': no such file to load -- (LoadError)

I get this when I run a main.rb file from OSX command line `require': no such file to load -- EngineAPIWrapper (LoadError) I have tried putting all the files that it references within the same folder instead of sym links but I still get the…
theprojectabot
  • 1,163
  • 12
  • 19
1
vote
0 answers

C++ - Visual Studio - LINK : fatal error C1047: The object or library file was created with an older compiler than other objects

I'm trying to build a project in Visual Studio 2015 but getting the following error from Visual Studio: LINK : fatal error C1047: The object or library file '..\..\SOIL\Release\SOIL.lib' was created with an older compiler than other objects;…
edo
  • 99
  • 1
  • 2
  • 15
1
vote
2 answers

Finding Common Lisp Libraries

I'm using QuickLisp to load Common Lisp libraries. However, there are many libraries that all do similar things. For example, there are many libraries that all deal with parsing a CSV file. Are there any resources you use to check which libraries…
audrow
  • 143
  • 1
  • 9
1
vote
1 answer

Problems with libgdx libraries using intellij on a git project with a friend

So I am fairly new to programming, and new to git, LibGDX and Intellij. My friend and I started with a programming project a few days ago, where we generated a project using libGDX. We opened the project in IntellIj IDEA and sat up the run command.…
VexZ
  • 11
  • 4
1
vote
1 answer

How do auto import butterkniffe in all my new Android Studio projects?

It is tedious to have to add libraries to use in all my projects . Is there any way to make Android Studio add all dependencies that I frequently use?
Hector Oliveros
  • 391
  • 4
  • 8
1
vote
2 answers

Why does IntelliJ import extra libraries from JDK 1.6 for a simple hello world program?

I'm new to Java and IntelliJ and I am just doing a simple "hello world" program. IntelliJ has about 10+ libraries from JDK 1.6 added to my project even though I'm not importing anything in my classes that would seem to need them. I created a new…
TJEnt
  • 13
  • 2
1
vote
1 answer

Processing 2.2.1 not recognising OpenCV library folder

I have downloaded the OpenCV library folder from: https://github.com/atduskgreg/opencv-processing and put the folder into the processing libraries folder with all my other libraries. When I go to the examples folder in OpenCV and run one, it says it…
1
vote
1 answer

internal versus external libraries Java

What is the difference between internal and external libraries in Java? For example, import java.util.*; import java.io.File; Is java.util and/or java.io an internal library, external library, or something else? Thanks!
Laura_E
  • 169
  • 1
  • 10
1
vote
0 answers

R - Delete a library path to keep the default one

I don't know when this happened, but I used to have only one library path where I installed my packages. But now it appears I have 2 of them and I want to get rid of the new one, since all packages I install go directly to that new…
paales01
  • 11
  • 2
1
vote
0 answers

R Programming : BH/DESCRIPTION', probable reason 'No such file or directory'

Can anyone please help me out to fix the below error while loading the dpylr package. Warning in install.packages : downloaded length 1077248 != reported length 2409111 package ‘tibble’ successfully unpacked and MD5 sums checked package ‘lazyeval’…
1
vote
3 answers

Cross-Platform Building, Standard Directory Structures, Environment Variables

I've started using CMake as a build tool for a cross-platform command line program that requires FFTW3 and Boost.Format. I'm familiar with the Unix-like standard directory structures for headers and binaries of installed libraries but I'm wondering…
sellibitze
  • 27,611
  • 3
  • 75
  • 95
1
vote
1 answer

How to edit epub file content with PHP

I wanna edit epub file content in PHP to erase some text from begging of the ebook. I have tried some libraries with no…
Anton Smatanik
  • 587
  • 1
  • 9
  • 25
1
vote
0 answers

Use "javax.crypto" library in a .JAR file

At the beginning of the code of my java application, one class is called to decrypt resources (text files and images) using javax.crypto (These resources were encrypted in the same way). In Eclipse, the application works well and resources are…
Deaudouce
  • 167
  • 2
  • 12