Hi, I have a bunch of C/C++ libraries and functions which I link with guile to build an extension of guile. I have compiled guile-2.2 on RHEL5 system and compiled and link my program with guile successfully but when I execute my program, it fails to compile guile modules. Environment variables GUILE_LOAD_PATH and GUILE_LOAD_COMPILED_PATH are set properly. Any help appreciated.
;;; compiling /ilx/fish_tools/share/guile/2.2/system/vm/vm.scm ;;; compiling /ilx/fish_tools/share/guile/2.2/system/base/compile.scm ;;; it seems /ilx/fish_tools/share/guile/2.2/system/base/compile.scm ;;; is part of the compiler; skipping auto-compilation ;;; compiling /ilx/fish_tools/share/guile/2.2/system/base/syntax.scm ;;; WARNING: compilation of /ilx/fish_tools/share/guile/2.2/system/base/syntax.scm failed: ;;; ERROR: In procedure variable-ref: variable is unbound: #<variable 8f896d8 value: #<undefined>> ;;; compiling /ilx/fish_tools/share/guile/2.2/system/base/message.scm ;;; WARNING: compilation of /ilx/fish_tools/share/guile/2.2/system/base/message.scm failed: ;;; ERROR: In procedure variable-ref: variable is unbound: #<variable 8f896d8 value: #<undefined>> ......... ;;; compiling /ilx/fish_tools/share/guile/2.2/language/bytecode/spec.scm ;;; WARNING: compilation of /ilx/fish_tools/share/guile/2.2/language/bytecode/spec.scm failed: ;;; ERROR: no such language bytecode .......... ;;; compiling /ilx/fish_tools/share/guile/2.2/language/scheme/decompile-tree-il.scm ;;; WARNING: compilation of /ilx/fish_tools/share/guile/2.2/language/scheme/decompile-tree-il.scm failed: ;;; ERROR: no such language scheme ...... ;;; compiling /ilx/fish_tools/share/guile/2.2/language/tree-il/debug.scm ;;; WARNING: compilation of /ilx/fish_tools/share/guile/2.2/language/tree-il/debug.scm failed: ;;; ERROR: no such language tree-il Thanks - Vijay