We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc295a6 commit 6436092Copy full SHA for 6436092
src/lib.rs
@@ -97,7 +97,7 @@ impl CodegenBackend for GccCodegenBackend {
97
let temp_dir = TempDir::new().expect("cannot create temporary directory");
98
let temp_file = temp_dir.into_path().join("result.asm");
99
let check_context = Context::default();
100
- check_context.set_hide_log_stderr(true);
+ check_context.set_print_errors_to_stderr(false);
101
let _int128_ty = check_context.new_c_type(CType::UInt128t);
102
// NOTE: we cannot just call compile() as this would require other files than libgccjit.so.
103
check_context.compile_to_file(gccjit::OutputKind::Assembler, temp_file.to_str().expect("path to str"));
0 commit comments