Skip to content

Commit 1b2b287

Browse files
committed
Support native code
Adds support for jit precompiled native code (avmN) sections. Signed-off-by: Winford <[email protected]>
1 parent 67a8199 commit 1b2b287

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ All notable changes to this project will be documented in this file.
99
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

12+
## [0.7.6] - (unreleased)
13+
- Add support to jit precompiled native code sections (`avmN`)
14+
1215
## [0.7.5] - (2025.08.18)
1316

1417
- Fix unnecessary warning about missing `sasl`

src/packbeam_api.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
).
4242

4343
-define(ALLOWED_CHUNKS, [
44-
"AtU8", "Code", "ExpT", "LocT", "ImpT", "LitU", "FunT", "StrT", "LitT"
44+
"AtU8", "Code", "ExpT", "LocT", "ImpT", "LitU", "FunT", "StrT", "LitT", "avmN"
4545
]).
4646
-define(BEAM_START_FLAG, 1).
4747
-define(BEAM_CODE_FLAG, 2).

0 commit comments

Comments
 (0)