chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] Strange behaviour of "(use (prefix <module> <prefix>


From: Martin Schneeweis
Subject: Re: [Chicken-users] Strange behaviour of "(use (prefix <module> <prefix>))"
Date: Tue, 19 Jun 2018 21:36:58 +0200

Hi,

found the problem (nevertheless strange that 1 "prefix" does not make a
problem):

> I compile with the following statements:
> 
>   csc -s A.scm 
>   csc -s B.scm
>   csc C.scm

The solution is:

  csc -s -J A.scm
  csc -s A.import.scm

  csc -s -J B.scm
  csc -s B.import.scm

  csc C_2.scm

Now there are 2 warnings

  Warning: extension `A' is currently not installed
  Warning: extension `B' is currently not installed

but the compile process succeeds.

Martin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]