|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| asdf/ | H | 03-May-2022 | - | 17,999 | 14,853 |
| sb-aclrepl/ | H | 31-Dec-2016 | - | 2,517 | 2,041 |
| sb-bsd-sockets/ | H | 31-Dec-2016 | - | 3,341 | 2,525 |
| sb-cltl2/ | H | 31-Dec-2016 | - | 1,643 | 1,280 |
| sb-concurrency/ | H | 31-Dec-2016 | - | 1,571 | 1,217 |
| sb-cover/ | H | 31-Dec-2016 | - | 827 | 670 |
| sb-executable/ | H | 31-Dec-2016 | - | 76 | 64 |
| sb-gmp/ | H | 31-Dec-2016 | - | 1,948 | 1,642 |
| sb-grovel/ | H | 31-Dec-2016 | - | 1,014 | 833 |
| sb-introspect/ | H | 31-Dec-2016 | - | 2,240 | 1,689 |
| sb-md5/ | H | 31-Dec-2016 | - | 766 | 619 |
| sb-mpfr/ | H | 31-Dec-2016 | - | 2,157 | 1,860 |
| sb-posix/ | H | 31-Dec-2016 | - | 3,286 | 2,794 |
| sb-queue/ | H | 31-Dec-2016 | - | 62 | 38 |
| sb-rotate-byte/ | H | 31-Dec-2016 | - | 652 | 538 |
| sb-rt/ | H | 31-Dec-2016 | - | 277 | 225 |
| sb-simple-streams/ | H | 03-May-2022 | - | 5,011 | 3,844 |
| sb-sprof/ | H | 31-Dec-2016 | - | 1,638 | 1,188 |
| README | H A D | 31-Dec-2016 | 1.5 KiB | 32 | 26 |
| STANDARDS | H A D | 31-Dec-2016 | 4.4 KiB | 110 | 82 |
| asdf-module.mk | H A D | 31-Dec-2016 | 1.4 KiB | 47 | 27 |
| asdf-stub.lisp | H A D | 31-Dec-2016 | 3.3 KiB | 71 | 62 |
| code-extras.lisp | H A D | 31-Dec-2016 | 515 | 20 | 12 |
| compiler-extras.lisp | H A D | 31-Dec-2016 | 6.6 KiB | 153 | 103 |
| stale-symbols.lisp | H A D | 31-Dec-2016 | 4.5 KiB | 101 | 58 |
| vanilla-module.mk | H A D | 03-May-2022 | 470 | 16 | 11 |
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