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
2
votes
1 answer
Unknown Type Errors when using functionblocks from my own library project
So I have a library project where I defined a couple of functionblocks and interfaces.
Now I want to use this library in a plc project (in the same twincat solution). So I do the whole save all, rebuild, save and install as a library spiel. If I try…

Daanvl
- 608
- 1
- 9
- 24
2
votes
1 answer
In node-gyp binding.gyp file, how to include different library files based on the system arch (32 bit, 64bit))
I am currently trying to connect c++ with nodejs project using node-gyp. My current problem is that i have a 32 bit library file and a 64 bit library file. My computer is using 64 bit. If i used the 32 bit library files, and build it with node-gyp…

the newbie coder
- 652
- 2
- 8
- 27
2
votes
1 answer
How to access sub elements of a custom FrameLayout in a library project?
I am extending a "MapView" that itself extends FrameLayout. But I can't access the ui elements I added: level_layout and *level_scroll. I have no trouble adding the code directly to my MainActivity, but I can't get it to work in a library.

Heinzlmaen
- 869
- 10
- 20
2
votes
1 answer
Visual Studio gives an incorrect "fatal error LNK1107: invalid or corrupt file" for large static libraries in Release builds
In Release mode, Visual Studio 2015 is giving me an error about a corrupt static library file, while in Debug mode, it does not. I've carefully compared the settings of each mode, and do not find any differences that I think would cause this.
Here…

user3074363
- 99
- 6
2
votes
0 answers
Building OpenH264 library with android NDK19 fails
I need to build openh264 library for android. I downloaded from official webpage(https://github.com/cisco/openh264).
I'm following the same steps. It's working with android ndk15, not working with latest ndk19. Because they have removed the stlport…

Nandhakumar Kittusamy
- 1,066
- 12
- 32
2
votes
1 answer
Trouble installing some libraries in python (oauth2client and gspread)
I'm using python 3.7 (environment created by anaconda) and trying to run python code that uses some google libraries but I don't really know how to install them.
From PyCharm IDE (Settings -> Project Interpreter -> Available Packages) I cannot find…

Rodrigo Calderano Barbacovi
- 430
- 1
- 4
- 11
2
votes
0 answers
Why am I able to compile with a dll but not a static library?
I am following an OpenGL tutorial (on Windows). I am trying to use glfw to create a graphics context but am not able to get the static library I downloaded to link to my source code. If I instead use the glfw dll, everything works and I can run my…

Arik Rundquist
- 57
- 4
2
votes
1 answer
javac not recognizing external libraries
I have a working version of my project in eclipse.
I exported the project as a runnable jar.
Extracted (after converting to .zip)and tried to compile a particular java file from the command prompt
(Doing it this way since I have a project…

SidTechs1
- 67
- 4
- 12
2
votes
1 answer
Failed to resolve: com.github Affected Modules
I like to include a Calendar in my App. So I try to implement Roboto Calendar View. After implement:
dependencies {
implementation 'com.github.marcohc:robotocalendarview:'
}
And:
allprojects {
repositories {
google()
…

Marco D.
- 133
- 2
- 17
2
votes
1 answer
Error LNK2038 mismatch detected for '_MSC_VER': value '1700' doesn't match value '1900' in xxxx.obj
was converting my projects from VS2012 to VS2015.But I am getting an _MSC_VER linker error in certain projects. After a long surfing through google I found out that the issue is due to linking of a library created in VS2012 to VS2015.
How can I find…

Trang
- 21
- 1
- 3
2
votes
1 answer
Getting error if installing the python packages through loop from local folder
I am trying to install some packages through python code using loop, but at once only one package get install.
Got below error on next package.
Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory:…

Akshay Sharma
- 23
- 7
2
votes
1 answer
/sbin/ldconfig.real: /usr/lib/ is not a symbolic link (Whole Folder)
I've seen several threads talking about the error of "/usr/lib/lib...so is not a symbolic link" that means that lib is not referred by the previous one, but this is different.
it says THE WHOLE /usr/lib/ is not a symbolic link ...
why does this…

Parodain Feliz
- 19
- 1
- 3
2
votes
1 answer
Dynamic Import inside angular 6 library
I've created a sample Angular 6 Library with the angular cli
ng new test-lib
ng g library my-lib
This gives me the basic structure with the angular library "my-lib" and the sample app "test-lib" which I think can be used for testing…

Stephan U
- 21
- 3
2
votes
1 answer
ld: library not found for -lstdc++.6 - Xcode 10
ld: library not found for -lstdc++.6
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
There are quite a bunch of questions like me,
But I not found any solution for this problem.

vipinsaini0
- 541
- 1
- 7
- 26
2
votes
1 answer
library not found for -lstdc++.6 in Xcode 10
I am not able to build Cordova based iOS app in Xcode Beta and GM version Because In this project used -lstdc++.6. Why because Apple has deprecated -lstdc++.6 this library in the newer Xcode version.
So I have removed this library from the Link…

iSara
- 919
- 3
- 10
- 24