|
[Sbcl-commits] CVS: sbcl README,1.1.1.1,1.2 clean.sh,1.8,1.9 version.lisp-expr,1.397,1.398
From: William Harold Newman <wnewman@us...> - 2002-04-26 14:40
|
Update of /cvsroot/sbcl/sbcl
In directory usw-pr-cvs1:/tmp/cvs-serv8104
Modified Files:
README clean.sh version.lisp-expr
Log Message:
0.7.3.4:
small cleanups...
...clean.sh should remove more stuff, notably *.orig files.
...s/might-contain-other-types?/might-contain-other-types-p/
...DB README note suggestion from sbcl-devel 2002-04
Index: README
===================================================================
RCS file: /cvsroot/sbcl/sbcl/README,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** README 18 Sep 2000 01:26:27 -0000 1.1.1.1
--- README 26 Apr 2002 14:40:47 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ GENERAL INFORMATION
+
Welcome to SBCL.
***************
*** 21,22 ****
--- 23,37 ----
sbcl-help@...
sbcl-devel@...
+
+
+ SYSTEM-SPECIFIC HINTS
+
+ for OpenBSD:
+ It's reported for CMU CL (by Darren Bane on the comp.lang.lisp newsgroup,
+ 2002-04-22) that OpenBSD 3.0 has stricter ulimit values, and/or enforces
+ them more strictly, than its predecessors, and so CMU CL's initial mmap()
+ won't work unless you increase the limit on the data segment, e.g. with
+ ulimit -S -d 524288
+ before you run CMU CL. The same is probably true of SBCL, but hasn't been
+ tested yet. (As of sbcl-0.7.3, SBCL has only been tested on OpenBSD 2.9
+ and earlier.)
Index: clean.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/clean.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** clean.sh 25 Mar 2002 18:25:03 -0000 1.8
--- clean.sh 26 Apr 2002 14:40:47 -0000 1.9
***************
*** 39,43 ****
# files. Some explanations:
# (symlinks)
! # are never in the sources; they must've been created
# sbcl
# the runtime environment, created by compiling C code
--- 39,43 ----
# files. Some explanations:
# (symlinks)
! # are never in the sources, so must've been created
# sbcl
# the runtime environment, created by compiling C code
***************
*** 56,62 ****
# looks like SBCL SAVE-LISP-AND-DIE or GENESIS output, and
# certainly not source
! # *~, #*#, TAGS
# common names for editor temporary files
! # .#*
# rubbish left behind by CVS updates
# *.htm, *.html
--- 56,64 ----
# looks like SBCL SAVE-LISP-AND-DIE or GENESIS output, and
# certainly not source
! # *~, #*#
# common names for editor temporary files
! # TAGS, tags
! # files created by GNU etags and ctags
! # .#*, *.orig, .*.orig
# rubbish left behind by CVS updates
# *.htm, *.html
***************
*** 65,70 ****
# depend
# made by "make depend" (or "gmake depend" or some such thing)
! # *.x86f, *.axpf, *.lbytef, *.fasl
! # typical extensions for fasl files
find . \( \
-type l -o \
--- 67,73 ----
# depend
# made by "make depend" (or "gmake depend" or some such thing)
! # *.lisp-obj, *.fasl, *.x86f, *.axpf, *.lbytef, *.lib
! # typical extensions for fasl files (not just from SBCL, but
! # from other Lisp systems which might be used as xc hosts)
find . \( \
-type l -o \
***************
*** 72,75 ****
--- 75,80 ----
-name '#*#' -o \
-name '.#*' -o \
+ -name '*.orig' -o \
+ -name '.*.orig' -o \
-name '?*.x86f' -o \
-name '?*.axpf' -o \
***************
*** 92,94 ****
--- 97,100 ----
-name '*.html' -o \
-name 'TAGS' -o \
+ -name 'tags' -o \
-name 'local-target-features.lisp-expr' \) -print | xargs rm -f
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.397
retrieving revision 1.398
diff -C2 -d -r1.397 -r1.398
*** version.lisp-expr 26 Apr 2002 13:21:54 -0000 1.397
--- version.lisp-expr 26 Apr 2002 14:40:47 -0000 1.398
***************
*** 19,21 ****
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
! "0.7.3.3"
--- 19,21 ----
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
! "0.7.3.4"
|
| Thread | Author | Date |
|---|---|---|
| [Sbcl-commits] CVS: sbcl README,1.1.1.1,1.2 clean.sh,1.8,1.9 version.lisp-expr,1.397,1.398 | William Harold Newman <wnewman@us...> |