Skip to content

Commit a4e96d0

Browse files
committed
Update wabt to 1.0.37
1 parent 14f82c5 commit a4e96d0

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

src/script/json.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,5 @@ pub enum Command {
8989

9090
#[derive(Deserialize, Debug)]
9191
pub struct Spec {
92-
pub source_filename: String,
9392
pub commands: Vec<Command>,
9493
}

wabt-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ cmake = "0.1.32"
1515
cc = "1.0.4"
1616

1717
[target.'cfg(windows)'.build-dependencies]
18-
glob = "0.2.11"
18+
glob = "0.3.2"

wabt-sys/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,12 @@ git submodule update --init --recursive",
8888
cfg.flag("-std=c++17");
8989
}
9090

91+
out_build_dir.push("include");
92+
9193
cfg.file("wabt/src/emscripten-helpers.cc")
9294
.file("wabt_shim.cc")
9395
.include("wabt")
96+
.include("wabt/include")
9497
// This is needed for config.h generated by cmake.
9598
.include(out_build_dir)
9699
// We link to stdlib above.

wabt-sys/wabt

Submodule wabt updated 891 files

wabt-sys/wabt_shim.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "src/wast-lexer.h"
2-
#include "src/wast-parser.h"
3-
#include "src/resolve-names.h"
1+
#include "wabt/include/wabt/wast-lexer.h"
2+
#include "wabt/include/wabt/wast-parser.h"
3+
#include "wabt/include/wabt/resolve-names.h"
44

55
extern "C" {
66

0 commit comments

Comments
 (0)