Questions tagged [lib]

556 questions
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
  • 430
  • 2
  • 10
4
votes
1 answer

code execution cannot proceed because cpprest_2_10.dll was not found

My aim is to use the Rest API in Visual Studio. I downloaded the C++ tool vcpkg from https://github.com/Microsoft/vcpkg and followed the instructions on https://github.com/Microsoft/cpprestsdk to install cpprestsdk. That worked fine. Then, in Visual…
johnny9876
  • 41
  • 1
  • 2
4
votes
2 answers

Get Python to look in different location for Lib using Py_SetPath()

I have embedded Python in an application, foo.exe. When it runs, the Python is invoked and immediately looks for Lib. The only way I can get it to work is to place Lib (Python's Directory Library of modules) in the location as foo.exe. Is there…
Jiminion
  • 4,984
  • 1
  • 22
  • 50
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
  • 12,697
  • 10
  • 68
  • 123
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
0 answers

Qt OLEAUT32.DLL, COMDLG32.DLL not registered?

I'm developing a new software in Qt but since a few days I get some confusing error messages when I run the project: mincore\com\oleaut32\dispatch\ups.cpp(2128)\OLEAUT32.dll!75FEEF12: (caller: 75FEE58F) ReturnHr(1) tid(10a0) 8002801D Bibliothek…
ke_let
  • 61
  • 5
3
votes
1 answer

How do you make clang link directly to a DLL in Windows without a .lib

TinyCC and GCC both have supported lib-less linking, in favor of directly linking to a DLL file for some time (since lib's haven't had real purpose since Win3.1). But for some reason in Windows, Clang insists on interpreting the .dll file as a .lib…
Charles Lohr
  • 448
  • 4
  • 18
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
  • 544
  • 2
  • 9
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
  • 7
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
  • 123
  • 1
  • 4
3
votes
2 answers

R load error - libproj.so.13: cannot open shared object file: No such file or directory

I am trying to install CRANs population genetics package hierfstat; however the following error with libproj.so.13 is printed: > install.packages("hierfstat") Installing package into ‘/home/ecoevo/R/x86_64-pc-linux-gnu-library/3.6’ (as ‘lib’ is…
3
votes
2 answers

How to rename/revise target file with version number on installing in CMake?

I'm using CMake-3.13.4 and KDevelop-5.2.1. I have a topmost CMakeLists.txt that defines the version numbers of my target. It looks like: set( PROJECT_VERSION_MAJOR 1 ) set( PROJECT_VERSION_MINOR 4 ) set( PROJECT_VERSION_PATCH 7 ) ... add_executable(…
Leon
  • 897
  • 4
  • 20
3
votes
2 answers

How to properly fix the following OpenMP error?

I get this error when I'm running Python 3.6 Jupyter notebooks in the console. OMP: Error #15: Initializing libiomp5.dylib, but found libomp.dylib already initialized. OMP: Hint This means that multiple copies of the OpenMP runtime have been…
O.rka
  • 24,289
  • 52
  • 152
  • 253
3
votes
1 answer

Do C++ executable includes .obj, .lib and .dll?

I have a C++ project that output a C++ .exe . The project is dependant of some .lib and .dll. If I want to use the .exe on another server, can I just transfer the .exe withtout the .lib, .dll, and .obj? Do the .exe was build so it 'includes' these…
3
votes
0 answers

Python package installation issues with lib & lib64 in RHEL 7

I am trying to install Python packages like numpy, pandas, etc in my Hadoop cluster which is installed in Red Hat (RHEL 7). I downloaded tar files, extracted them and then exceuted Python set.py install command to install the package. I need…
1
2
3
37 38