Skip to content

Commit 5e6bb36

Browse files
authored
Add -nologo command-line option to Microsoft assembler. (#525)
1 parent 85c8338 commit 5e6bb36

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1687,6 +1687,7 @@ impl Build {
16871687
"ml.exe"
16881688
};
16891689
let mut cmd = windows_registry::find(&target, tool).unwrap_or_else(|| self.cmd(tool));
1690+
cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
16901691
for directory in self.include_directories.iter() {
16911692
cmd.arg("-I").arg(directory);
16921693
}

0 commit comments

Comments
 (0)