Re: building from the sources

2009-07-28 Thread Yuri Gaevsky
... and on Solaris-x86 too, please see [1] for instructions. -Yuri [1] http://mail.openjdk.java.net/pipermail/mlvm-dev/2009-June/000768.html Tobias Ivarsson wrote: > The bsd-port builds on Linux as well. > > You might need a few patches though. > This thread was helpful for me when I rebased t

Re: updated RI code and API javadoc

2009-06-30 Thread Yuri Gaevsky
: java.lang.UnsupportedOperationException: NYI Note that NPE is not documented anywhere in the class though it looks reasonable for all methods there. Best regards, -Yuri Yuri Gaevsky wrote: > John, > > A couple of minor comments regarding the latest java.dyn.* javadoc: > > a) "Requirements

Re: updated RI code and API javadoc

2009-06-27 Thread Yuri Gaevsky
John, A couple of minor comments regarding the latest java.dyn.* javadoc: a) "Requirements for Writing Java API Specifications" [1] specifies under the heading "Method Specification", item number 4: Null Argument Values - For each reference type argument, specify the behavior w

Re: Simple dynamic language using invokedynamic

2009-06-24 Thread Yuri Gaevsky
Hi Jochen, If you were able to build the openjdk and only have issues with applying mlvm patches to bsd-port sources then I will try to help. Assuming that you are in "~/Projects/davinci" directory please use the following commands (after rm -rf sources && rm -rf patches): # hg fclone http://hg.

bootstrap method registration is enabled AFTER class initialization

2009-06-05 Thread Yuri Gaevsky
Hi John, The following program: --- LinkageTest.java --- import java.dyn.*; import java.io.*; public class LinkageTest { public static void main(String[] argv) { System.exit(run(argv, System.out)); } public static int run(String[] argv, PrintStream out) { Linka