summaryrefslogtreecommitdiff
path: root/src/binary-reader-nop.h
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2018-12-12 15:48:35 -0800
committerGitHub <noreply@github.com>2018-12-12 15:48:35 -0800
commita5827e0c2e5d3e4a05a65853ec5b5284dffe9585 (patch)
treec86fd39f6e3b060f36d2426a6063112a924bd76b /src/binary-reader-nop.h
parent152a5258aa0d24bf10b7e57878abba78dd0c3c56 (diff)
downloadwabt-a5827e0c2e5d3e4a05a65853ec5b5284dffe9585.tar.gz
wabt-a5827e0c2e5d3e4a05a65853ec5b5284dffe9585.tar.bz2
wabt-a5827e0c2e5d3e4a05a65853ec5b5284dffe9585.zip
Add needed_dynlibs to dylink section (#974)
This field was recently added: https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
Diffstat (limited to 'src/binary-reader-nop.h')
-rw-r--r--src/binary-reader-nop.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/binary-reader-nop.h b/src/binary-reader-nop.h
index 170899fe..059743dd 100644
--- a/src/binary-reader-nop.h
+++ b/src/binary-reader-nop.h
@@ -372,7 +372,9 @@ class BinaryReaderNop : public BinaryReaderDelegate {
uint32_t table_size,
uint32_t table_align) override {
return Result::Ok;
- };
+ }
+ Result OnDylinkNeededCount(Index count) override { return Result::Ok; }
+ Result OnDylinkNeeded(string_view so_name) override { return Result::Ok; }
Result EndDylinkSection() override { return Result::Ok; }
/* Linking section */