From 55482bd87644bcc0d813b90b4c67187695d8ff55 Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Sun, 24 Jul 2022 17:50:30 +0300 Subject: [PATCH] + allow the 'section' directive for the WebAssembly platforms --- compiler/systems.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems.pas b/compiler/systems.pas index f8bf2afd15..8d6e6abd0b 100644 --- a/compiler/systems.pas +++ b/compiler/systems.pas @@ -318,7 +318,7 @@ interface systems_freertos = [system_xtensa_freertos,system_arm_freertos]; { all systems that allow section directive } - systems_allow_section = systems_embedded+systems_freertos; + systems_allow_section = systems_embedded+systems_freertos+systems_wasm; { systems that uses dotted function names as descriptors } systems_dotted_function_names = [system_powerpc64_linux]+systems_aix;