This tag should not be used. If your question is about a particular library, use the tag for that library instead. If it is about using libraries generally, use one of [libraries], [shared-library], [static-library], [class-library], etc. If it is about liberal politics, try politics.stackexchange.com.
Questions tagged [lib]
761 questions
4
votes
1 answer
How to sign using Xades-EPES standard with Python?
I found Xades Signature for Python GitHub. My plan is to apply Xades-EPES signature to XML files. According to the work from GitHub, it is capable to perform this process, but I could not make this run.
test_xades.py has two methods. I receive a…

Sergio Ramirez
- 51
- 9
4
votes
3 answers
How dynamic linking reacts on a change in object
I have compiled a component (say X.exe) linked with a dynamic library (say Y.dll). X and Y have been released.
Now I have made a small change in an object's function which Y holds: I've deleted a leaked object and made its pointer NULL.
To apply…

Kethiri Sundar
- 480
- 2
- 12
4
votes
0 answers
Windows c++ libraries: What does the suffix 'z', 'd' and 'zd' mean?
I am sure this has been asked somewhere before - but I can't make a google question how to find the information.
I have some windows c++ libraries (from a third-party) with the following extensions:
...core.lib (~ 800KB)
...cored.lib (~…

code_fodder
- 15,263
- 17
- 90
- 167
4
votes
1 answer
Angular 2 external lib error
I generate my angular 2 lib with yeoman generator and added to main angular project. If i compile app in dev mode i haven't error, but if i run prod mode, i get many errors:
WARNING in…

MrFranke
- 49
- 5
4
votes
2 answers
C linking error (with tcc)
I'm trying to run the example from tiny cc (tcc-0.9.26-win64-bin.zip) called libtcc_test.c.
I've copied libtcc.h from libtcc into include and libtcc.def into lib.
Then I ran tcc ./examples/libtcc_test.c and got a linking error :/
tcc: error:…

Maciej Kozieja
- 1,812
- 1
- 13
- 32
3
votes
0 answers
Exclude files and folders when bundling a library with vite
I am trying to publish a library using vite (via vite.config.ts). My codebase has a storybook and an app setup. However, when I publish my library I only want to include the files under the lib folder. I do not want to include the stories/*, App.tsx…

Stephani Bishop
- 1,261
- 1
- 13
- 20
3
votes
3 answers
When I'm creating Flutter new project lib folder is missing in Android Studio
When I am creating a new Flutter project in Android Studio, lib folder is missing. How to fix it?
I run Flutter doctor, everything is fine but I am facing this problem.

Fawad Ali
- 45
- 1
- 4
3
votes
0 answers
How to use .lib files - node-gyp windows
I have .lib static library - windows. How correctly include it to node-gyp project. I did it, but I caught error LNK2001: unresolved external symbol. I think, I add library incorrectly. This libriary is tdlib (telegram database library). Thank you…

Yaroslav
- 61
- 5
3
votes
1 answer
Using vcpkg with Visual Studio 2022 produces a bogus unresolved external symbol linker error
I have an MFC C++ project, which builds and runs just fine with Visual Studio 2022 on Windows 10. The project doesn't use Qt at all. After I installed Qt 6.2.1 with vcpkg, project stopped building with this linker…

Paul Jurczak
- 7,008
- 3
- 47
- 72
3
votes
2 answers
What are ways of using external modules and libraries in Python?
The book "Learning Python" by Mark Lutz states that in Python one can use various types of external modules, which include .py files, .zip archives, C/C++ compiled libraries and others. My question is, how does one usually handle installation of…

Oleksandr Novik
- 489
- 9
- 24
3
votes
0 answers
How to install C++ lib Duckx?
I want to use this lib DuckX. I followed tutorial,
git clone https://github.com/amiremohamadi/DuckX.git
cd DuckX
mkdir build
cd build
cmake ..
cmake --build .
It went on without any error. However, when I entered sample directory and execute g++…

si yan
- 343
- 1
- 13
3
votes
1 answer
How the linker find the correct library?
I know what preprocessing is, how compiler works, and how linker links the object files
But what I still haven't been able to answer is :
In an IDE like VS
suppose we have a library called DariushTest.o that implemented a function called print() and…

DariushStony
- 153
- 8
3
votes
1 answer
F# Library structure
I'm doing some restructuring of a project of mine, and decided to make a separate library project for a big part of it.
My problem lays in that I have multiple files with modules where many of them should be hidden from user API, how do I achieve…

kam
- 590
- 2
- 11
3
votes
0 answers
Different package present in /usr/lib/x86_64-linux-gnu/
I'm running this command nl-qdisc-add --dev=veth-host --parent=root plug --limit=32768
It throws an error of Error: Unable to load module "/usr/lib/x86_64-linux-gnu/libnl/cli/qdisc/plug.so": /usr/lib/x86_64-linux-gnu/libnl/cli/qdisc/plug.so: cannot…

user13145713
- 109
- 8
3
votes
0 answers
Error: libfreetype.6.dylib requires version 54.0.0 or later, but libpng16.16.dylib provides version 52.0.0
I compiled an executable of a python script using pyinstaller, but when I try to run my executable I get the error "libfreetype.6.dylib requires version 54.0.0 or later, but libpng16.16.dylib provides version 52.0.0." I feel like I need to update…

Katherine
- 143
- 2
- 5