Vim Tips Wiki
(Added category, clean up)
(Change <tt> to <code>, perhaps also minor tweak.)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{review}}
+
{{Duplicate|1575}}
  +
{{TipImported
{{Tip
 
 
|id=682
 
|id=682
  +
|previous=681
|title=errorformat for Intel ifort 8.0
 
  +
|next=683
|created=March 23, 2004 11:04
+
|created=2004
 
|complexity=basic
 
|complexity=basic
 
|author=Chris Hennes
 
|author=Chris Hennes
 
|version=5.7
 
|version=5.7
 
|rating=18/6
 
|rating=18/6
  +
|category1=Compiler
|text=
 
  +
|category2=LanguageSpecific
Intel changed the errorformat for their fortran compiler with version 8.0. An errorformat string that works with the new compiler is:
 
 
}}
 
Intel changed the errorformat for their Fortran compiler with version 8.0. An errorformat string that works with the new compiler is:
   
  +
<pre>
set efm=%E%.%&#35;rror:\ %f\\,\ line\ %l:\ %m,\%-C%.%&#35;,\%-Z\%p^
+
set efm=%E%.%#rror:\ %f\\,\ line\ %l:\ %m,\%-C%.%#,\%-Z\%p^
  +
</pre>
   
Note that you may have to change your isfilename string to not allow commas, like this:
+
Note that you may have to change your <code>isfilename</code> string to not allow commas, like this:
   
  +
<pre>
let isf="--AT--,48-57,/,.,-,_,+,&#35;,^,,$,%,~,="
+
let isf="@,48-57,/,.,-,_,+,#,^,,$,%,~,="
}}
 
  +
</pre>
   
== Comments ==
+
==Comments==
<!-- parsed by vimtips.py in 0.541151 seconds-->
 
[[Category:Compiler]]
 

Latest revision as of 05:42, 13 July 2012

Duplicate tip

This tip is very similar to the following:

These tips need to be merged – see the merge guidelines.

Tip 682 Printable Monobook Previous Next

created 2004 · complexity basic · author Chris Hennes · version 5.7


Intel changed the errorformat for their Fortran compiler with version 8.0. An errorformat string that works with the new compiler is:

set efm=%E%.%#rror:\ %f\\,\ line\ %l:\ %m,\%-C%.%#,\%-Z\%p^

Note that you may have to change your isfilename string to not allow commas, like this:

let isf="@,48-57,/,.,-,_,+,#,^,,$,%,~,="

Comments[]