Skip to content

Commit

Permalink
LispCookbook#531 Added chapter about SBCL-Librarian
Browse files Browse the repository at this point in the history
  • Loading branch information
em7 committed Feb 16, 2024
1 parent c9e4d08 commit 0e54f73
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dynamic-libraries.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: Building Dynamic Libraries
---

Although the vast majority of Common Lisp implementations have
some kind of [foreign function interface](ffi.html) which allows you to
call functions from libraries which use C ABI, the other way around,
i.e. compiling your CL library as a library callable via C ABI from
other languages, might be rare.

Commercial implementations like LispWorks and Allegro CL usually
offer this functionality and is well documented.

This chapter describes a project called [SBCL-Librarian](https://github.com/quil-lang/sbcl-librarian), an opinionated way to create libraries callable from C (and anything which has C FFI) and Python using [Steel Bank Common Lisp](https://www.sbcl.org).


## Preparing your Environment

todo

1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The CL Cookbook aims to tackle all sort of topics, for the beginner as for the m
* [Interfacing with your OS](os.html)
* [Databases](databases.html)
* [Foreign Function Interfaces](ffi.html)
* [Building Dynamic Libraries](dynamic-libraries.html)
* [GUI programming](gui.html)
* [Sockets](sockets.html)
* [WebSockets](websockets.html)
Expand Down

0 comments on commit 0e54f73

Please sign in to comment.