X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fnestedvm%2FRuntimeCompiler.java;fp=src%2Forg%2Fibex%2Fnestedvm%2FRuntimeCompiler.java;h=a722d9c7bdff407eaa84396dc68a824e2705b4c0;hp=78b4e9adf142da1a57d9e27847365d0c8881ea00;hb=cc4469a3b4c4fc1c5070e539f53a3e4cca0b8c75;hpb=47e2513b584db639600b57c79be03093f99b0073 diff --git a/src/org/ibex/nestedvm/RuntimeCompiler.java b/src/org/ibex/nestedvm/RuntimeCompiler.java index 78b4e9a..a722d9c 100644 --- a/src/org/ibex/nestedvm/RuntimeCompiler.java +++ b/src/org/ibex/nestedvm/RuntimeCompiler.java @@ -18,7 +18,7 @@ public class RuntimeCompiler { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ClassFileCompiler c = new ClassFileCompiler(data,className,baos); // FEATURE: make this Optional, pass options on compile arguments - c.parseOptions("unixruntime"); + c.parseOptions("unixruntime,nosupportcall"); c.go(); baos.close(); byte[] bytecode = baos.toByteArray();