Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29242 Discussions

Extra characters in MSVS output window

DavidWhite
Valued Contributor II
292 Views

Anyone seen anything like this? I'm getting various numbers at the left of each line in the Output window. No rhyme or reason with the values. Most lines in a project have the same value, but they change periodically.

Thanks, David

7>Usrymx.f90

7>Mix2.f90

7>Ymdinit.f90

7>ReadRecord.f90

7>Classify.f90

7>Fixflo.f90

7>AutoRun.f90

7>Usrcrs.f90

0 Kudos
1 Reply
Steve_Nuchia
New Contributor I
292 Views

When you build on a multi-processor (or multicore) machine the default in VS2005/8 is to build projects in parallel if possible, using one thread per installed logical processor. The output is decorated with a sequence number to distinguish which project it is associated with; output line appear in chronological order.

In VS2008 there is another output window available, "Build Order" in the dropdown list, that sorts by the project number.

You can disable parallel building in Tool / Options / Build-and-run, set the number of parallel threads to 1.

0 Kudos
Reply