Hi Masahiro/Nicholas. On Sun, Feb 11, 2018 at 03:04:08PM +0900, Masahiro Yamada wrote: > (+CC Sam) > > 2018-02-10 23:25 GMT+09:00 Nicholas Piggin <npiggin@xxxxxxxxx>: > > This removes the old `ld -r` incremental link option, which has not > > been selected by any architecture since June 2017. > > > > Signed-off-by: Nicholas Piggin <npiggin@xxxxxxxxx> > > > Thanks for the last piece work! > > BTW, as a loosely related topic, > I guess the following partial section analysis is not working any more. > > # Do section mismatch analysis for each module/built-in.a > ifdef CONFIG_DEBUG_SECTION_MISMATCH > cmd_secanalysis = ; scripts/mod/modpost $@ > endif > > > > If we use thin archive for built-in.o, > this is not ELF, so it is always skipped > by the following code. > > > if ((hdr->e_ident[EI_MAG0] != ELFMAG0) || > (hdr->e_ident[EI_MAG1] != ELFMAG1) || > (hdr->e_ident[EI_MAG2] != ELFMAG2) || > (hdr->e_ident[EI_MAG3] != ELFMAG3)) { > /* Not an ELF file - silently ignore it */ > return 0; > > > The final analysis is done against vmlinux.o, which is ELF. > > > > Is it better to remove CONFIG_DEBUG_SECTION_MISMATCH? > Or, do you have an idea to fix it? > > > I CCed Sam, the author of commit 91341d4. The section mismatch analysis for the individual built-in.o files was added to get warnings on a level close to where the source of the error was. So the warnings was more precise (the .o file gave a good hint where to look for the error). And since this has not been missed we should not try to add extra logic to re-introduce the check on this level. It would require an extra link for each directory only for the purpose of the section mismatch detection with better warnings. So we can safely get rid of this part. We still do an extra link of vmlinux to support section mismatch analysis. I wonder if we could do something to avoid this extra link step now where we use thin archieves unconditional. I assume this extra link step is more RAM and CPU consuming now than before thin archieves since it has to process many more .o files. So there should be some wins in build time if we can drop any extra step. Sam -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html