forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lukas/otp/add-elp-config' into maint
* lukas/otp/add-elp-config: Add .elp.toml file
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# SPDX-FileCopyrightText: 2025 Ericsson and the Erlang/OTP contributors | ||
|
||
[build_info] | ||
apps = [ | ||
"lib/*", | ||
{"name" = "erts", "dir" = "erts/preloaded", "src_dirs" = ["src"]}, | ||
{"name" = "wx", "dir" = "lib/wx", "src_dirs" = ["src", "gen"]}, | ||
{"name" = "inets", "dir" = "lib/inets", "src_dirs" = ["src/http_client", "src/http_server", "src/http_lib", "src/inets_app"]}, | ||
{"name" = "common_test", "dir" = "lib/common_test", "src_dirs" = ["src", "test_server"]}, | ||
# Due to some Erlang/OTP bootstrapping issues, `stdlib` modules such as `gen_server` includes headers from the kernel application | ||
# using a simple `-include` directive, causing ELP to fail resolving those inclusions. | ||
# Include kernel as an `include_dir` for `stdlib` to solve the issue | ||
{"name" = "stdlib", "dir" = "lib/stdlib", "include_dirs" = ["include", "../kernel/include"]}, | ||
] | ||
deps = [] |