Skip to content

Commit

Permalink
supress windows linker banner
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebe4code committed Dec 24, 2024
1 parent 077474e commit 2d61d6c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions linker/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pub fn link(obj_file: Vec<&PathBuf>, output: &PathBuf) -> () {
.arg(format!("{}{}{}", "/out:", output.to_str().unwrap(), ".exe"))
.args(obj_file)
.arg("/entry:main")
.arg("/NOLOGO")
.status()
.unwrap();
} else {
Expand Down

0 comments on commit 2d61d6c

Please sign in to comment.