Message from discussion
How to step through code in common lisp?
Received: by 10.224.220.12 with SMTP id hw12mr14303843qab.8.1349115666490;
Mon, 01 Oct 2012 11:21:06 -0700 (PDT)
Received: by 10.236.149.66 with SMTP id w42mr2228231yhj.18.1349115666469; Mon,
01 Oct 2012 11:21:06 -0700 (PDT)
Path: e10ni152738182qan.0!nntp.google.com!l8no20350214qao.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail
Newsgroups: comp.lang.lisp
Date: Mon, 1 Oct 2012 11:21:06 -0700 (PDT)
In-Reply-To: <212abc27-dbcf-42c6-8f5f-1143903e54a8@googlegroups.com>
Complaints-To: groups-abuse@google.com
Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=192.138.178.130;
posting-account=AvekzAoAAABj-TclKcOWQmXwA49MFPGX
NNTP-Posting-Host: 192.138.178.130
References: <17de15bd-b5ed-44f9-9495-80d571038399@googlegroups.com>
<20120930215042.469a62ba@terabyte> <87ehlixy2e.fsf@kuiper.lan.informatimago.com>
<9e9ec5c7-0590-4904-b8bd-835b01f7f49e@googlegroups.com> <87626uxkm0.fsf@kuiper.lan.informatimago.com>
<212abc27-dbcf-42c6-8f5f-1143903e54a8@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ae2e2f6a-eac8-4b8d-be4c-6d8e266fc50b@googlegroups.com>
Subject: Re: How to step through code in common lisp?
From: "Yves S. Garret" <yoursurrogate...@gmail.com>
Injection-Date: Mon, 01 Oct 2012 18:21:06 +0000
Content-Type: text/plain; charset=ISO-8859-1
On Monday, October 1, 2012 2:11:02 PM UTC-4, Yves S. Garret wrote:
> On Monday, October 1, 2012 11:44:40 AM UTC-4, informatimago wrote:
>
> > "Yves S. Garret" <yoursurrogate...@gmail.com> writes:
>
> >
>
> >
>
> >
>
> > > informatimago, how would you actually load those libraries? I got the repository for that:
>
> >
>
> >
>
> >
>
> > I told you:
>
> >
>
> >
>
> >
>
> > >> cl-user> (ql:quickload :com.informatimago.common-lisp.lisp.stepper)
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > > $ git clone git://gitorious.org/com-informatimago/com-informatimago.git
>
> >
>
> > > Cloning into 'com-informatimago'...
>
> >
>
> > > remote: Counting objects: 3029, done.
>
> >
>
> > > remote: Compressing objects: 100% (2070/2070), done.
>
> >
>
> > > Receiving objectsremote: Total 3029 (delta 2154), reused 1450 (delta 916)
>
> >
>
> > > Receiving objects: 100% (3029/3029), 2.87 MiB | 593 KiB/s, done.
>
> >
>
> > > Resolving deltas: 100% (2154/2154), done.
>
> >
>
> > > Checking out files: 100% (421/421), done.
>
> >
>
> > >
>
> >
>
> > > Now, how can I get common lisp to "see" this library so that I can use it?
>
> >
>
> >
>
> >
>
> > Now, since I may commit new features or bug corrections at any time, and
>
> >
>
> > since quicklisp only updates once a month, you may want to clone the
>
> >
>
> > repository directly until next month. In that case, do it in
>
> >
>
> > ~/quicklisp/local-projects and keep using the quickload form above.
>
> >
>
> >
>
> >
>
> > --
>
> >
>
> > __Pascal Bourguignon__ http://www.informatimago.com/
>
> >
>
> > A bad day in () is better than a good day in {}.
>
>
>
> Right, but how does quickload know where those libraries are located?
>
>
>
> This is what I tried and the result that I got:
>
>
>
>
>
> [1]> (ql:quickload :com.informatimago.common-lisp.lisp.stepper)
>
>
>
> *** - READ from #<INPUT CONCATENATED-STREAM #<INPUT STRING-INPUT-STREAM> #<IO TERMINAL-STREAM>>: there is no package with name "QL"
>
> The following restarts are available:
>
> ABORT :R1 Abort main loop
>
> Break 1 [2]>
>
>
>
>
>
> I don't really understand how to do this.
Durr, quicklisp, just got it installed, am playing with it now. Will get back to you on my progress.