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

What is the best way to use front libraries in symfony2

For example, if I want to use Twitter bootstrap 3 in a Symfony 2 project without using a bundle (and of course, without using a CDN). What is the best way to do that ? There is a better solution than using an output attribute of stylesheet tag in…
Nicolas Talichet
  • 309
  • 3
  • 16
1
vote
1 answer

Simulink - export a model in a single file

How can I create a single simulink file from a simulink model, which consists of mutliple linked blocks in user defined block libraries? In other words I am looking for a way to break all the library links and have the whole model exist in its own…
d4rty
  • 3,970
  • 5
  • 34
  • 73
1
vote
0 answers

Robot Framework dropdown and libraries

So i want to create libraries in the PyCharm and then put these libraries in Robot Framework IDE, RIDE. My Library inherit the Selenium2Library. So i have two questions, can i inherit in my custom library another ready library like WebDriver? Also i…
fdgenie
  • 61
  • 1
  • 6
1
vote
1 answer

How to debug PHPUnit tests in a library with Xdebug and eclipse / Zend Studio?

For development and debugging I use the combination Zend Studio 12 + Xdebug. The projects are stored on a Windows 7 local machine, shared with as shared folders with a Linux Virtualbox VM, and executed there. It's my environmnet looks like. The…
automatix
  • 14,018
  • 26
  • 105
  • 230
1
vote
1 answer

Python Networking Libraries

I've search a little bit on net about urllib library in python 2.7, due to my friend's tip and because I've already used for a while. Well, what I really wanna know is about indications. Supposing I desire to create a application that is going to be…
user5249778
1
vote
0 answers

c# Custom library

I am creating a custom library for sending emails. Idea is to use System.Net.Mail or Microsoft.SharePoint. Code will be executed in enviroment that has System.Net.Mail but not necessarily Microsoft.SharePoint. Sharepoint library will be used only if…
Painkiller
  • 109
  • 1
  • 1
  • 10
1
vote
0 answers

Most efficient way to call Perl Libraries from within PHP?

Possible Duplicate: How can I use Perl libraries from PHP? I would like to make use of some libraries only available in Perl from my PHP applications. I haven't used Perl before but have been looking into it some and am still not sure of the best…
Rick
  • 16,612
  • 34
  • 110
  • 163
1
vote
1 answer

COM type library and Interface exposure

When you have a COM client that exposes an Interface for an out of proc COM server to access, do you have to register the type library or .idl file with the system for the server to be able to access the interface? I'm not sure if I can generate a…
Tony The Lion
  • 61,704
  • 67
  • 242
  • 415
1
vote
1 answer

Does the order in which libraries appear on the gcc command line matter?

I always thought that libraries had to be listed after any object files that depended on them, but given this simple program: #include #include #include #include int main(int argc, char **argv) { double…
ldx.a.ldy.c
  • 687
  • 4
  • 9
1
vote
2 answers

Automatic recompilation: if a CMake client project depends on a separate CMake library, how to have the client project re build its dependency?

With a growing codebase, it makes sense to organize it between separate repositories, each repo being a separate CMake-managed project. Because of modularity, this usually means you end up in a situation where a CMake-managed project Application…
Ad N
  • 7,930
  • 6
  • 36
  • 80
1
vote
1 answer

Does Xcode strip debug symbols for dependencies (OSX) and places them into .dSYM?

My OSX app has several dependency libraries which were compiled with -g clang flag to preserve source-level debug symbols. Xcode project settings have Strip Debug Symbols During Copy set to YES and Debug Information Format set to DWARF with dSYM.…
peetonn
  • 2,942
  • 4
  • 32
  • 49
1
vote
2 answers

How to import android websocket library in android studio?

I know the procedure in eclipse but in android studio it's difficult This is the link of library https://github.com/koush/android-websockets
Rajat Arora
  • 31
  • 1
  • 3
1
vote
2 answers

Referencing unmanaged librararies from managed code, adventages and disadvantages?

HI all, I would like to call from my C# code, unamanaged library functions like presented below. There are two options and the both works. In this moment "Beep" function is simple and have no input/output parameters, pointers, references... I am…
milan
  • 213
  • 3
  • 10
1
vote
1 answer

'METHODNAME' as Client method versus irc_'METHODNAME' in twisted

Looking at twisted.words.protocols.irc.IRCClient, it seems to me like there are some strangely redundant methods. For instance, there is a method 'privmsg' but also a method 'irc_PRIVMSG' As another example consider 'join' and 'irc_JOIN' What I want…
themaestro
  • 13,750
  • 20
  • 56
  • 75
1
vote
0 answers

error compiling when combining projects

I have 2 separate working projects on a raspberry running raspbian. i am having some problems when joining them together and as i am not that good with the compiler itself(still learning) i don't know how to work it out. Error (finish_with_error can…
pato.llaguno
  • 741
  • 4
  • 20