Skip to content

Commit 368d29d

Browse files
committed
start.lisp: Add support for ECL
1 parent 776d56a commit 368d29d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ from first removing the implementation's ASDF cache, for example,
7373
<td>10.680</td>
7474
<td>4.150</td>
7575
</tr>
76+
<tr>
77+
<td>ECL</td>
78+
<td>21.2.1</td>
79+
<td>23.219</td>
80+
<td>3.042</td>
81+
</tr>
7682
</table>
7783

7884
# Alternatives

start.lisp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#| start.lisp --- a single-file self-contained Common Lisp script template
22
export __CL_ARGV0="$0"
3-
type sbcl >/dev/null 2>&1 && exec sbcl --script "$0" "$@"
4-
type clisp >/dev/null 2>&1 && exec clisp "$0" "$@"
3+
type sbcl >/dev/null 2>&1 && exec sbcl --script "$0" "$@"
4+
type clisp >/dev/null 2>&1 && exec clisp "$0" "$@"
5+
type ecl >/dev/null 2>&1 && exec ecl --shell "$0" -- "$@"
56
Copyright 2021 Thomas Fitzsimmons
67
SPDX-License-Identifier: Apache-2.0 |#
78
;;; Load dependee systems.

0 commit comments

Comments
 (0)