diff options
| author | Oliver Schneider <git-no-reply-9879165716479413131@oli-obk.de> | 2018-03-30 13:06:34 +0200 |
|---|---|---|
| committer | Oliver Schneider <git-no-reply-9879165716479413131@oli-obk.de> | 2018-04-07 09:24:35 +0200 |
| commit | 679657b863c2a53a3052d8af9defbce48e12db10 (patch) | |
| tree | ff837586031384aec5febe548a17d1152bacd204 /src/rustc | |
| parent | ee1014e50570e4572980e2496634cbb0eac768dd (diff) | |
| download | rust-679657b863c2a53a3052d8af9defbce48e12db10.tar.gz rust-679657b863c2a53a3052d8af9defbce48e12db10.zip | |
Inject the `compiler_builtins` crate whenever the `core` crate is injected
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/dlmalloc_shim/Cargo.toml | 1 | ||||
| -rw-r--r-- | src/rustc/libc_shim/Cargo.toml | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/rustc/dlmalloc_shim/Cargo.toml b/src/rustc/dlmalloc_shim/Cargo.toml index cf8440c40da..d2fe159d806 100644 --- a/src/rustc/dlmalloc_shim/Cargo.toml +++ b/src/rustc/dlmalloc_shim/Cargo.toml @@ -11,4 +11,5 @@ doc = false [dependencies] core = { path = "../../libcore" } +compiler_builtins = { path = "../../rustc/compiler_builtins_shim" } alloc = { path = "../../liballoc" } diff --git a/src/rustc/libc_shim/Cargo.toml b/src/rustc/libc_shim/Cargo.toml index 0c04402124a..e77897d6433 100644 --- a/src/rustc/libc_shim/Cargo.toml +++ b/src/rustc/libc_shim/Cargo.toml @@ -29,6 +29,8 @@ doc = false # # See https://github.com/rust-lang/rfcs/pull/1133. core = { path = "../../libcore" } +compiler_builtins = { path = "../compiler_builtins_shim" } + [features] # Certain parts of libc are conditionally compiled differently than when used |
