Questions tagged [library-path]

71 questions
1
vote
1 answer

Two versions of glibc on the same system

I currently have glibc 2.10.2 on my system. I upgraded an android installation on this same system the other day. Post the upgrade, however, I am unable to run the emulator. The emulator shuts down after posting an error which says something like:…
Sriram
  • 10,298
  • 21
  • 83
  • 136
1
vote
0 answers

NetBeans -Djava.library.path separator differs in Windows and OS X

About I am having a NetBeans project with source code that includes two .jar files that load platform and architecture dependent native libraries each. The following shows the library structure in a generic way: lib (NetBeans project root level) …
Bee
  • 1,306
  • 2
  • 10
  • 24
1
vote
1 answer

no jsmile in java.library.path

I am getting exception : no jsmile in java.library.path when i run my project. Even i have added jsmile_win64 in lib folder and .dll file in vm option : -Djava.library.path="C:\Users\admin\jsmile.dll"; But still I am facing the same issue. import…
MMMMS
  • 2,179
  • 9
  • 43
  • 83
1
vote
1 answer

How does java.ext.dirs support multiple directories

When I run a Java JAR with the parameter -Djava.ext.dirs=xxx it works, but it could not find security libraries which are provided by JAVA_HOME/jre/lib/ext. Does java.ext.dirs support multiple directories?
1
vote
1 answer

Which missing library results in the message '/usr/bin/ld: cannot find -lglib-2.0'?

I am cross compiling a Lazarus program, creating a 32bit program on a 64bit Ubuntu 14.04 Trusty Tahr system, and everything apparently compiles to the very end when I get this messsage /usr/bin/ld: cannot find -lglib-2.0 What is the full name of…
vfclists
  • 19,193
  • 21
  • 73
  • 92
1
vote
1 answer

How does Solaris decide the library path?

On Solaris, I can use crle command to configure library path like this: crle -c /var/ld/ld.config -l /lib:/usr/lib:/usr/local/lib:/opt/DSI/32 I can also use the traditional LD_LIBRARY_PATH method, like this: …
Nan Xiao
  • 16,671
  • 18
  • 103
  • 164
1
vote
2 answers

cross compile project as buildroot package with waf for ARM9

I am using Code sourcery g++ lite toolchain 2013. Got a project which I integrated into buildroot (which seems to be fine, everything gets called as expected). waf is the buildsystem of choice define EEBUSRESTIFIED_CONFIGURE_CMDS (cd "$(@D)";…
drahnr
  • 6,782
  • 5
  • 48
  • 75
1
vote
1 answer

Python-Failure to import BeautifulSoup4 in Python3.3.1, but success in Python 2.7-Installed using easy_install

Background & What I did: I'm writing a webpage content extractor, and realized the need to install BeautifulSoup4 to better parse my HTML file. On my Ubuntu 13.04 machine, I have both Python2.7(system default) and Python3.3.1 installed. After a few…
hakuna121
  • 243
  • 5
  • 10
  • 18
1
vote
2 answers

How can I make Cygwin/perl load a specific library à la LD_LIBRARY_PATH/LD_RUN_PATH?

The issue I'm seeing is that the wrong version of a library gets loaded in a perl process running on Cygwin (1.7.15, current as of 09/2012). Briefly, perl starts, does use XML::LibXML, which is the Perl interface to libxml2, Daniel Veillard's C…
Lumi
  • 14,775
  • 8
  • 59
  • 92
1
vote
1 answer

Can't call a script from within a script

I am trying to call a script from within another script. The idea is that the program should take in email that is sent to it directly from unix mail as stdin, and then parse some stuff out and send it to a new script. I am having trouble…
Dan
  • 707
  • 3
  • 10
  • 18
1
vote
1 answer

Include path problems for GPU library

I am trying to use MAGMA (http://icl.cs.utk.edu/magma/) to perform some matrix operations on a GPU. I am able to invoke CUDA kernel's successfully, and there is no problem with that. But when I try to use the magmablas_sgemm function, I am getting…
Neo
  • 1,554
  • 2
  • 15
  • 28
0
votes
1 answer

Custom library path for binaries included in Android app

I need to deploy a native binary executable in an Android app. My approach is mostly modeled after this SO answer. The build process differs, but I deploy the native binaries as assets, which the app copies to its internal private storage as…
user149408
  • 5,385
  • 4
  • 33
  • 69
0
votes
0 answers

Cannot run R script which is in the local directory

I installed an R library (https://github.com/behavioral-ds/evently) using devtools::install_github() This library (evently) is installed in Library/Frameworks/R.framework/Resources/library. On the other hand, I have the same directory (evently) in…
mOna
  • 2,341
  • 9
  • 36
  • 60
0
votes
0 answers

Probelms downloading and opening packaging, lib not specified

I am using R 4.2.3 and try to install packages but have problems now. The following appears when trying to install OpenMX: install.packages("OpenMx") Error in install.packages : Updating loaded packages install.packages("OpenMx") Installiere Paket…
0
votes
0 answers

Force 64-Bit JDK/JRE to pick the 64-Bit library on Linux

Here is my container environment and configuration As you can see the JVM and the Linux are both 64-Bit. The library location also has 64Bit liars3wapi64.so file available and that is what I have set as LD_LIBRARY_PATH using the following 2…