explicitly control compiler_builts/c feature from libstd

This commit is contained in:
Ralf Jung 2018-12-02 13:27:12 +01:00
parent 0765eb95b5
commit d605e1d055
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ panic_unwind = { path = "../libpanic_unwind", optional = true }
panic_abort = { path = "../libpanic_abort" }
core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim", features = ["c"] }
profiler_builtins = { path = "../libprofiler_builtins", optional = true }
unwind = { path = "../libunwind" }

View File

@ -34,7 +34,7 @@ cc = "1.0.1"
[features]
c = []
default = ["c", "rustbuild", "compiler-builtins"]
default = ["rustbuild", "compiler-builtins"]
mem = []
rustbuild = []
compiler-builtins = []