Re: Removing GNU Classpath
Dalibor Topic <[email protected]> Tue, 07 Oct 2008 17:04:40 +0200
| Newsgroups | gmane.comp.java.vm.kaffe.general |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > Hi all, > I would like to port kaffe to a very very resource constraint hardware > and i am thinking to remove the dependence of the GNU Classpath and > load base classes one by one (from sum or other ones). I think I just > need Object because I will remove the dependence of String from the > main entry etc... > > Please, Any help on removing GNU Classpath lib? > Hi Alexe, you can certainly do that, but you'll need to implement some kind of VM interface for the class library you want to use in the VM. Take a look at the native code for the VM* interfaces from GNU Classpath to get a rough idea how that works, and then spend some time to understand and implement the corresponding functionality for your desired class library. cheers, dalibor topic