Re: Put libgcc config headers in separate libgcc_tm.h

2011-05-10 Thread Mike Stump
On May 10, 2011, at 8:26 AM, "Joseph S. Myers" wrote: > On rerunning my target macro enumeration now it's no longer necessary > to consider libgcc/config/ macros in host-side files > OK to commit? Ok. >

Re: Put libgcc config headers in separate libgcc_tm.h

2011-05-10 Thread Joseph S. Myers
On rerunning my target macro enumeration now it's no longer necessary to consider libgcc/config/ macros in host-side files, I saw that I'd missed one remaining DECLARE_LIBRARY_RENAMES definition when poisoning that macro host-side because of the move to libgcc/config/. Nathan Froyd had moved all d

Re: Put libgcc config headers in separate libgcc_tm.h

2011-05-10 Thread Ian Lance Taylor
"Joseph S. Myers" writes: > 2011-05-07 Joseph Myers > > * config.gcc (libgcc_tm_file): Define instead of including files > from ../../libgcc/config/ in tm_file. > * configure.ac (libgcc_tm_file_list, libgcc_tm_include_list): > Define. > * configure: Regenerate. >

Put libgcc config headers in separate libgcc_tm.h

2011-05-07 Thread Joseph S. Myers
This patch creates a separate libgcc_tm_file config.gcc variable and associated generated header libgcc_tm.h to avoid listing files in ../../libgcc/config/ in tm_file and so that macros moved to libgcc headers can be poisoned on the host because those headers are no longer included on the host. Th