[pygccxml-development] Re: gccxml preprocessor
Brought to you by:
mbaas,
roman_yakovenko
|
From: Neal B. <ndb...@gm...> - 2006-05-12 23:18:46
|
Now, believe it or not (I tried it twice!), if I just add '-dD' to gccxml
command, now it looks OK:
/usr/bin/gccxml -I"." -I"/usr/local/src/boost.cvs" -U"__MINGW32__"
"/usr/local/src/boost.cvs/libs/random/random_test.cpp"
-fxml="/usr/local/src/pygccxml/pyplusplus_dev/examples/pyboost_dev/pyboost/random/generated/random_test.xml"
-dD -E > stuff2
void
compiler_log_formatter::log_build_info( std::ostream& output )
{
output << "Platform: " << "linux" << '\n'
<< "Compiler: " << "GCC-XML C++ version " 700 << '\n'
<< "STL : " << "GNU libstdc++ version " "20060304" << '\n'
<< "Boost : " << 103400/100000 << "."
<< 103400/100 % 1000 << "."
<< 103400 % 100 << std::endl;
}
|