Intel Fortran Compiler For Linux 11.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Intel Fortran Compiler For Linux 11.0 (Default branch)
# 1  
Old 11-16-2008
Intel Fortran Compiler For Linux 11.0 (Default branch)

This is Intel's fully optimized Fortran compiler for Intel-based CPUs. It complies with the Fortran 95 specifications. License: Free for non-commercial use Changes:
Fortran 2003 support was extended. OpenMP support was updated to 3.0. Parallel compilation was improved. Many other improvements were made. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

FORTRAN Compiler

Need assistance in Fortran Compiler I need to install Fortran compiler on Linux distribution . I don't have root access to use rpm or yum to install compiler . Is there any way I can get it ? Are there any sites that has fortran compiler . Any links to download and install . (10 Replies)
Discussion started by: ajayram_arya
10 Replies

2. Shell Programming and Scripting

Compiling FORTRAN into Linux

Hello, I use Linux on Ubuntu 12.04. I have a fortran script with extension .f and I want to compile it to an executable file in linux. I have used this command: f77 -o snp_hwe.exe snp_hwe.f But I receive this error: (.text+0x18): undefined reference to `main' collect2: ld returned 1... (1 Reply)
Discussion started by: Homa
1 Replies

3. Linux

Fortran Compiler cannot create executables

Hello everyone, I am trying to re-install quantum espresso-4.3 on the University's LINUX interface (because of a recent crash and I lost most of my files). when I " ./configure ", It is giving an error stating that : checking building system type... x86_64-unknown-linux-gnu checking... (7 Replies)
Discussion started by: Physicslad78
7 Replies

4. Linux

Fortran 90 compiler

Hi everybody: Could anybody help me where could I download Fortran 90 complier? Thanks in advance. :) (2 Replies)
Discussion started by: tonet
2 Replies

5. Linux

why is fortran used to port linux to others?

what is the speciality of fortran to be used while porting linux to other language? (1 Reply)
Discussion started by: sravus
1 Replies

6. Programming

C Compiler for Solaris 8 (Intel)

hi I'm looking for a C Compiler that will run on a Solaris 8 (Intel) platform and that doesn't need to be complied. I've tried gcc binaries but they don't seem to work. Thanx. (5 Replies)
Discussion started by: ianf
5 Replies
Login or Register to Ask a Question
FC(1)							      General Commands Manual							     FC(1)

NAME
fc - frontend script to the f2c fortran compiler SYNOPSIS
/usr/bin/fc [-o objfile] [-c] [-S] [-C] [-u] [-w] [-w66] [-D switch] [-I includepath] [-Ntnnn] [-P] files [-l library] DESCRIPTION
fc is a script intended to be used as a front end to the f2c FORTRAN-to-C translator. It is supposed to make the whole f2c and C compiler setup look like a real Fortran compiler. File arguments with a .f suffix are compiled as Fortran source. Files with a .F suffix are passed through the C preprocessor cpp(1) first. Files with .c (C source) or .s (assembly source) suffixes are passed to the C compiler directly. Files with a .e suffix are treated as efl source files, and files with a .r suffix are treated as RATFOR source files. OPTIONS
-o objfile Produce an output executable named objfile rather than using the default name a.out. -c Do not call the linker; instead, leave relocatable object files as *.o. -S Produce assembly output as file.s -C Compile in extra code to check that array subscripts are in bounds. -l library Libraries specified with this option are passed to the linker. -U def Definitions specified with this option are passed to C compiler (for .c files) or to cpp (for .F files) to remove definition. -u Complain about undeclared variables. -v, --version Print version of f2c in use -w Omit all warning messages. -w66 Omit Fortran 66 (Fortran IV) compatibility warning messages. -D switch The given switch is passed to the C compiler (for .c files), to cpp (for .F files) and to f2c. -I includepath Passed to the C compiler (for .c files), to cpp (for .F files) and to f2c. -Ntnnn Allow nnn entries in table t. -P Emit .P files. BUGS
fc isn't really very good -- try fort77 (1), which does a better job. This manual page isn't really very good either... AUTHOR
S. Feldman, D. Gay, M. Maimone, N, Schryer are all mentioned in the paper on the conversion of Fortran to C. Peter Maydell (pmaydell@chiark.greenend.org.uk) wrote this manual page, and Alan Bain (alanb@chiark.greenend.org.uk) made some minor modi- fications. SEE ALSO
f2c(1), fort77(1), cc(1), cpp(1), ratfor(1) May 1999 FC(1)