"Tomas By" <to...@basun.net> writes:

> I have an extended Guile interpreter with a C function "get-map",
> defined by "scm_c_define_gsubr", that I then try to use in the
> (pure Scheme) module "mapdisplay", with the following result:
>
> [snip]
>
> Any ideas what is happening here? How can I debug it?

Having read the rest of this thread so far, I suggest that you put your
built-in functions into a module which can then be loaded by your pure
Scheme functions.

You need to do something like this:

  static SCM
  my_func (SCM arg)
  {
    /* ... blah blah ... */
  }

  static void
  init_builtins_module ()
  {
    scm_c_define_gsubr ("my-func", 1, 0, 0, my_func);
    scm_c_export ("my-func", NULL);
  }

  void
  init_builtins ()
  {
    scm_c_define_module ("myapp builtins",
                         init_builtins_module,
                         NULL);
  }

Then in your pure Scheme module, you can add:

  (use-modules (myapp builtins))

I hope that helps.

Regards,

                             Peter

-- 
Peter Brett <pe...@peter-b.co.uk>
Remote Sensing Research Group
Surrey Space Centre


Reply via email to