Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9064011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T16:08:30+00:00 2026-06-16T16:08:30+00:00

I have JNI library libA.so, which depends on a C library libB.so. In Java,

  • 0

I have JNI library libA.so, which depends on a C library libB.so.

In Java, one way to resolve “symbol lookup error” is to have:

class A{
    public native void g();
    static{
        System.load("/asdfghjk/libA.so");
    }
}

Then run the java program with

LD_PRELOAD=libB.so

However, this hack cannot be used in production system, for example when the program is deployed with Tomcat JSF.

The following “solution” doesn’t work:

class A{
    public native void g();
    static{
        System.load("/asdfghjk/libB.so");
        System.load("/asdfghjk/libA.so");
    }
}

It produces an error:

symbol lookup error: /blah/... undefined symbol: _ZNblahblahblah...
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T16:08:31+00:00Added an answer on June 16, 2026 at 4:08 pm

    That error is because it can’t find libraries which your shared library depends on.

    You should either add the location of dependent libraries to your java.library.path, explicitly System.load them first in the right order, or somehow use the dlopen system call to load the dependencies.

    This question may be helpful: Java: load shared librariees with dependencies

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JNI method to access java method which returns an Integer object.
I have a simple class for use on JNI, which i need to export
I have a Java application which interacts with native code using JNI. The native
I have a native library which is invoked by the JNI function called from
Intro : I have a native library (C++) with Java (JNI) wrapper. The library
I have a Java program making some JNI calls to a native library (mylib.so).
I have a C++ library that I call from Java via JNI. There's a
I have a working implementation of NDK library and corresponding Java-class. But I am
I have a project organized as follow: project/jni/Android.mk project/jni/libA/Android.mk project/jni/libB/Android.mk project/lib/armeabi/libA.so project/lib/armeabi/libB.so My libA
We have system here that uses Java JNI to call a function in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.