bootstrap-config.toml 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. profile = "user"
  2. # changelog-seen = 2
  3. [llvm]
  4. link-shared = true
  5. [build]
  6. target = ["x86_64-unknown-linux-gnu"]
  7. python = "/usr/bin/python3"
  8. cargo = "/usr/bin/cargo"
  9. rustc = "/usr/bin/rustc"
  10. extended = true
  11. sanitizers = false
  12. profiler = true
  13. vendor = true
  14. tools = ["cargo", "rls", "clippy", "rustdoc", "rustfmt", "analysis", "rust-analyzer", "src", "rust-demangler"]
  15. docs = false
  16. [install]
  17. prefix = "/usr"
  18. [rust]
  19. codegen-units-std = 1
  20. debuginfo-level-std = 2
  21. channel = "stable"
  22. rpath = false
  23. # backtrace-on-ice = true
  24. codegen-tests = false
  25. [target.x86_64-unknown-linux-gnu]
  26. llvm-config = "/usr/bin/llvm-config"