This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


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

Re: [PATCH]: memory region attribute nits


"J.T. Conklin" wrote:

> I'll add the missing ones going forward.  However, it's a bit
> difficult for me to test many of the native configs because I don't
> have access to them.  I'm sure that many other GDB hackers are in the
> same.  Hopefully those interested in those configs will take the time
> to ensure that they build.

FYI, I've only listed cross configs  Apart from the very native specific
ptrace/procfs/.. stuff everything should be cross targetable.  The solib
work, for instance, was definitly a step in the right direction - just
needs a bit (???) of spit 'n' polish :-)

The following bit of awk/sh is probably of interest.

awk < "${maintainers}" '
$2 ~ /^--target=.*/ {
    targets = gensub (/--target=/, "", 1, $2)
    split (targets, targ, /,/)
    for (i in targ) {
        print targ[i], $3
    }
}
' | while read target warnings

	enjoy,
		Andrew

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