Skip to content

Commit

Permalink
Add -nologo command-line option to Microsoft assembler. (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
dot-asm committed Jul 6, 2020
1 parent 85c8338 commit 5e6bb36
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1687,6 +1687,7 @@ impl Build {
"ml.exe"
};
let mut cmd = windows_registry::find(&target, tool).unwrap_or_else(|| self.cmd(tool));
cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
for directory in self.include_directories.iter() {
cmd.arg("-I").arg(directory);
}
Expand Down

0 comments on commit 5e6bb36

Please sign in to comment.