From: Jens Teich
Subject: problem starting sbcl
Date: 
Message-ID: <uwswompa9.fsf@jensteich.de>
login as: jens
Password:
Last login: Wed Jul 25 17:26:00 2007 from p548ef4d7.dip.t-dialin.net
Have a lot of fun...
····@h968740:~> screen -S lisp sbcl
This is SBCL 1.0.7, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.

; in: LAMBDA NIL
;     ASDF::FORMAT-ARGUMENTS
;
; caught STYLE-WARNING:
;   undefined function: FORMAT-ARGUMENTS

;     ASDF::FORMAT-CONTROL
;
; caught STYLE-WARNING:
;   undefined function: FORMAT-CONTROL

;
; caught STYLE-WARNING:
;   These functions are undefined:
;     FORMAT-ARGUMENTS FORMAT-CONTROL
;
; compilation unit finished
;   caught 3 STYLE-WARNING conditions

; in: LAMBDA NIL
;     ASDF:ERROR-COMPONENT
;
; caught STYLE-WARNING:
;   undefined function: ERROR-COMPONENT

;     ASDF:ERROR-OPERATION
;
; caught STYLE-WARNING:
;   undefined function: ERROR-OPERATION

;
; caught STYLE-WARNING:
;   These functions are undefined:
;     ERROR-COMPONENT ERROR-OPERATION
;
; compilation unit finished
;   caught 3 STYLE-WARNING conditions

; in: LAMBDA NIL
;     ASDF::COMPONENT-VISITED-P
;
; caught STYLE-WARNING:
;   undefined function: COMPONENT-VISITED-P

;
; caught STYLE-WARNING:
;   This function is undefined:
;     COMPONENT-VISITED-P
;
; compilation unit finished
;   caught 2 STYLE-WARNING conditions

; in: LAMBDA NIL
;     ASDF:LOAD-PREFERENCES
;
; caught STYLE-WARNING:
;   undefined function: LOAD-PREFERENCES

;
; caught STYLE-WARNING:
;   This function is undefined:
;     LOAD-PREFERENCES
;
; compilation unit finished
;   caught 2 STYLE-WARNING conditions

; in: LAMBDA NIL
;     ASDF::%REMOVE-COMPONENT-INLINE-METHODS
;
; caught STYLE-WARNING:
;   undefined function: %REMOVE-COMPONENT-INLINE-METHODS

;     ASDF::CHECK-COMPONENT-INPUT
;
; caught STYLE-WARNING:
;   undefined function: CHECK-COMPONENT-INPUT

;
; caught STYLE-WARNING:
;   These functions are undefined:
;     %REMOVE-COMPONENT-INLINE-METHODS CHECK-COMPONENT-INPUT
;
; compilation unit finished
;   caught 3 STYLE-WARNING conditions

; in: LAMBDA NIL
;     ASDF::SYSDEF-ERROR-COMPONENT
;
; caught STYLE-WARNING:
;   undefined function: SYSDEF-ERROR-COMPONENT

;
; caught STYLE-WARNING:
;   This function is undefined:
;     SYSDEF-ERROR-COMPONENT
;
; compilation unit finished
;   caught 2 STYLE-WARNING conditions
* (asdf:operate 'asdf:load-op :swank)

; loading system definition from /home/jens/lisp/swank.asd into
; #<PACKAGE "ASDF0">
; registering #<SYSTEM :SWANK {ADAD1B9}> as SWANK
;; loading #P"/home/jens/.slime/fasl/2006-04-20/sbcl-1.0.7-linux-x86/swank-backend.fasl"
;; loading #P"/home/jens/.slime/fasl/2006-04-20/sbcl-1.0.7-linux-x86/nregex.fasl"

; compiling file "/home/jens/lisp/slime-2.0/swank-sbcl.lisp" (written 19 APR 2006 11:18:53 AM):

debugger invoked on a UNDEFINED-FUNCTION in thread #<THREAD "initial thread" {A69E6D1}>:
  The function ASDF::MODULE-PROVIDE-ASDF is undefined.

Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL.

restarts (invokable by number or by possibly-abbreviated name):
  0: [RETRY ] Retry performing #<ASDF:LOAD-OP NIL {AC99611}> on
              #<ASDF:CL-SOURCE-FILE "swank-loader" {AE444C9}>.
  1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {AC99611}> on
              #<ASDF:CL-SOURCE-FILE "swank-loader" {AE444C9}> as having been
              successful.
  2: [ABORT ] Exit debugger, returning to top level.

("bogus stack frame")
0]

;;;;;;;;;;;

Thanks for any hints

Jens

-- 
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

From: Tamas Papp
Subject: Re: problem starting sbcl
Date: 
Message-ID: <874pjs78ed.fsf@pu100877.student.princeton.edu>
Jens Teich <····@jensteich.de> writes:

> login as: jens
> Password:
> Last login: Wed Jul 25 17:26:00 2007 from p548ef4d7.dip.t-dialin.net
> Have a lot of fun...
> ····@h968740:~> screen -S lisp sbcl
> This is SBCL 1.0.7, an implementation of ANSI Common Lisp.
> More information about SBCL is available at <http://www.sbcl.org/>.
>
> SBCL is free software, provided as is, with absolutely no warranty.
> It is mostly in the public domain; some portions are provided under
> BSD-style licenses.  See the CREDITS and COPYING files in the
> distribution for more information.
>
> ; in: LAMBDA NIL
> ;     ASDF::FORMAT-ARGUMENTS
> ;
> ; caught STYLE-WARNING:
> ;   undefined function: FORMAT-ARGUMENTS

what's in your ~/.sbclrc?

Tamas
From: Jens Teich
Subject: Re: problem starting sbcl
Date: 
Message-ID: <usl7cmnke.fsf@jensteich.de>
Tamas Papp <······@gmail.com> writes:

> what's in your ~/.sbclrc?

(load #p"/home/jens/lisp/asdf.lisp")

(setf asdf:*central-registry*
  '(*default-pathname-defaults* #p"/home/jens/lisp/"))

(defun asdf (lib) (asdf:operate 'asdf:load-op lib))
From: Juho Snellman
Subject: Re: problem starting sbcl
Date: 
Message-ID: <slrnfaf0lh.gct.jsnell@sbz-30.cs.Helsinki.FI>
Jens Teich <····@jensteich.de> wrote:
> Tamas Papp <······@gmail.com> writes:
>
>> what's in your ~/.sbclrc?
>
> (load #p"/home/jens/lisp/asdf.lisp")

Replace this with (require :asdf). Swank wants to use REQUIRE to load
the sbcl contribs, and the needed hooks are only compiled into asdf
when it's built as part of the sbcl contrib process.

-- 
Juho Snellman
From: Jens Teich
Subject: Re: problem starting sbcl
Date: 
Message-ID: <uodi0mmp3.fsf@jensteich.de>
Juho Snellman <······@iki.fi> writes:

> Jens Teich <····@jensteich.de> wrote:
>> Tamas Papp <······@gmail.com> writes:
>>
>>> what's in your ~/.sbclrc?
>>
>> (load #p"/home/jens/lisp/asdf.lisp")
>
> Replace this with (require :asdf). Swank wants to use REQUIRE to load
> the sbcl contribs, and the needed hooks are only compiled into asdf
> when it's built as part of the sbcl contrib process.

Thanks that solves the problem.

Jens