Tagged Questions
The lib tag has no wiki summary.
52
votes
15answers
22k views
When to use dynamic vs. static libraries
When creating a class library in C++, you can choose between dynamic (.dll) and static (.lib) libraries. What is the difference between them and when is it appropriate to use which?
18
votes
2answers
21k views
Rails /lib modules and
I am writing a custom wrapper for open_flash_chart plugin. It's placed in /lib and load it as a module in ApplicationController.
However, I have some Class hierarchy or smth problem.
From any ...
9
votes
4answers
20k views
How do I build an import library (.lib) AND a DLL in Visual C++?
I want to have a single Visual Studio project that builds a DLL file and an import library (.lib) file. (An import library is a statically-linked library that takes care of loading that DLL file in ...
7
votes
2answers
6k views
Tools for inspecting .lib files?
I'm evaluating some underdocumented software. When I build a sample project, I'm getting a linker error that looks like:
error LNK2019: unresolved external symbol
There aren't a whole lot of lib ...
6
votes
2answers
1k views
Python library to extract 'epub' information
I'm trying to create a epub uploader to iBook in python. I need a python lib to extract book information. Before implementing this by myself I wonder if anyone know a already made python lib that does ...
6
votes
1answer
389 views
.lib and .dll Backward Compatibility
I currently have a VS6 unmanaged C library that I deliver as either a .lib or .dll. I want to upgrade to VS2010 but I still have users that are in VS6, VS2005, and VS2008.
Can a .lib or .dll built in ...
6
votes
2answers
969 views
what's the differences between .dll , .lib, .h files?
why in a project should include some *.lib, .h or some other files ? and what are these things used for ?
6
votes
1answer
870 views
Why do we still need a .lib stub file when we've got the actual .dll implementation?
i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that got the actual implementation code ? i mean why linkers still need .lib files to do ...
6
votes
8answers
2k views
Is it possible to use a C++ .lib file from within a C# program?
Is it possible to use a C++ .lib file from within a C# program?
5
votes
4answers
871 views
How to update a C++ dll without needing to relink the exe with the lib file?
First off , I'm referring to a Windows environment and VC++ compiler.
What I want to be able to do is rebuild a Vc++ dll and maintain compatability with an exe that has already been linked to the lib ...
5
votes
4answers
3k views
Why isn't this library linking with a pragma comment?
I'm using Fmod in a project I'm working on in Visual C++ 2008. If I include
../fmodapi375win/api/lib/fmodvc.lib
in Project->Linker->Input, it works fine, but for some reason if I use
#pragma ...
4
votes
4answers
139 views
How do you mark code as deprecated in Go?
In Go, how do you mark code as deprecated so that users get a warning when using it?
4
votes
7answers
217 views
why do I need to link a lib file to my project?
I am creating a project that uses a DLL. To build my project, I need to include a header file, and a lib file. Why do I need to include the respective lib file? shouldn't the header file declare all ...
4
votes
1answer
2k views
Using my own prebuilt shared library in an Android NDK project
I came across this post that is almost what I need:
How to compile a static library using the Android NDK?
Basically, there are certain parts in my project that are never updated, so I am trying ...
4
votes
1answer
150 views
Import Python lib in C#
There is an existing python lib which i have to instantiate in my C# code.
Which is the best possible way to do so? And how?
I am not much familiar with python, so IronPython, py2exe confused me big ...
4
votes
2answers
305 views
How can I manage building library projects that produce both a static lib and a dll?
I've got a large visual studio solution with ~50 projects. There are configurations for StaticDebug, StaticRelease, Debug and Release. Some libraries are needed in both dll and static lib form. To get ...
4
votes
1answer
1k views
How to Link to a .lib file in Visual C++ 2010? Without referencing the project?
I just have a problem that I have been trying to fix for the longest time.
I have a static library project in visual c++, and I want another project to be able to link to it. Up until now, I have ...
4
votes
8answers
3k views
circular dependencies between dlls with visual studio
I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio?
foo(int i)
{
if (i > 0)
...
3
votes
1answer
80 views
Are compiled .lib files interchangeable for different versions of Microsoft Visual C++?
Some projects provide a single set of "Windows" binaries for C (and possible C++ - not sure) libraries. For example, see the links on the right side of this libxml-related page.
I'm pretty sure ...
3
votes
1answer
124 views
OpenGL compiling issues
I am using Visual Studio C++ and GLEW. The Project Settings are all set (Includes/Libs).
MenuState.obj : error LNK2001: unresolved external symbol __imp____glewUseProgramObjectARB
MenuState.obj : ...
3
votes
1answer
163 views
Cannot link to lib file after upgrading to VS10
So I imported this VS9 solution into VS10 and VS10 would convert the whole thing into its new format for solution and project files. However, now it is giving me linker errors.
One project, a native ...
3
votes
2answers
308 views
Twitter Gem - rescue's to consider?
I'm working with the Twitter Gem and I've created a long running ruby task. I would like it to be able to handle common errors so I'm looking to build a list of those I should consider to protect ...
3
votes
3answers
121 views
C# from what direction is the sound coming?
I am searching for a C# library to look where the sound of my output (speakers) is coming from. I think its called a spectrum analyzer? Does anybody know a good library?
thnx!
3
votes
4answers
161 views
Is it possible to link lib dynamically like a DLL?
This is interview question.
Is it possible to link lib dynamically like a DLL ?
For example, for DLL, we use LoadLibrary and call exported functions.
Is it possible to use lib file in same manner?
3
votes
2answers
100 views
why can't you use the debug/release version of a lib interchangeably
In C++, most of the libs come in Debug/Release versions.
Question 1. What are the big difference between Debug and Release versions (e.g. what advantages do you have using one versus the other).
...
3
votes
1answer
113 views
Can I link lib compiled with vs2005 in C++ Builder 2007?
I compiled google v8 into v8.lib using VS2005. Can I link this in C++ Builder 2007?
3
votes
4answers
449 views
creating jar file for java application
i have created a java application which uses data from its config folder and , it also uses third party jar files those are located in lib folder, could anyone tell me how to create jar file for this ...
2
votes
2answers
65 views
Using MSVC++ .lib files with mingw. Name mangling
I have static C++ library, compiled with MSVC and dll file (library called opennurbs). I need to use this library in project, compiled by mingw (I'm use Qt creator, but project doesn't use qt ...
2
votes
1answer
57 views
How to change a CMake file to produce a dll instead of static lib?
I am working on a project where I have to use JRTP (Jori Real Time Tranfer Protocol) library. I m using the version 3.9.1 of the library. When I tried to compile that library I used the following ...
2
votes
1answer
64 views
Pixel Drawing Library
A few years ago I used a simple display/pixel drawing library in C++ to display the results of a software rasteriser I'd made and I'm trying to find it again but with no luck. I have a feeling the ...
2
votes
2answers
162 views
Java CVS library
Do anyone know if there is a library which provides an API for Java to manage CVS repositories (for example to checkout a path)?
I have found JavaCVS (from NetBeans) and a project called JCVS but ...
2
votes
3answers
46 views
Updating DLL of a C++ project in Visual Studio
I have a project that uses a DLL that I have created. Everything works wonderfully, but I am now extending the library in the DLL to optimize some older functions.
What I was wondering is if I just ...
2
votes
2answers
90 views
Ant not recognizing JUnit jar in its lib directory?
I'm using Cygwin under Windows XP, and I'm trying to get Ant to use JUnit without coding any classpath entries for it. The doc for JUnit says I can:
Put both junit.jar and ant-junit.jar in ...
2
votes
1answer
73 views
Compiling a C++ library both as a static lib and dynamic dll with VS
I need to compile an existing C++ library both as a lib and a dll, and then use the static and dynamic libraries in different applications. I use VS2010.
What I can't do is to edit all the header ...
2
votes
1answer
109 views
Creating and linking against a .lib file generated from an old DLL file
I have inherited an old VC++ project that requires an old proprietary .lib file to link against. I have the header file for the lib, but the original developers seem to have lost the .lib file.
I ...
2
votes
1answer
87 views
Not finding the library files directed to in Makefile
I am trying to compile this tool. Below is the beginning of its Makefile:
CC = gcc
CFLAGS = -Wall -O2 -D TRACES
DFLAGS = -g -Wall -o0
CPPFLAGS= $(INCLUDES:%=-I %)
LDFLAGS = $(LIBRARIES:%=-L %)
...
2
votes
2answers
88 views
Project contains more lib than dll files
I try to understand a visual studio project, which I had downloaded. There are two folders a bin and a lib folder. The number of lib files in the lib folder is greater than the number of dlls in the ...
2
votes
1answer
137 views
Why are LIB files beasts of such a duplicitous nature?
I'm trying to understand this LIB file business on Microsoft Windows, and I've just made a discovery that will - I hope - dispel the confusion that hitherto has prevented me from getting a clear grasp ...
2
votes
6answers
107 views
How to tell if there is a console
Ive some library code that is used by both console and wpf apps. In the library code, there are some Console.Read() calls. I only want to do those input reads if the app is a console app not if its ...
2
votes
1answer
139 views
What's are good Twitter PHP libs to send a message to new followers?
I am looking for a good PHP based lib to send a message to new followers. Probably it's already done. I think it must work as a twitter client and not around OAUTH2 authentication.
2
votes
2answers
178 views
How can I reload files in /lib on every request?
Rails loads controllers, helpers and models on each request.
My controllers have a bunch of modules which include methods for shared actions
Each time I change the modules, I have to restart Rails ...
2
votes
1answer
289 views
Python 3.2 Debug Lib
I need to either download or build the python32_d.lib, unfortunately whenever I search for how to obtain said lib all I get is people asking the same question, but never the actual answer.
One answer ...
2
votes
4answers
102 views
What are possible side-effects of linking against a .lib that is a different version of the .dll?
I am linking against a newer .lib but using an older .dll in my application. What are the possible side-effects of doing this? Shouldn't everything work if the function prototypes are the same ...
2
votes
2answers
343 views
2
votes
1answer
302 views
How to reexport CLR c++ static library
I have these files:
foo.dll
foo.lib
foo.exp
bar.il
bar.netmodule
"foo" defines functions in its export directory.
I also have a Visual Studio 2010 C++ project which will create a managed ...
2
votes
2answers
117 views
Lib Files and Defines
I'm using a couple of external libraries and I'd rather not have to include all their source and header files in my main source directory or in my project file. One option would be to compile the ...
2
votes
1answer
957 views
using Poppler Qt4 c++
i need a pdf viewer library to be used in my app,
am using c++ and QT
i downloaded Poppler
and code example The Poppler Qt4 interface library
but, i do not know how to configure the library to work ...
2
votes
3answers
192 views
Calling c function in a lib file from c++
I have to call a c function declared in a lib file from c++. What instructions/attributes/configuration I have to set for this?
2
votes
1answer
71 views
Converting static linked library to dynamic linked library under windows
I am in the midst of evaluating the benefits of changing our program from 30+ statically linked libraries to 30+ dynamically linked libraries. We hope by changing to DLL, it will reduce the link ...
2
votes
2answers
159 views
Is a C .lib file platform specific?
I'm trying to use an API for a proprietary interface device on an embedded system (Freescale HCS08), and the provided files include headers (.h) and libraries (.lib). The header compiles fine with ...