> Just found out that, although my recompiling has overwritten the old > dll, reverting the neko code shows that it still writes "hello world". > I've definitely overwritten the dll..... Is there a cache somewhere? > > Mike
No, there is only cache of DLLs _while_ the VM is running. The only problems can be : a) that the VM is loading an old version of your DLL, because it's available somewhere else with an higher search priority b) that you're compiling while the VM is still running (in that case, VC2003 should display an error saying he can't overwrite nekotest.dll when linking) Nicolas -- Neko : One VM to run them all (http://nekovm.org)
