> -------Original Message------- > From: Jonathan Wakely <jwakely....@gmail.com> > > > Am i missing something here ? > > OK ... > > This script would be needed to bootstrap GCC. Using C++ would mean > that we need to restrict it to C++11 (since that's all that is needed > for bootstrapping GCC), and deal with all the peculiarities of the > platform's C++ compiler and linker. We already do that to build GCC > itself, but now we'd also need to do it for this tool that has to be > built first, and would need to use all the right CXXFLAGS and LDFLAGS > etc. to compile on the build machine (which might have unconventional > linker properties, for example).
Perhaps this is something the current build scripts take care of anyway. Is it possible to reuse ? > We'd also need to implement a CSV parser from scratch. > Would any of the C++11 compliant CSV parsing libraries make the cut in your analysis ? Vince CSV parser (RFC4180 + flavours) https://github.com/vincentlaucsb/csv-parser C++11 header only (MT can be turned on/off). https://github.com/ben-strasser/fast-cpp-csv-parser If not, Is there is something else that is needed for the CSV parsers to qualify ? Thanks for sharing your perspective. Much appreciated ! warm regards Saifi.