How to use Intel fortran compiler
From KDevelop
- create a new project (simple hello-world fortran project)
- Project->Project Options->Configure Options->Fortran
- Compiler Command: ifort
- Compiler Flags: $(whatever appropiate)
- Open configure.in and remove:
AC_LANG_FORTRAN77, AC_PROG_F77, AC_F77_LIBRARY_LDFLAGS
insert instead
AC_PROG_FC([ifort ifc])
- Automake & Friends
- Configure
- Compile as usual