Re: Compiling Scala-generated bytecode

Andrew Haley <[email protected]> Mon, 20 Oct 2014 09:04:09 +0100
Newsgroups gmane.comp.gcc.java.patches
Message-ID <[email protected]>
On 20/10/14 07:19, Marko Dimjašević wrote:
> All of these undefined reference classes are in scala-library-2.9.2.jar. What am I missing?

You have to link with the Scala library, either directly or indirectly.
You will want to compile the library to a shared object.

Before explaining any more, do you have experience with shared
libraries in C and C++?

Andrew.