From eeb9a157a795cd7b1ee3af906726967cb3da3385 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 11 Jun 2026 15:40:53 -0700 Subject: [PATCH] Add some more options wasm-ld has picked up --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index dd8b68d..801929a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -150,6 +150,7 @@ const LLD_FLAGS: &[LldFlag] = &[ flag! { --check-features }, flag! { --color-diagnostics[=VALUE] }.nonstandard(), flag! { --compress-relocations }.nonstandard(), + flag! { --cooperative-multithreading }, flag! { --demangle }.nonstandard(), flag! { --dn }.nonstandard(), flag! { --dy }.nonstandard(), @@ -200,6 +201,7 @@ const LLD_FLAGS: &[LldFlag] = &[ flag! { --no-merge-data-segments }, flag! { --no-pie }.nonstandard(), flag! { --no-print-gc-sections }.nonstandard(), + flag! { --no-stack-first }.nonstandard(), flag! { --no-shlib-sigcheck }, flag! { --no-whole-archive }.nonstandard(), flag! { --noinhibit-exec }.nonstandard(),