added 64-bit library

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@11980 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
michelou 2007-06-11 15:34:04 +00:00
parent c01172f6fb
commit 97a8ab2c61
3 changed files with 2 additions and 1 deletions

BIN
test/files/jvm/libnatives-64.so Executable file

Binary file not shown.

View File

@ -1,6 +1,7 @@
object Test {
//println("java.library.path=" + System.getProperty("java.library.path"))
System.loadLibrary("natives")
val model = System.getProperty("sun.arch.data.model", "32")
System.loadLibrary("natives-" + model)
@native
def sayHello(s: String): String = null