> I built binutils (from master) for linux without problems. > > When I try to build the same source/target but now using x64-mingw32 I get a name collision with a local variable name “open” declared in line 64 of/sim/rx/gdb-if.c, > > used in lines 64,82 and 101. Thanks for the report. > Could this variable be renamed? And commited? > > Once renamed the compilation went fine. > > I'm not aware of the naming conventions used by gdb people this is why > I didn't propose a patch. Often, we'll use a prefix. In this case, I used "rx_", and renamed the variable to "rx_sim_is_open". sim/rx/ChangeLog: * gdb-if.c (open): Rename to... (rx_sim_is_open): This. Replace all uses of "open" by uses of "rx_sim_is_open" throughout. Tested by rebuilding on x86_64-linux. Pushed on master and gdb-7.9-branch. -- Joel