Roughly update for the recent Cretonne API changes.

Everything builds and simple modules run, though there's still lots more
to do.
This commit is contained in:
Dan Gohman
2017-09-22 13:41:12 -07:00
parent b3a952ed67
commit cdffc1b50a
5 changed files with 315 additions and 270 deletions

View File

@@ -13,9 +13,10 @@ name = "wasmstandalone"
path = "src/main.rs"
[dependencies]
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
cretonne-reader = { git = "https://github.com/stoklund/cretonne.git" }
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
cretonne = { path = "/home/sunfish/rust/cretonne/lib/cretonne" }
cretonne-reader = { path = "/home/sunfish/rust/cretonne/lib/reader" }
cretonne-wasm = { path = "/home/sunfish/rust/cretonne/lib/wasm" }
cretonne-native = { path = "/home/sunfish/rust/cretonne/lib/native" }
wasmstandalone = { path = "lib/wasmstandalone" }
wasmparser = "0.8.2"
wasmtext = { git = "https://github.com/yurydelendik/wasmtext" }