diff --git a/CHANGELOG.md b/CHANGELOG.md index f5b6a22..a7d6a4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.6] - (unreleased) +- Add support to jit precompiled native code sections (`avmN`) + ## [0.7.5] - (2025.08.18) - Fix unnecessary warning about missing `sasl` diff --git a/src/packbeam_api.erl b/src/packbeam_api.erl index 99f5515..6b97ac9 100644 --- a/src/packbeam_api.erl +++ b/src/packbeam_api.erl @@ -41,7 +41,7 @@ ). -define(ALLOWED_CHUNKS, [ - "AtU8", "Code", "ExpT", "LocT", "ImpT", "LitU", "FunT", "StrT", "LitT" + "AtU8", "Code", "ExpT", "LocT", "ImpT", "LitU", "FunT", "StrT", "LitT", "avmN" ]). -define(BEAM_START_FLAG, 1). -define(BEAM_CODE_FLAG, 2).