java unsatisfiedLinkError


 
Thread Tools Search this Thread
Operating Systems Linux java unsatisfiedLinkError
# 1  
Old 11-18-2004
java unsatisfiedLinkError

I have an ant build file im using to build and run a software package im developing. I'm writing an automatic build script that will each night pull a clean project from CVS, build it, and run some tests on it. I have everything running but the tests. The test requires the running of a seperate program's API (Netica (r) in case you're wondering) to be available at compile and runtime. Everything build's fine, so I am led to believe the required .jar's are on the path, but when I try to run the tests I get an unsatisfiedLinkError that a library is not on my java.library.path. I have even added the -Djava.lbrary.path=/mypath/mylibs flag to the java call, but I still get the same error. I have a libBlah.so file associated with Netica that needs to go somewhere or be pointed to somewhere and maybe thats the problem, but i know its on the classpath...any ideas?
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. AIX

UnsatisfiedLinkError with Java1.6 in AIX6.1

Hi Folks, I'm facing the below error when loading my library on AIX6.1 java.lang.UnsatisfiedLinkError: marimba (A file or directory in the path name do es not exist.) at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1013) at... (7 Replies)
Discussion started by: Bharath_M
7 Replies

2. Solaris

UnsatisfiedLinkError libLicense.so: ld.so.1: java: fatal: libssl.so.0.9.8: open faile

Hi Guys, Please help me out. I am new to solaris. I am using solaris 10 ___________________________________________________________ public class Filecheck{ public static void main(String args) { System.out.println("LD_LIBRARY_PATH is : "+System.getProperty("java.library.path"));... (5 Replies)
Discussion started by: josh_chrisin
5 Replies

3. UNIX for Dummies Questions & Answers

Receiving error on Unix server-- java.lang.UnsatisfiedLinkError: registerNatives

Hi all, This is my first shell script, so I'm hoping the problem is that I'm just missing something, and not something bigger. I have a Java application that I wrote in WSAD that reads data from an Excel file and inserts values into a DB2 database. I'm able to run it successfully in WSAD. I... (4 Replies)
Discussion started by: loveToBlade
4 Replies
Login or Register to Ask a Question
DH_AUTO_CLEAN(1)						     Debhelper							  DH_AUTO_CLEAN(1)

NAME
dh_auto_clean - automatically cleans up after a build SYNOPSIS
dh_auto_clean [buildsystemoptions] [debhelperoptions] [--params] DESCRIPTION
dh_auto_clean is a debhelper program that tries to automatically clean up after a package build. It does so by running the appropriate command for the build system it detects the package uses. For example, if there's a Makefile and it contains a distclean, realclean, or clean target, then this is done by running make (or MAKE, if the environment variable is set). If there is a setup.py or Build.PL, it is run to clean the package. This is intended to work for about 90% of packages. If it doesn't work, or tries to use the wrong clean target, you're encouraged to skip using dh_auto_clean at all, and just run make clean manually. OPTIONS
See "BUILD SYSTEM OPTIONS" in debhelper(7) for a list of common build system selection and control options. -- params Pass params to the program that is run, after the parameters that dh_auto_clean usually passes. SEE ALSO
debhelper(7) This program is a part of debhelper. AUTHOR
Joey Hess <joeyh@debian.org> 11.1.6ubuntu2 2018-05-10 DH_AUTO_CLEAN(1)