Hi, <br><br>THANKS a lot for your contribution. I discovered your project through sqlite JDBC driver (<a href="http://www.zentus.com/sqlitejdbc/">http://www.zentus.com/sqlitejdbc/</a>), and it was tempting (to at least try) to compile some C/C++ exe file we need.<br>
As not being to familiar with C/C++, i thought the task was clearly impossible until I discovered a few days ago the excellente start guide (<a href="http://wiki.brianweb.net/NestedVM/QuickStartGuide">http://wiki.brianweb.net/NestedVM/QuickStartGuide</a>).<br>
<br>Everything went well and I compiled successfully the Hello World.<br><br>I then tried to compile exiv2, a utility for managing image metadata (<a href="http://www.exiv2.org/">http://www.exiv2.org/</a>).  The problem is that it&#39;s a g++ application, which might not be a problem. Maybe it&#39;s a make/makefile problem and I didn&#39;t give the right arguments <br>
<br>As you suggested, I added some properties to make<br>    <code>make CC=mips-unknown-elf-gcc LD=mips-unknown-elf-gcc CXX=</code><code>mips-unknown-elf-gcc</code><br><br>then make CC=mips-unknown-elf-g++  LD=mips-unknown-elf-g++ <br>
inspired from env.sh<br><br>but what to do with something like &quot;CXXCPP = g++ -E&quot; ?<br><br>so no sucess!<br>---<br>Another problem occured. I tried to test the Test class on a Windows XP machine. I created the runtime.jar.<br>
But on a cmd.exe prompt, <br><code><br><font size="2">&gt; java -cp runtime.jar Test<br>Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: Test<br>Caused by: java.lang.ClassNotFoundException: Test<br>        at java.net.URLClassLoader$1.run(Unknown Source)<br>
        at java.security.AccessController.doPrivileged(Native Method)<br>        at java.net.URLClassLoader.findClass(Unknown Source)<br>        at java.lang.ClassLoader.loadClass(Unknown Source)<br>        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)<br>
        at java.lang.ClassLoader.loadClass(Unknown Source)<br>        at java.lang.ClassLoader.loadClassInternal(Unknown Source)<br>Could not find the main class: Test.  Program will exit.</font><br><br><br><br></code>Again, I&#39;ve missed something! I might not have understanded your sentence:<br>
<br>    If you want to redistribute your binary you&#39;ll need to include the contents of <code>runtime.jar</code> with your application. <br>    You can build this by running <code>make runtime.jar</code>. (This isn&#39;t needed for the test above because env.sh sets the CLASSPATH for you.)<br>
<br>---<br>I&#39;m sorry if I&#39;ve spammed your mailbox with specific problem. I really like the idea about NestedVM being the somehow equivalent of Cygwin. Good luck with this project!<br>Best regards<br>Stéphane<br><br>