Hi, joe <[email protected]> writes:
> Recently, we migrate scheme codes from v1.6.4 guile to v1.8.0 guile > and go to build. I warmly recommend 1.8.8, the latest release of the 1.8 series. > But, we get error message as below : > ERROR: In procedure primitive-load-path: > ERROR: Unable to find file > "../../sid1/opcodes/../cgen/cgen-opc.scm" in load path Dot-dot should be avoided in file names passed to ‘primitive-load-path’, since that procedure searches for the given file in ‘%load-path’ (info "(guile) Loading"). > 1. is there any change about file loading from v1.6.4 guile to v1.8.0 > guile? I don’t think so, but these are two very old releases. > 2. could you give me suggestion of how to debug guile or debug scheme > codes? For the problem at hand, you could try the ‘search-path’ procedure to see what happens, or use strace(1) to see where Guile is looking for this file. Hope this helps, Ludo’.
