diff options
| author | bors <bors@rust-lang.org> | 2019-04-05 05:16:45 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-04-05 05:16:45 +0000 |
| commit | a11083e3c6a8eb0610a752dcf8d1af1ce5ca6dee (patch) | |
| tree | 2011f62a0397e3544303efb3cc0fbeaeb8fdf5fd /src/libstd | |
| parent | 8e2faa004137773f01cfdd615309316e768f7e84 (diff) | |
| parent | 1bf04c9ad775560c80e1f2553ccc9526ff3727a0 (diff) | |
| download | rust-a11083e3c6a8eb0610a752dcf8d1af1ce5ca6dee.tar.gz rust-a11083e3c6a8eb0610a752dcf8d1af1ce5ca6dee.zip | |
Auto merge of #59643 - alexcrichton:wasi-symbols, r=sanxiyn
std: Upgrade `compiler_builtins` to fix wasi linkage Turns out we needed to exclude a number of math functions on the `wasm32-unknown-wasi` target, and this was fixed in 0.1.9 of compiler-builtins and this is pulling in the fix to libstd's own build.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml index 875483518e8..86ad334d886 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -19,7 +19,7 @@ panic_unwind = { path = "../libpanic_unwind", optional = true } panic_abort = { path = "../libpanic_abort" } core = { path = "../libcore" } libc = { version = "0.2.51", default-features = false, features = ['rustc-dep-of-std'] } -compiler_builtins = { version = "0.1.8" } +compiler_builtins = { version = "0.1.9" } profiler_builtins = { path = "../libprofiler_builtins", optional = true } unwind = { path = "../libunwind" } rustc-demangle = { version = "0.1.10", features = ['rustc-dep-of-std'] } |
