• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

asdf/H03-May-2022-17,99914,853

sb-aclrepl/H31-Dec-2016-2,5172,041

sb-bsd-sockets/H31-Dec-2016-3,3412,525

sb-cltl2/H31-Dec-2016-1,6431,280

sb-concurrency/H31-Dec-2016-1,5711,217

sb-cover/H31-Dec-2016-827670

sb-executable/H31-Dec-2016-7664

sb-gmp/H31-Dec-2016-1,9481,642

sb-grovel/H31-Dec-2016-1,014833

sb-introspect/H31-Dec-2016-2,2401,689

sb-md5/H31-Dec-2016-766619

sb-mpfr/H31-Dec-2016-2,1571,860

sb-posix/H31-Dec-2016-3,2862,794

sb-queue/H31-Dec-2016-6238

sb-rotate-byte/H31-Dec-2016-652538

sb-rt/H31-Dec-2016-277225

sb-simple-streams/H03-May-2022-5,0113,844

sb-sprof/H31-Dec-2016-1,6381,188

READMEH A D31-Dec-20161.5 KiB3226

STANDARDSH A D31-Dec-20164.4 KiB11082

asdf-module.mkH A D31-Dec-20161.4 KiB4727

asdf-stub.lispH A D31-Dec-20163.3 KiB7162

code-extras.lispH A D31-Dec-2016515 2012

compiler-extras.lispH A D31-Dec-20166.6 KiB153103

stale-symbols.lispH A D31-Dec-20164.5 KiB10158

vanilla-module.mkH A D03-May-2022470 1611

README

1This directory is for extensions to SBCL. They aren't necessary for
2core SBCL functionality, or else they'd be built into the main SBCL
3binary automatically. And they're not portable Common Lisp, or they'd
4be put elsewhere (see http://sbcl.sf.net/libs.php for pointers)
5
6There are two kinds of contrib module in this directory:
7
8  * Newer contrib modules conform to the contrib standard (see
9    STANDARDS) and are automatically built and installed along with
10    SBCL itself.  Each of these is in its own subdirectory with a
11    Makefile, and can be loaded with REQUIRE.
12
13  * Older standalone files in the contrib directory itself are
14    effectively unpackaged and may or may not work with the current
15    SBCL version.
16
17Some good candidates for future extensions here are:
18  * bindings to existing foreign libraries (e.g. to a regexp library
19    like PCRE, or to a compression library like zlib, or to a graphics
20    library like Tk)
21  * new libraries (e.g. a CORBA interface)
22  * low-level hooks into SBCL needed to interface it to some wrapper
23    system (e.g. to interface to a graphical debugger of some sort)
24  * a too-alpha-to-be-supported-yet tree shaker
25
26SBCL extensions of less general interest, e.g. a binding to the C
27interface of the Oracle RDBMS, or particularly large extensions, e.g.
28big graphics frameworks, can also be associated with the SBCL project,
29but instead of being included in this directory as part of the
30distribution, they will be made available or linked to on the SBCL
31project web site.
32