Skip to content

Commit d6b0345

Browse files
committed
Merge commit '40dd3e2b7089b5e96714e064b731f6dbf17c61a9' into sync_cg_clif-2021-05-27
1 parent 9d41e8f commit d6b0345

25 files changed

+218
-296
lines changed

Cargo.lock

+24-116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10-18
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,27 @@ crate-type = ["dylib"]
99

1010
[dependencies]
1111
# These have to be in sync with each other
12-
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main", features = ["unwind"] }
13-
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
14-
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
15-
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
16-
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main", optional = true }
17-
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
12+
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", features = ["unwind"] }
13+
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
14+
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
15+
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
16+
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", optional = true }
17+
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
1818
target-lexicon = "0.12.0"
19-
gimli = { version = "0.23.0", default-features = false, features = ["write"]}
20-
object = { version = "0.23.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
19+
gimli = { version = "0.24.0", default-features = false, features = ["write"]}
20+
object = { version = "0.24.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2121

2222
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "do_not_remove_cg_clif_ranlib" }
2323
indexmap = "1.0.2"
2424
libloading = { version = "0.6.0", optional = true }
2525
smallvec = "1.6.1"
2626

2727
# Uncomment to use local checkout of cranelift
28-
#[patch."https://github.com/bytecodealliance/wasmtime/"]
28+
#[patch."https://github.com/bytecodealliance/wasmtime.git"]
2929
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
3030
#cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
3131
#cranelift-module = { path = "../wasmtime/cranelift/module" }
32-
#cranelift-native = { path = ../wasmtime/cranelift/native" }
32+
#cranelift-native = { path = "../wasmtime/cranelift/native" }
3333
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
3434
#cranelift-object = { path = "../wasmtime/cranelift/object" }
3535

@@ -70,13 +70,5 @@ debug = false
7070
opt-level = 0
7171
debug = false
7272

73-
[profile.dev.package.syn]
74-
opt-level = 0
75-
debug = false
76-
77-
[profile.release.package.syn]
78-
opt-level = 0
79-
debug = false
80-
8173
[package.metadata.rust-analyzer]
8274
rustc_private = true

build_sysroot/Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build_sysroot/prepare_sysroot_src.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ popd
3232
git clone https://github.com/rust-lang/compiler-builtins.git || echo "rust-lang/compiler-builtins has already been cloned"
3333
pushd compiler-builtins
3434
git checkout -- .
35-
git checkout 0.1.40
35+
git checkout 0.1.43
3636
git apply ../../crate_patches/000*-compiler-builtins-*.patch
3737
popd
3838

crate_patches/0001-compiler-builtins-Remove-rotate_left-from-Int.patch

-35
This file was deleted.

0 commit comments

Comments
 (0)