What is LD_LIBRARY_PATH and how to use it?

前端 未结 6 985
一生所求
一生所求 2020-11-27 16:10

I take part in developing a Java project, which uses some C++ components, thus I need Jacob.dll. (on Windows 7)

I keep getting java.lang.UnsatisfiedLinkError:

6条回答
  •  Happy的楠姐
    2020-11-27 16:40

    LD_LIBRARY_PATH is the default library path which is accessed to check for available dynamic and shared libraries. It is specific to linux distributions.

    It is similar to environment variable PATH in windows that linker checks for possible implementations during linking time.

提交回复
热议问题