微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

scala – unsatisfiedLinkError与本机库在sbt下

我使用sbt 0.13,并在sbt下使用 leveldbjni本机库(即使在 issue #358解决)之后也有问题。已经报道了 similar issue,sbt 0.13应该提供一个解决方案,但似乎没有。所以我在这里分享我的意见。

我得到一个UnsatisfiedLinkError与以下示例应用程序。

> build.sbt

name := "example"

version := "0.1"

scalaVersion := "2.10.2"

libraryDependencies += "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.7"

> build.properties

sbt.version=0.13.0

> Example.scala

import org.fusesource.leveldbjni.internal._

object Example extends App {
  NativeDB.LIBRARY.load() // loading succeeds 
  new NativeOptions() // UnsatisfiedLinkError under sbt
}

我正在使用Oracle JDK 1.7和OS X 10.8.5。在sbt下运行run-main示例

[error] (run-main) java.lang.UnsatisfiedLinkError: org.fusesource.leveldbjni.internal.NativeOptions.init()V

而运行它

java -cp scala-library.jar:example_2.10-0.1.jar:leveldbjni-all-1.7.jar Example

工作正常当Scala在bootclasspath上时,应用程序甚至可以成功运行:

java -Xbootclasspath/a:scala-library.jar -cp example_2.10-0.1.jar:leveldbjni-all-1.7.jar Example

任何想法为什么只有在sbt下有一个UnsatisfiedLinkError?

解决方法

Any ideas why there’s an UnsatisfiedLinkError only under sbt?

@juereth评论说:

Sbt is using magic classloaders to try to prevent “leaks” of native loaded libraries,and allow you to re-import the library multiple times. Sbt will actually rename the DLL/SO/jnilib and load it in a special classloader. I’m not positive if this is only a plugin feature,or something for all apps.

所以这是有点预期的行为与目前的sbt设计。如果分叉工作,那么这就是你要做的事情。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐