Hi,

   Has anyone attempted to use the --redirect-stdout command line
option lately?

   All my file names are showing up with the processor-id
overwriting "stdout.processor." from the left-hand-side. So, for example,
processor 0 has a file name as "0tdout.processor.", processor 1 has
"1tdout.processor.", and so on.

   I am getting the same behavior with both intel and gcc compilers.

   Making the following modification to libmesh.C sets this right:

std::stringstream filename("stdout.processor.");
filename <<  libMesh::processor_id();

to

 std::stringstream filename;
filename << "stdout.processor.";
filename <<  libMesh::processor_id();

Not sure why it is not behaving correctly with the filename passed throught
the constructor.


Manav
------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to