You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The SHA can start with + if the submodule is modified or - if it is not checked out.
44
48
let gcc_submodule_sha = git_output.trim_start_matches(['+','-']);
45
49
if gcc_submodule_sha != cg_gcc_version {
46
-
*bad = true;
47
-
eprintln!(
50
+
check.error(format!(
48
51
r#"Commit SHA of the src/gcc submodule (`{gcc_submodule_sha}`) does not match the required GCC version of the GCC codegen backend (`{cg_gcc_version}`).
49
52
Make sure to set the src/gcc submodule to commit {cg_gcc_version}.
50
53
The GCC codegen backend commit is configured at {}."#,
0 commit comments