Questions tagged [lib]

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.

761 questions
2
votes
0 answers

How to import Jenetics Library in Eclipse

First post here, I hope it's not too dumb, but I tried for several hours and can't find a solution. I want to play around with evolutionary algorithms and therefor tried to import the Jenetics Library. I downloaded the zip and tried to import it…
Voli Bear
  • 21
  • 1
2
votes
1 answer

C++: renaming dlls and libs and linking

We are using a 3rd party library that we build our code with. This library has both a 32-bit and 64-bit dll and lib. Both the 32 bit and 64 bit versions have the same name. Our software is expected to be built for both 32 bit and 64 bit and…
virtore
  • 161
  • 1
  • 9
2
votes
1 answer

how to get lib_mysqludf_sys.dll file on windows

Anybody knows where can i find the lib_mysqludf_sys.dll file? It doesn't matter if it is 32bits or 64. I've been looking but i can't find it. Or ther is a way to install the file instead of download it?
user8084037
2
votes
1 answer

Layer [] not found

I'm trying to bruteforce (a rootme challenge don't worry :p) an SNMPv3 authentication password using this python script : https://github.com/cysboy/SnmpCrack/blob/master/SnmpCrack.py Nevertheless, I have an error loading a scapy snmp module line 72…
T. Rode
  • 86
  • 6
2
votes
1 answer

Optimize redundant CSS styles in HTML

Our loading crew is using different WYSIWYG HTML editors to prepare an offers. Unofrtunatelly the result code is usually not optimized and it demands a lot of space in our db. Example codes:
2
votes
2 answers

Include a cn1lib in a local codenameone android build?

I am currently considering porting a app that I start developping with react-native to codenameone. For this, I am still checking the feasability and the amount of work it would requiere (as I would have to port or developp some native library…
Thomas Bernard
  • 333
  • 3
  • 10
2
votes
0 answers

R: warning/error when calling normalizePath(...) or adding to .libPath(...)

I have a shared computer. If I login with windows userA, I can run the following: normalizePath("//mydrive/my/path", "/") and it returns: "\\\\mydrive/my/path" However if login to windows under userB, I get this message: Warning message: In…
RockScience
  • 17,932
  • 26
  • 89
  • 125
2
votes
2 answers

Cannot import from redom library

I am trying to import redom library but keep getting this error: Uncaught TypeError: Cannot read property 'nodeType' of null My code is listed below:
2
votes
2 answers

Cannot run a program by clicking on it while I can from Terminal

I'm trying to learn how to build and use dynamic library in a c++ program. Everything is fine and my program run well when I launch it from Terminal (I'm on a mac OS X El Capitan). Surprisingly that's not the case when I try to launch it by clicking…
kipgon
  • 131
  • 14
2
votes
0 answers

Error LNK2019 unresolved external symbol _cmd_ln_init referenced in function _main

I am trying to run my code using the library pocketsphinx. Even though I have used the .lib files for the library it still isn't working. My code: #include "stdafx.h" #include #define MODELDIR "c:/sphinx/model" int main(int argc,…
user7922014
2
votes
3 answers

CMake / error when linking libfreeimage / libtiff

I'm quite new to CMake, now I'm trying to compile the COLMAP software from https://colmap.github.io/ with it. It compiles the modules but when it comes to linking it fails with a number of errors like…
Cookie
  • 678
  • 1
  • 11
  • 22
2
votes
1 answer

pod lib lint complaints about header files outside of header_mappings_dir

I'm building a pod for an open source library and have to leave the directory structure for the public header files intact. The simplified example is this: include/header1.h include/foo/header2.h src/file.c src/internal.h The include directory…
smk
  • 94
  • 6
2
votes
0 answers

How to force conda to link to system libraries?

When compiling some of our software with Jenkins, I ran into a problem. When compiling the software by hand on the machine Jenkins runs on (under a different user), this ldd for the executable shows (among other): libz.so.1 =>…
steW
  • 87
  • 10
2
votes
0 answers

error LNK2001: unresolved external symbol jpeg_std_error

When I use jpeglib open source codes,the following errors emerged,though I have imported libjpeg.lib in Properties->Configuration Properties->Linker->Input->Additional Dependencies. 1>main.obj : error LNK2001: unresolved external symbol…
2
votes
1 answer

class in lib/jar access EJB in an ear

My application structure is MyEAR.ear |-- MyWAR.war |-- MyEjb.jar |-- lib |- data.jar |- vo.jar |- util.jar |- jpa.jar myWAR.war has a servlet class which calls DataHelp.class which has ejb…
user418836
  • 847
  • 3
  • 8
  • 19