Vim Tips Wiki
(Added category, clean up)
(Added to LanguageSpecific Category. Reviewed.)
Line 1: Line 1:
{{review}}
 
 
{{Tip
 
{{Tip
 
|id=682
 
|id=682
Line 10: Line 9:
 
|text=
 
|text=
 
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:
 
 
set efm=%E%.%#rror:\ %f\\,\ line\ %l:\ %m,\%-C%.%#,\%-Z\%p^
 
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:
 
Note that you may have to change your isfilename string to not allow commas, like this:
 
let isf="@,48-57,/,.,-,_,+,#,^,,$,%,~,="
 
let isf="--AT--,48-57,/,.,-,_,+,#,^,,$,%,~,="
 
 
}}
 
}}
   
Line 21: Line 18:
 
<!-- parsed by vimtips.py in 0.541151 seconds-->
 
<!-- parsed by vimtips.py in 0.541151 seconds-->
 
[[Category:Compiler]]
 
[[Category:Compiler]]
  +
[[Category:LanguageSpecific]] <!-- should be moved to Category:Fortran if it were to be created -->

Revision as of 14:30, 25 July 2007

Previous TipNext Tip

Tip: #682 - Errorformat for Intel ifort

Created: March 23, 2004 11:04 Complexity: basic Author: Chris Hennes Version: 5.7 Karma: 18/6 Imported from: Tip#682

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