This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [ELF] symbol sets handling [2]


On Wed, 12 Feb 2003, Fabio Alemagna wrote:
> Now, _IF_ the ld script contained this piece
>
>     __start_myset = .;
>     myset :
>     {
>         *(SORT(.ctors.*))
>         *(.dtors)
>     }
>     __stop_myset = .;

Argh... that should have looked like this:

    __start_myset = .;
    myset :
    {
        *(SORT(myset.*))
        *(myset)
    }
    __stop_myset = .;
k
Sorry... I should learn to check my emails BEFORE I sent'em :)

Fabio Alemagna


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]