[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: setting env variable from Guile
From: |
Aurelien Chanudet |
Subject: |
Re: setting env variable from Guile |
Date: |
Fri, 29 Jul 2005 17:32:47 +0200 |
Thank you guys for the tip.
Unfortunately, the environnement variable set in this way doesn't
appear to be visible from the shell guile was launched from. As a
result, the environnement variable does not appear to be visible to
the dynamic link editor.
On 7/29/05, José Roberto B. de A. Monteiro <address@hidden> wrote:
> On Thu, Jul 28, 2005 at 05:55:59PM +0200, Aurelien Chanudet wrote:
> > Hi all,
> >
> > I have a dynamic library located in a non standard
> > place I'd like to load within guile using
> > "dynamic-link". The dynamic link editor can be told
> > where to look for the library using an environment
> > variable. Is there a way to set up the environnement
> > variable directly _from_ Guile using for instance the
> > "system" primitive ?
>
> Have you ever tried to use Guile primitive function setenv ?
>
> (setenv name value)
>
>
>