[PATCH] D27415: [ELF] - Replace MergeOutputSection with synthetic input section MergeSection.

Rafael Avila de Espindola via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 30 12:11:50 PST 2017


George Rimar via Phabricator <reviews at reviews.llvm.org> writes:

> grimar added a comment.
>
> To be more clear https://reviews.llvm.org/D29217 show 2 different issues.
>
> 1. The main issue I am trying to solve - wrong symbols values generated in scripts like:
>
>   .rodata : {
>    *(.rodata)
>    *(.rodata.*)
>    . = ALIGN(16);
>    video_cards = .;
>    *(.videocards)
>    video_cards_end = .;
>
> }

I think this is an independent issue. It should be possible to fix this
even with the current infrastructure. I am taking a look to see if I am
missing something.

Cheers,
Rafael


More information about the llvm-commits mailing list