From mail at chaitanyagupta.com Sat May 8 18:50:10 2010 From: mail at chaitanyagupta.com (Chaitanya Gupta) Date: Sun, 09 May 2010 00:20:10 +0530 Subject: [cl-ppcre-devel] Can't load cl-ppcre 2.0.3 in ECL Message-ID: <4BE5B262.30805@chaitanyagupta.com> Hi, I am trying to run cl-ppcre 2.0.3 in ECL but can't. I encounter this error while trying to load the library: CL-USER> (setf *compile-print* t *compile-verbose* t) T CL-USER> (setf *load-print* t *load-verbose* t) T CL-USER> (asdf:oos 'asdf:load-op :cl-ppcre) ;;; ;;; Compiling /home/chaitanya/lisp/libs/site/cl-ppcre/cl-ppcre-2.0.3/charmap.lisp. ;;; OPTIMIZE levels: Safety=2, Space=0, Speed=3, Debug=3 ;;; ;;; Compiling (DEFSTRUCT (CHARMAP #) ...). ;;; Compiling (DEFMETHOD MAKE-LOAD-FORM ...). ;;; Compiling (DEFUN IN-CHARMAP-P ...). ;;; Note: ;;; in file charmap.lisp, position 2381 ;;; at (DEFUN IN-CHARMAP-P ...) ;;; In function IN-CHARMAP-P, checking types of arguments CHAR CHARMAP. ;;; Note: ;;; in file charmap.lisp, position 2381 ;;; at (DEFUN IN-CHARMAP-P ...) ;;; Unable to emit check for variable (OPTIONAL-CHECK-TYPE CHARMAP CHARMAP) ;;; Note: ;;; in file charmap.lisp, position 2381 ;;; at (DEFUN IN-CHARMAP-P ...) ;;; Unable to emit check for variable (OPTIONAL-CHECK-TYPE CHAR CHARACTER) ;;; Error: ;;; in file charmap.lisp, position 2381 ;;; at (DEFUN IN-CHARMAP-P ...) ;;; * The argument 1 of function SBIT has type ;;; BIT-VECTOR ;;; instead of expected ;;; (SIMPLE-ARRAY BIT) ;;; Warning: COMPILE-FILE warned while performing # on #. ;;; Warning: COMPILE-FILE failed while performing # on #. ; Evaluation aborted. CL-USER> Is this error due to cl-ppcre or ECL? Thanks, Chaitanya -- http://chaitanyagupta.com/blog/ From juanjose.garciaripoll at googlemail.com Sun May 9 21:43:44 2010 From: juanjose.garciaripoll at googlemail.com (Juan Jose Garcia-Ripoll) Date: Sun, 9 May 2010 23:43:44 +0200 Subject: [cl-ppcre-devel] Can't load cl-ppcre 2.0.3 in ECL In-Reply-To: <4BE5B262.30805@chaitanyagupta.com> References: <4BE5B262.30805@chaitanyagupta.com> Message-ID: On Sat, May 8, 2010 at 8:50 PM, Chaitanya Gupta wrote: > Is this error due to cl-ppcre or ECL? You are probably using ECL from git/CVS. ECL has not yet reached a next release and I explicitly warned in the ECL mailing list that the current sources would be unstable for some time due to important changes that are happening in the compiler. The previous release of ECL builds cl-ppcre just fine. Juanjo -- Instituto de F?sica Fundamental, CSIC c/ Serrano, 113b, Madrid 28006 (Spain) http://tream.dreamhosters.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at chaitanyagupta.com Mon May 10 19:31:01 2010 From: mail at chaitanyagupta.com (Chaitanya Gupta) Date: Tue, 11 May 2010 01:01:01 +0530 Subject: [cl-ppcre-devel] Can't load cl-ppcre 2.0.3 in ECL In-Reply-To: References: <4BE5B262.30805@chaitanyagupta.com> Message-ID: <4BE85EF5.1000603@chaitanyagupta.com> Juan Jose Garcia-Ripoll wrote: > On Sat, May 8, 2010 at 8:50 PM, Chaitanya Gupta > wrote: > > Is this error due to cl-ppcre or ECL? > > > You are probably using ECL from git/CVS. You are right. I built ECL from git trunk. Thanks for letting me know - I will use a stable release. Chaitanya -- http://chaitanyagupta.com/blog/