Re: [tcljava-user] Tclblend.dll dependencies
Brought to you by:
mdejong
From: Mo D. <md...@un...> - 2005-06-30 09:12:32
|
On Thu, 9 Jun 2005 23:07:06 +0200 "Luca" <luc...@al...> wrote: > Hello, Hello Luca > i followed http://wiki.tcl.tk/9993 this step-by-step installation. after > some retry i could be able to complete point eight. > couldn't load library "C:/Programmi/Eggdrop/lib/tcljava1.3.1/tclblend.dll": > this library or a dependent library could not be found in library path > using depends.exe to find dll dependencies, I found that jvm.dll is not > located by system. So I took it from > C:\Programmi\Borland\JBuilder2005\jdk1.4\jre\bin\client and copied to: > C:/Programmi/Eggdrop/lib/tcljava1.3.1/ Umm, I don't think that is going to work. The JVM dlls need to stay in the directories they live in the JDK install tree. The issue here is that the PATH does not include one or more of the directories that it needs to find all the dlls. Now, you mentioned that you were able to start the jtclsh script that was installed when you ran "make install" from the Tcl Blend build directory, right? When you ran "make install" in the Tcl Blend build directory, did it print the following message near the end? "Installed program is working correctly" or did it print this: "Installed program is not working correctly, please recheck installation" See, the "make install" step will do a test run of Tcl Blend via the jtclsh script to make sure the paths are correct. So, this is likely the most simple place to start looking. If it printed the "working correctly" message then you should be able to run jtclsh and type "package require java" to load Tcl Blend. cheers Mo DeJong |