Skip to content

Commit 3a0fef0

Browse files
chore: add verbose cli option to C++ compiler
1 parent 599b68f commit 3a0fef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/intrinsic-test/src/common/compile_c.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl CppCompilation {
119119
output: &str,
120120
) -> std::io::Result<std::process::Output> {
121121
let mut cmd = clone_command(&self.0);
122-
cmd.args([input, "-c", "-o", output]);
122+
cmd.args([input, "-v", "-c", "-o", output]);
123123
cmd.output()
124124
}
125125

0 commit comments

Comments
 (0)