Skip to content

Commit

Permalink
AArch64: ignore one more erratum
Browse files Browse the repository at this point in the history
  • Loading branch information
marxin committed Jan 25, 2025
1 parent cdbe159 commit b1c4591
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libwild/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,12 @@ const SILENTLY_IGNORED_FLAGS: &[&str] = &[
"no-relax",
];

const IGNORED_FLAGS: &[&str] = &["gdb-index", "disable-new-dtags", "fix-cortex-a53-843419"];
const IGNORED_FLAGS: &[&str] = &[
"gdb-index",
"disable-new-dtags",
"fix-cortex-a53-835769",
"fix-cortex-a53-843419",
];

// These flags map to the default behavior of the linker.
const DEFAULT_FLAGS: &[&str] = &[
Expand Down

0 comments on commit b1c4591

Please sign in to comment.