gcc's cc1 runs!
[nestedvm.git] / src / org / ibex / nestedvm / RuntimeCompiler.java
index 78b4e9a..a722d9c 100644 (file)
@@ -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();