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 9299924 commit 812d8bfCopy full SHA for 812d8bf
tools/lib/bpf/linker.c
@@ -719,6 +719,9 @@ static int linker_sanity_check_elf(struct src_obj *obj)
719
return -EINVAL;
720
}
721
722
+ if (is_dwarf_sec_name(sec->sec_name))
723
+ continue;
724
+
725
if (sec->shdr->sh_addralign && !is_pow_of_2(sec->shdr->sh_addralign)) {
726
pr_warn("ELF section #%zu alignment %llu is non pow-of-2 alignment in %s\n",
727
sec->sec_idx, (long long unsigned)sec->shdr->sh_addralign,
0 commit comments