objtool: Move dodgy linker warn to verbose
The lld.ld borkage is fixed in the latest llvm release (?) but will not be backported, meaning we're stuck with broken linker for a fair while. Lets not spam all clang build logs and move warning to verbose. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
This commit is contained in:
parent
3724062ca2
commit
7e501637bd
1 changed files with 1 additions and 1 deletions
|
@ -2273,7 +2273,7 @@ static int read_annotate(struct objtool_file *file,
|
|||
|
||||
if (sec->sh.sh_entsize != 8) {
|
||||
static bool warned = false;
|
||||
if (!warned) {
|
||||
if (!warned && opts.verbose) {
|
||||
WARN("%s: dodgy linker, sh_entsize != 8", sec->name);
|
||||
warned = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue