Erlang/OTP http://erlang.org
Find a file
Kiko Fernandez-Reyes 26a4fb0edd
Merge pull request #10852 from kikofernandez/kiko/otp/CVE-2026-3381
otp: CVE-2026-3381 and CVE-2026-2673 not affected

OTP-20051
2026-03-19 17:02:18 +01:00
.devcontainer Update copyright year 2025-04-16 09:08:50 +02:00
.github otp: fix vex representation for component_not_present 2026-03-16 14:46:24 +01:00
.ort/config update SPDX SBOM to 2.3 2025-12-02 09:25:47 +01:00
bin
bootstrap Update deprecations 2026-03-18 16:37:42 +01:00
erts Merge pull request #9814 from jcpetruzza/call_targets 2026-03-19 11:56:40 +01:00
FILE-HEADERS update SPDX SBOM to 2.3 2025-12-02 09:25:47 +01:00
HOWTO Update copyright year 2026-03-17 12:54:08 +01:00
lib Merge pull request #10840 from garazdawi/lukas/edoc/polish-docs 2026-03-19 12:43:19 +01:00
LICENSES add SGI-B-2.0 license to licenses folder 2025-08-14 12:45:11 +02:00
make Merge pull request #10852 from kikofernandez/kiko/otp/CVE-2026-3381 2026-03-19 17:02:18 +01:00
plt
scripts Merge branch 'maint' into master 2026-03-04 10:29:31 +01:00
system/doc Merge pull request #10863 from juhlig/fix_getting_started_typos 2026-03-19 11:40:57 +01:00
vex vex: add openvex statements 2026-03-16 15:23:35 +01:00
xcomp gh: Fail macos build on build-step failure 2025-08-14 16:58:33 +02:00
.dir-locals.el Update copyright year 2025-04-16 09:08:50 +02:00
.editorconfig Update copyright year 2025-04-16 09:08:50 +02:00
.elp.toml Update copyright year 2025-04-16 09:08:50 +02:00
.formatter.exs otp: Fix copyright headers to use the same format 2025-04-04 10:41:25 +02:00
.gitattributes
.gitignore Merge branch 'lars/xmerl/xml-regexp-bug/OTP-19762/ERERL-1260' into lars/xmerl/xml-regexp-bug-28/OTP-19762/ERERL-1260 2025-12-16 15:58:31 +01:00
.gitpod.yml Update copyright year 2025-04-16 09:08:50 +02:00
.mailmap ycf: Standardize and fix license headers 2025-04-04 10:45:09 +02:00
.ort.yml fix licenses for wx gen files 2025-08-14 12:45:11 +02:00
AUTHORS otp: Add license header to all AUTHOR files 2025-04-04 10:45:09 +02:00
configure Update configure scripts 2026-03-18 13:42:28 +01:00
configure.src Remove odbc from exception 2026-03-18 13:42:27 +01:00
CONTRIBUTING.md otp: sbom adds comment to license files 2025-05-19 12:55:47 +02:00
erl-build-tool-vars.sh Update copyright year 2025-04-16 09:08:50 +02:00
erlang_ls.config otp: Standardize all license headers for files in src and include 2025-04-04 10:42:48 +02:00
LICENSE.txt
Makefile.in Revert "Scan SKIP files in addition to scanning SKIP-APPLICATIONS" 2026-03-18 13:42:21 +01:00
otp_build otp: Fix otp_build to respect TYPE and FLAVOR 2025-06-17 13:30:59 +02:00
otp_patch_apply otp: Fix patch apply to work on vsn files with comments 2025-06-16 16:11:20 +02:00
OTP_VERSION Updated OTP_VERSION for Release Candidate 2 2026-03-18 10:55:58 +01:00
otp_versions.table Revert 'Updated OTP version' 2026-03-18 10:55:59 +01:00
prebuild.delete gh: Use prebuilt as cache to speedup build 2022-10-18 12:23:14 +02:00
prebuild.skip
README.md otp: Update license header to include spdx-license-identifier 2025-04-04 10:42:45 +02:00
renovate.json5 Merge branch 'maint' into master 2026-03-04 10:29:31 +01:00
SECURITY.md Fix typo in SECURITY.md 2025-12-07 14:13:06 -05:00
TAR.include

Erlang/OTP

Erlang is a programming language and runtime system for building massively scalable soft real-time systems with requirements on high availability.

OTP is a set of Erlang libraries, which consists of the Erlang runtime system, a number of ready-to-use components mainly written in Erlang, and a set of design principles for Erlang programs. Learn more about Erlang and OTP.

Learn how to program in Erlang.

Examples

There are several examples on the website to help you get started. The below example defines a function world/0 that prints "Hello, world" in the Erlang shell:

-module(hello).
-export([world/0]).

world() -> io:format("Hello, world\n").

Save the file as hello.erl and run erl to enter the Erlang shell to compile the module.

Erlang/OTP 24 [erts-12.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]

Eshell V12.2  (abort with ^G)
1> c(hello).
{ok,hello}
2> hello:world().
Hello, world
ok

Learn more about the Erlang syntax of modules, functions and expressions on Erlang.org.

Installation

Binary Distributions

Erlang/OTP is available as pre-built binary packages by most OS package managers.

apt-get install erlang

Compiling from source

To compile Erlang from source, run the following commands. The complete building and installation instructions can be found here.

git clone https://github.com/erlang/otp.git
cd otp

Checkout the branch or tag of your choice

git checkout maint-27    # current latest stable version

Configure, build and install

./configure
make
make install

Alternatively, you can use Kerl, a script that lets you easily build Erlang with a few commands.

Bug Reports

Please visit our GitHub Issues page for reporting bugs. The instructions for submitting bugs reports can be found here.

Security Disclosure

Please do not report security vulnerabilities through public channels, like GitHub issues, discussions, or pull requests.

Please disclose the security issues following our SECURITY guidelines.

Contributing

We are grateful to the community for contributing bug fixes and improvements. Read below to learn how you can take part in improving Erlang/OTP. We appreciate your help!

Contribution Guide

Read our contribution guide to learn about our development process, how to propose fixes and improvements, and how to test your changes to Erlang/OTP before submitting a pull request.

Help Wanted

We have a list of Help Wanted bugs that we would appreciate external help from the community. This is a great place to get involved.

Awesome-Erlang

You can find more projects, tools and articles related to Erlang/OTP on the awesome-erlang list. Add your project there.

License

Erlang/OTP is released under the Apache License 2.0.

For any license inquiry, please send an email to opensource@ericsson.com

%CopyrightBegin%

SPDX-License-Identifier: Apache-2.0

Copyright Ericsson AB 2010-2025. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

%CopyrightEnd%