This is the mail archive of the gdb@sourceware.org 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]
Other format: [Raw text]

Re: GDB build failure when using latest (ToT) GCC


On 2017-02-27 14:50, Steve Ellcey wrote:
I am building the ToT gdb with a ToT GCC and getting this error:

../../../src/binutils-gdb/gdb/remote.c: In function ‘int remote_add_target_side_
condition(gdbarch*, bp_target_info*, char*, char*)’:
../../../src/binutils-gdb/gdb/remote.c:9668:8: error: types may not be defined i
n a for-range-declaration [-fpermissive]
   for (struct agent_expr *aexpr : bp_tgt->conditions)
        ^~~~~~
Makefile:1898: recipe for target 'remote.o' failed


Does anyone know how to change this code so that GCC will not complain?
I am not familiar with C++ for ranges. I get a bunch of warnings too, but this is a hard error that stops my compilation.  Yes, I can use -fpermissive but I
would rather not and this will need to be fixed when GCC 7.X comes out.

Hi Steve,

I indeed broke the build for recent GCCs in

Use range-based for loop in remote_add_target_side_condition
8362122330c97c8c4a15da4e7ba8aa29f0c11157

and fixed it right after with

Remove struct keyword from range-based for loop
d538e36decd5628c084dbd5a7de13719b8b92121

I am still using an ancient 4.8 GCC, so I did not see it, but Sergio's buildbot informed me within a few minutes. Let's just pretend it was a test for the bot :). Sorry about the inconvenience and thanks for being alert.

Simon


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