2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 04:02:14 +00:00

Add support for wasm64 (#481)

Signed-off-by: Uilian Ries <uilianries@gmail.com>
This commit is contained in:
Uilian Ries
2025-12-13 18:02:42 +01:00
committed by GitHub
parent 36d41ddabc
commit 42a2743712

View File

@@ -186,3 +186,7 @@ toolset.flags emscripten.link OPTIONS <closure>full : --closure 2 ;
# things for old fastcomp backend which was removed in 2.0.0 (08/10/2020)
toolset.flags emscripten.link OPTIONS <link-optimization>on : --llvm-lto 1 ;
toolset.flags emscripten.link OPTIONS <link-optimization>full : --llvm-lto 3 ;
# Memory64/wasm64 support
toolset.flags emscripten.compile OPTIONS <address-model>64 : -sMEMORY64=1 ;
toolset.flags emscripten.link OPTIONS <address-model>64 : -sMEMORY64=1 ;