unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Re: problems in guile installation,help me
       [not found] <20061202033711.76193.qmail@web37713.mail.mud.yahoo.com>
@ 2006-12-02  4:16 ` Jon Wilson
  2006-12-02  4:37   ` about libtool Gopi kumaran
  0 siblings, 1 reply; 2+ messages in thread
From: Jon Wilson @ 2006-12-02  4:16 UTC (permalink / raw)


Hi Gopi,
It is best if write replies not to me but to guile-user@gnu.org.  That 
way everyone on the list can see and help.  I'm no guru, so it is quite 
probable that you'll run into something I can't fix, or that I don't 
know the best way to fix.

Do you know what libc you are using?  That might help with the alloca 
problem.  It looks to me like a bug (whether in guile, or in gnu 
autotools, or in BSD's libc I don't know), and it'd be best if we could 
figure out how to prevent it from happening again for anyone else.

About the first problem you had, with the guile configure script being 
unable to find libtool:  did you reboot your machine or anything like 
that in between having the problem and not having the problem?  These 
bugs which spontaneously disappear are the hardest to fix permanently.
Regards,
Jon

Gopi kumaran wrote:
> Hi Jon
> Thanks for the reply.Now i dont have a problem with alloca what i did 
> is i went to /usr/include/libguile/eval.c line number 50 and commented 
> #define alloca _alloca.I didnt get that redefined problem again.But 
> after seeing ur mail i removed the comment and added
> #undef alloca in line 43.Now make runs without any problem.The crazy 
> thing is even after i remove the comment and removed the undef 
> alloca(which u said,just to check what will happen), i was shocked 
> that i didnt get any error of alloca redfined :).I dont know why this 
> make , ./configure behaves differently sometimes.anyhow iam continuing 
> with ur #undef on line 43 to next error i.e permission denied.let me 
> see that and reply u in another mail.
>  
> Gopi
>
>
> */Jon Wilson <j85wilson@fastmail.fm>/* wrote:
>
>     Hi Gopi,
>     Try adding, in eval.c, a line just before line 44, which is as
>     follows:
>
>     #undef alloca
>
>     See if that works. If so, I would file a bug report, with details
>     about
>     your BSD system, and what you had to do to make it work.
>
>     I'm doubtful that this is a real solution to the underlying
>     problem, but
>     it should be a quick fix that gets you up and running with guile.
>     Regards,
>     Jon
>
>     Gopi kumaran wrote:
>     > Hi Jon,
>     > Thanks for your reply. I somehow solved that problem. Now I am
>     getting
>     > a new error in make command in guile. The error says that
>     > eval.c:44:1: "alloca" redefined
>     > In file included from ../libguile/scmconfig.h:29,
>     > from ../libguile/__scm.h:76,
>     > from eval.c:36:
>     > /usr/include/stdlib.h:230:1: this is the location of the
>     > previous definition
>     > Error code 1
>     >
>     >
>     >
>     > Expecting your early reply
>     >
>     > regards
>     > Gopi
>     >
>     > */Jon Wilson /* wrote:
>     >
>     > Hi Gopi,
>     > Could you please send plain text emails with the actual message in
>     > the
>     > body of the email rather than an attached forwarded message? This
>     > sort
>     > of thing is slightly annoying and makes it slightly more difficult
>     > for
>     > us to help you.
>     >
>     > I'm not really familiar with the BSDs, but perhaps you need to run
>     > ldconfig (8).
>     >
>     > From the manpage:
>     >
>     > "/sbin/ldconfig - configure dynamic linker run time bindings"
>     >
>     > This is often required after installing new shared libraries. If you
>     > forget this step, the dynamic loader doesn't know where to find the
>     > libs, regardless of them being in the correct directory. Also,
>     before
>     > running ldconfig (as root, btw), make sure that the directory your
>     > new
>     > shared libs are in is listed in /etc/ld.so.conf, otherwise
>     > ldconfig will
>     > not think to look there.
>     >
>     > Of course, I don't know that BSD uses the same dynamic loading
>     > system as
>     > linux, so if you don't find ldconfig or ld.so.conf, ignore this
>     > message.
>     >
>     > Hope that helps.
>     >
>     > Regards,
>     > Jon
>     >
>     >
>     >
>     >
>     >
>     ------------------------------------------------------------------------
>     > Want to start your own business? Learn how on Yahoo! Small
>     Business.
>     >
>
>
>
>
>     _______________________________________________
>     Guile-user mailing list
>     Guile-user@gnu.org
>     http://lists.gnu.org/mailman/listinfo/guile-user
>
>
>
>
> ------------------------------------------------------------------------
> Need a quick answer? Get one in minutes from people who know. Ask your 
> question on Yahoo! Answers 
> <http://answers.yahoo.com/;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOARfcwMzOTY1NDUxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx>. 




_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 2+ messages in thread

* about libtool
  2006-12-02  4:16 ` problems in guile installation,help me Jon Wilson
@ 2006-12-02  4:37   ` Gopi kumaran
  0 siblings, 0 replies; 2+ messages in thread
From: Gopi kumaran @ 2006-12-02  4:37 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 4660 bytes --]

I dont know what libc iam using.How to check it .coming to libtool problem.I installed libtool and run ./configure --prefix=/usr && make && make install.It worked well with ./configure command in guile
  

Jon Wilson <j85wilson@fastmail.fm> wrote:
  Hi Gopi,
It is best if write replies not to me but to guile-user@gnu.org. That 
way everyone on the list can see and help. I'm no guru, so it is quite 
probable that you'll run into something I can't fix, or that I don't 
know the best way to fix.

Do you know what libc you are using? That might help with the alloca 
problem. It looks to me like a bug (whether in guile, or in gnu 
autotools, or in BSD's libc I don't know), and it'd be best if we could 
figure out how to prevent it from happening again for anyone else.

About the first problem you had, with the guile configure script being 
unable to find libtool: did you reboot your machine or anything like 
that in between having the problem and not having the problem? These 
bugs which spontaneously disappear are the hardest to fix permanently.
Regards,
Jon

Gopi kumaran wrote:
> Hi Jon
> Thanks for the reply.Now i dont have a problem with alloca what i did 
> is i went to /usr/include/libguile/eval.c line number 50 and commented 
> #define alloca _alloca.I didnt get that redefined problem again.But 
> after seeing ur mail i removed the comment and added
> #undef alloca in line 43.Now make runs without any problem.The crazy 
> thing is even after i remove the comment and removed the undef 
> alloca(which u said,just to check what will happen), i was shocked 
> that i didnt get any error of alloca redfined :).I dont know why this 
> make , ./configure behaves differently sometimes.anyhow iam continuing 
> with ur #undef on line 43 to next error i.e permission denied.let me 
> see that and reply u in another mail.
> 
> Gopi
>
>
> */Jon Wilson /* wrote:
>
> Hi Gopi,
> Try adding, in eval.c, a line just before line 44, which is as
> follows:
>
> #undef alloca
>
> See if that works. If so, I would file a bug report, with details
> about
> your BSD system, and what you had to do to make it work.
>
> I'm doubtful that this is a real solution to the underlying
> problem, but
> it should be a quick fix that gets you up and running with guile.
> Regards,
> Jon
>
> Gopi kumaran wrote:
> > Hi Jon,
> > Thanks for your reply. I somehow solved that problem. Now I am
> getting
> > a new error in make command in guile. The error says that
> > eval.c:44:1: "alloca" redefined
> > In file included from ../libguile/scmconfig.h:29,
> > from ../libguile/__scm.h:76,
> > from eval.c:36:
> > /usr/include/stdlib.h:230:1: this is the location of the
> > previous definition
> > Error code 1
> >
> >
> >
> > Expecting your early reply
> >
> > regards
> > Gopi
> >
> > */Jon Wilson /* wrote:
> >
> > Hi Gopi,
> > Could you please send plain text emails with the actual message in
> > the
> > body of the email rather than an attached forwarded message? This
> > sort
> > of thing is slightly annoying and makes it slightly more difficult
> > for
> > us to help you.
> >
> > I'm not really familiar with the BSDs, but perhaps you need to run
> > ldconfig (8).
> >
> > From the manpage:
> >
> > "/sbin/ldconfig - configure dynamic linker run time bindings"
> >
> > This is often required after installing new shared libraries. If you
> > forget this step, the dynamic loader doesn't know where to find the
> > libs, regardless of them being in the correct directory. Also,
> before
> > running ldconfig (as root, btw), make sure that the directory your
> > new
> > shared libs are in is listed in /etc/ld.so.conf, otherwise
> > ldconfig will
> > not think to look there.
> >
> > Of course, I don't know that BSD uses the same dynamic loading
> > system as
> > linux, so if you don't find ldconfig or ld.so.conf, ignore this
> > message.
> >
> > Hope that helps.
> >
> > Regards,
> > Jon
> >
> >
> >
> >
> >
> ------------------------------------------------------------------------
> > Want to start your own business? Learn how on Yahoo! Small
> Business.
> >
>
>
>
>
> _______________________________________________
> Guile-user mailing list
> Guile-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/guile-user
>
>
>
>
> ------------------------------------------------------------------------
> Need a quick answer? Get one in minutes from people who know. Ask your 
> question on Yahoo! Answers 
> . 




_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user





 
---------------------------------
Access over 1 million songs - Yahoo! Music Unlimited.

[-- Attachment #1.2: Type: text/html, Size: 6082 bytes --]

[-- Attachment #2: Type: text/plain, Size: 140 bytes --]

_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-12-02  4:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20061202033711.76193.qmail@web37713.mail.mud.yahoo.com>
2006-12-02  4:16 ` problems in guile installation,help me Jon Wilson
2006-12-02  4:37   ` about libtool Gopi kumaran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).