Advertisement
Shnatsel

RUSTC_BOOTSTRAP on crates.io

Apr 11th, 2020
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. shnatsel@shnatsel-desktop ~/C/c/crates> rg --iglob '*.rs' -F 'RUSTC_BOOTSTRAP' 2>/dev/null | cat
  2. hash-table-0.2.3/build.rs: println!("rustc-env=RUSTC_BOOTSTRAP=1");
  3. obfstr-0.1.0/build.rs: println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
  4. containers-0.9.6/build.rs: println!("rustc-env=RUSTC_BOOTSTRAP=1");
  5. datatest-0.6.2/build.rs: println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
  6. rustc-ap-rustc_feature-652.0.0/lib.rs: let bootstrap = std::env::var("RUSTC_BOOTSTRAP").is_ok();
  7. fast-rustc-ap-rustc_feature-1.0.0/lib.rs: let bootstrap = std::env::var("RUSTC_BOOTSTRAP").is_ok();
  8. libtest-0.0.1/lib.rs: let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok();
  9. encoding_rs-0.8.22/build.rs: // This does not enable `RUSTC_BOOTSTRAP=1` for `packed_simd`.
  10. encoding_rs-0.8.22/build.rs: println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
  11. i-o-0.4.4/build.rs: println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
  12. simd-0.2.4/build.rs: println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
  13. ptr-0.2.1/build.rs: println!("rustc-env=RUSTC_BOOTSTRAP=1");
  14. syntex_syntax-0.59.1/src/feature_gate.rs: let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok();
  15. msiz_rustc-ap-syntax-3.0.0/feature_gate/check.rs: let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok();
  16. syntex_syntax2-0.0.2/src/feature_gate.rs: let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok();
  17. sccache-0.2.13/src/compiler/rust.rs: .env("RUSTC_BOOTSTRAP", "1"); // TODO: this is fairly naughty
  18. tester-0.7.0/src/cli.rs: let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok();
  19. substrate-wasm-builder-1.0.9/src/lib.rs: // `RUSTC_BOOTSTRAP` tells a stable compiler to behave like a nightly. So, when this env
  20. substrate-wasm-builder-1.0.9/src/lib.rs: env::var("RUSTC_BOOTSTRAP").is_ok() ||
  21. pyoxidizer-0.7.0/src/project_building.rs: envs.push(("RUSTC_BOOTSTRAP", "1".to_string()));
  22. vkcargo-0.45.1/tests/testsuite/standard_lib.rs: let is_sysroot_crate = env::var_os("RUSTC_BOOTSTRAP").is_some();
  23. cargo-0.43.1/tests/testsuite/standard_lib.rs: let is_sysroot_crate = env::var_os("RUSTC_BOOTSTRAP").is_some();
  24. vkcargo-0.45.1/src/cargo/core/features.rs: if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
  25. cargo-semverver-0.34.0/src/cargo/core/features.rs: if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
  26. cargo-0.43.1/src/cargo/core/features.rs: if let Ok(staging) = env::var("RUSTC_BOOTSTRAP") {
  27. vkcargo-0.45.1/src/cargo/core/compiler/mod.rs: // RUSTC_BOOTSTRAP allows unstable features on stable.
  28. vkcargo-0.45.1/src/cargo/core/compiler/mod.rs: .env("RUSTC_BOOTSTRAP", "1");
  29. cargo-0.43.1/src/cargo/core/compiler/mod.rs: // RUSTC_BOOTSTRAP allows unstable features on stable.
  30. cargo-0.43.1/src/cargo/core/compiler/mod.rs: .env("RUSTC_BOOTSTRAP", "1");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement