[lld] [lld][WebAssembly] Add RUNTIME_PATH support to wasm-ld (PR #129050)
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 11:10:29 PST 2025
================
@@ -133,6 +134,14 @@ void DylinkSection::writeBody() {
sub.writeTo(os);
}
+ if (!ctx.arg.rpath.empty()) {
+ SubSection sub(WASM_DYLINK_RUNTIME_PATH);
+ writeUleb128(sub.os, ctx.arg.rpath.size(), "num rpath entries");
+ for (const auto ref : ctx.arg.rpath) {
+ writeStr(sub.os, ref, "rpath entry");
+ }
----------------
sbc100 wrote:
No curly braces for single-line blocks.
https://github.com/llvm/llvm-project/pull/129050
More information about the llvm-commits
mailing list