[plt-scheme] Inter-extension dependancies

From: Eli Barzilay (eli at barzilay.org)
Date: Fri Oct 22 20:49:58 EDT 2004

On Oct 22, Dmitriy.Zavin at infineon.com wrote:
> I have 2 sets of extensions linked as shared libs (A and B). A uses
> some functions from B.
> 
> So I (load-extension B) first. When I try to (load-extension A),
> mzscheme complains that it cannot find the symbol which was actually
> loaded as part of extension B. What gives? Is there any way to
> achieve the above without compiling them both into 1 monolithic
> extension?

MzScheme does the standard thing of loading a shared object into
memory.  Whetever problems you have are a result of that.

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                  http://www.barzilay.org/                 Maze is Life!


Posted on the users mailing list.