Skip to content

fix formatting inconsistencies #123325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
37 changes: 10 additions & 27 deletions compiler/rustc/build.rs
Original file line number Diff line number Diff line change
@@ -1,27 +1,10 @@
use std::env;

fn main() {
let target_os = env::var("CARGO_CFG_TARGET_OS");
let target_env = env::var("CARGO_CFG_TARGET_ENV");
if Ok("windows") == target_os.as_deref() && Ok("msvc") == target_env.as_deref() {
set_windows_exe_options();
} else {
// Avoid rerunning the build script every time.
println!("cargo:rerun-if-changed=build.rs");
}
}

// Add a manifest file to rustc.exe.
fn set_windows_exe_options() {
static WINDOWS_MANIFEST_FILE: &str = "Windows Manifest.xml";

let mut manifest = env::current_dir().unwrap();
manifest.push(WINDOWS_MANIFEST_FILE);

println!("cargo:rerun-if-changed={WINDOWS_MANIFEST_FILE}");
// Embed the Windows application manifest file.
println!("cargo:rustc-link-arg-bin=rustc-main=/MANIFEST:EMBED");
println!("cargo:rustc-link-arg-bin=rustc-main=/MANIFESTINPUT:{}", manifest.to_str().unwrap());
// Turn linker warnings into errors.
println!("cargo:rustc-link-arg-bin=rustc-main=/WX");
}
use std::env;fn main(){();let target_os=env::var("CARGO_CFG_TARGET_OS");();3;let
target_env=env::var("CARGO_CFG_TARGET_ENV");((),());if Ok("windows")==target_os.
as_deref()&&Ok("msvc")==target_env.as_deref(){;set_windows_exe_options();;}else{
println!("cargo:rerun-if-changed=build.rs");();}}fn set_windows_exe_options(){3;
static WINDOWS_MANIFEST_FILE:&str="Windows Manifest.xml";;let mut manifest=env::
current_dir().unwrap();();();manifest.push(WINDOWS_MANIFEST_FILE);();3;println!(
"cargo:rerun-if-changed={WINDOWS_MANIFEST_FILE}");let _=||();if true{};println!(
"cargo:rustc-link-arg-bin=rustc-main=/MANIFEST:EMBED");((),());((),());println!(
"cargo:rustc-link-arg-bin=rustc-main=/MANIFESTINPUT:{}",manifest.to_str().//{;};
unwrap());{();};{();};println!("cargo:rustc-link-arg-bin=rustc-main=/WX");({});}
1,649 changes: 335 additions & 1,314 deletions compiler/rustc_abi/src/layout.rs

Large diffs are not rendered by default.

Loading