# ecl mit Homebrew, apk, apt, MacPorts, Nix, pacman, zypper installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für ecl in AI-Agent-Workflows.

## Installation

```sh
sudo av install brew:ecl
```

Weitere Installationsbefehle:

### macOS

- Homebrew (100%):

```sh
brew install ecl
```

  Evidenz: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install ecl
```

  Evidenz: MacPorts ports tree: lang/ecl/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add ecl
```

  Evidenz: Alpine Linux edge package indexes: ecl from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install ecl
```

  Evidenz: Debian stable package indexes: ecl from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- Nix (92%):

```sh
nix profile install nixpkgs#ecl
```

  Evidenz: nixpkgs package indexes: ecl from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix

- pacman (92%):

```sh
sudo pacman -S ecl
```

  Evidenz: Arch Linux sync databases: ecl from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install ecl
```

  Evidenz: openSUSE Tumbleweed package metadata: ecl from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Paketfakten

- **Paketschlüssel:** brew:ecl
- **Paketmanager:** Homebrew
- **Version:** 26.5.5
- **Quellzusammenfassung:** Embeddable Common Lisp
- **Homepage:** <https://ecl.common-lisp.dev>
- **Zuletzt aktualisiert:** 2026-07-07T07:58:27Z
- **Generiert:** 2026-08-03T19:37:03+00:00

## Executables

- ecl (Alias)
- ecl-config (Alias)

## Installationsverhalten

- Bottle: nicht verfügbar

## Version und Aktualität

- Seite generiert: 2026-08-03
- Manager-Version: 26.5.5
## Projektgeschichte und Nutzung

ECL, Embeddable Common Lisp, is a Common Lisp implementation designed around a Lisp-to-C compiler, standard C calling conventions, and use as a linkable runtime inside other programs. Its package-manager identity is not just another Common Lisp executable: it is the Common Lisp implementation people install when embeddability, C interoperability, portability, and small runtime composition matter.

### Projektgeschichte

The ECL manual traces the project through the Kyoto Common Lisp family. KCL was developed in 1984 at Kyoto University's Research Institute for Mathematical Sciences by Taiichi Yuasa and Masami Hagiya, with an implementation partly in C and partly in Common Lisp and a Lisp-to-C translator. Later descendants included Ibuki Common Lisp, DELPHI Common Lisp, Austin Kyoto Common-Lisp, GNU Common Lisp, and HCL.

Giuseppe Attardi began the ECL line after leaving DELPHI in 1994 and returning to the University of Pisa. The manual explains the name as both Embeddable Common Lisp and ECoLisp, tied to the goal of integrating Lisp code with other languages at a time when Lisp programmers were becoming less common.

Juan Jose Garcia-Ripoll later started the ECLS or ECL-Spain effort from the ECoLisp sources. Its immediate goals were practical package-nerd goals: portability, 64-bit cleanliness, bootstrapping without another Lisp implementation, and restoring the ability to link ECL with C programs. That fork eventually became the continuing community ECL project.

After another maintenance gap beginning in 2013, Daniel Kochmanski took over maintenance in 2015 with Garcia-Ripoll's consent, and Marius Gerbershagen became co-maintainer in 2020. Current development, according to the manual, focuses on ANSI compliance, compatibility with the Common Lisp library ecosystem, bug fixing, speed, and portability.

### Adoptionsgeschichte

ECL's adoption has been tied to portability and embedding rather than to a single flagship application. Its manual emphasizes C interoperability, modular runtime construction, native CLOS support, bytecode fallback for systems without a C compiler, and ANSI Common Lisp compliance, which explains its presence across Unix-like package managers.

The Homebrew, Debian, Ubuntu, Alpine, Arch, Nix, MacPorts, and openSUSE package names in the batch input reflect the same pattern: ECL is a standard packaged Common Lisp implementation rather than an application-specific one-off. Its upstream GitLab tags show active releases through 2026, including 26.5.5.

### Wie es verwendet wird

Users typically install ECL to run an interactive Common Lisp environment, compile Lisp systems, or embed Lisp into a C or C++ application. The `ecl` executable provides the runtime and REPL, while `ecl-config` exposes compiler and linker flags for programs that build against ECL.

The manual's key usage distinction is that compiled Lisp functions follow standard C calling conventions, letting C and Lisp call each other without a separate foreign-function layer. That makes ECL especially relevant for applications that want Common Lisp as an extension language or as a compiled library component.

### Warum Paket-Nerds sich dafür interessieren

ECL matters to package maintainers because it is both a compiler toolchain and a library runtime. Packaging it means caring about C compilers, runtime modules, dynamic loading, threads, binary images, and ABI-facing configuration through `ecl-config`, not just shipping a single REPL binary.

Its lineage also makes it historically interesting: a modern package-manager formula connects directly back to the KCL family of Lisp-to-C systems, while still tracking contemporary Common Lisp library compatibility and portability work.

### Zeitleiste

- 1984: Kyoto Common Lisp is developed at Kyoto University.
- 1988: DELPHI Common Lisp is released as an extended KCL descendant.
- 1994: Giuseppe Attardi begins the ECL line at the University of Pisa.
- 1990s: The ECLS or ECL-Spain fork focuses on portability, 64-bit cleanup, bootstrapping, and C linking.
- 2015: Daniel Kochmanski becomes maintainer.
- 2020: Marius Gerbershagen becomes co-maintainer.
- 2026: Upstream GitLab tags include ECL 26.5.5.

### Related projects

- Kyoto Common Lisp is the oldest ancestor named in ECL's manual.
- GNU Common Lisp is another AKCL descendant in the same family tree.
- Maxima is named in the ECL history as the computer algebra system that motivated GNU Common Lisp.
- Common Lisp libraries and ANSI Common Lisp conformance are current compatibility targets for ECL development.

### Quellen

- <https://ecl.common-lisp.dev/static/manual/History.html>
- <https://ecl.common-lisp.dev/static/manual/What-is-ECL.html>
- <https://gitlab.com/api/v4/projects/embeddable-common-lisp%2Fecl/repository/tags?per_page=10>


## Sicherheitshinweise

Für ecl wurde kein passendes lokales Secret-Handling-Manifest gefunden. Nucleus-Paketmetadaten bleiben hier veröffentlicht, damit künftige Abdeckung eine stabile Paket-URL hat.


## Andere Paketmanager-Einträge

- Debian apt - ecl - 24.5.10+ds-1+b1: normalized package name match | Debian stable package indexes: ecl from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Embeddable Common-Lisp: has an interpreter and can compile to C | https://common-lisp.net/project/ecl/
- Debian apt - libecl-dev - 24.5.10+ds-1+b1: normalized package name match | Debian stable package indexes: libecl-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Embeddable Common-Lisp: development files | https://common-lisp.net/project/ecl/
- Debian apt - libecl24.5t64 - 24.5.10+ds-1+b1: normalized package name match | Debian stable package indexes: libecl24.5t64 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Embeddable Common-Lisp: shared library | https://common-lisp.net/project/ecl/
- Nix - ecl: normalized package name match | nixpkgs package indexes: ecl from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix
- Ubuntu apt - ecl - 21.2.1+ds-4.1ubuntu2: normalized package name match | Ubuntu 24.04 LTS package indexes: ecl from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Embeddable Common-Lisp: has an interpreter and can compile to C | https://common-lisp.net/project/ecl/
- Ubuntu apt - libecl-dev - 21.2.1+ds-4.1ubuntu2: normalized package name match | Ubuntu 24.04 LTS package indexes: libecl-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Embeddable Common-Lisp: development files | https://common-lisp.net/project/ecl/
- Ubuntu apt - libecl21.2t64 - 21.2.1+ds-4.1ubuntu2: normalized package name match | Ubuntu 24.04 LTS package indexes: libecl21.2t64 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Embeddable Common-Lisp: shared library | https://common-lisp.net/project/ecl/
- apk - ecl - 24.5.10-r2: normalized package name match | Alpine Linux edge package indexes: ecl from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Embeddable Common Lisp | https://ecl.common-lisp.dev/
- apk - ecl-dev - 24.5.10-r2: normalized package name match | Alpine Linux edge package indexes: ecl-dev from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Embeddable Common Lisp (development files) | https://ecl.common-lisp.dev/
- apk - ecl-doc - 24.5.10-r2: normalized package name match | Alpine Linux edge package indexes: ecl-doc from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Embeddable Common Lisp (documentation) | https://ecl.common-lisp.dev/
- pacman - ecl - 26.5.5-1: normalized package name match | Arch Linux sync databases: ecl from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Embeddable Common Lisp | https://common-lisp.net/project/ecl/
- zypper - ecl - 26.3.27-1.5: normalized package name match | openSUSE Tumbleweed package metadata: ecl from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Embeddable Common-Lisp | https://common-lisp.net/project/ecl/
- zypper - ecl-devel - 26.3.27-1.5: normalized package name match | openSUSE Tumbleweed package metadata: ecl-devel from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Embeddable Common-Lisp -- development files | https://common-lisp.net/project/ecl/
- zypper - libecl26_3 - 26.3.27-1.5: normalized package name match | openSUSE Tumbleweed package metadata: libecl26_3 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Embeddable Common-Lisp -- shared library | https://common-lisp.net/project/ecl/
- MacPorts - ecl: normalized package name match | MacPorts ports tree: lang/ecl/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Combined YAML source

View the package source record on GitHub. [combined/ecl.yml](https://github.com/mxcl/pkgdb/blob/main/combined/ecl.yml)


## Quellen

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
