FORTRAN Compiler


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting FORTRAN Compiler
# 1  
Old 02-27-2014
RedHat 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 .

Last edited by ajayram_arya; 02-27-2014 at 03:52 PM..
# 2  
Old 02-27-2014
Installing a compiler without root access is difficult and unlikely to work.

Also, you probably need a compiler to do it.

Can you just use a different machine?
# 3  
Old 02-27-2014
How about using a online compiler?

--ahamed
# 4  
Old 02-27-2014
This is a production box ...no online compilers

---------- Post updated at 02:24 PM ---------- Previous update was at 02:23 PM ----------

Corona688...Just by installing GCC compiler fortran is also installed as a part of this compiler is that true...
# 5  
Old 02-27-2014
Quote:
Originally Posted by ajayram_arya
Corona688...Just by installing GCC compiler fortran is also installed as a part of this compiler is that true...
Generally, no.

If you don't have a compiler and can't install one, the logical thing to do is to use a different computer. Programs compiled on one computer should be runnable on another if their architecture and OS is very similar.
# 6  
Old 02-27-2014
Thank you Corona688.

Suppose I install GCC compiler . Can i install Fortran on the system . Can you provide some steps for it
# 7  
Old 02-27-2014
Depends on your system. Generally, a package manager like yum or rpm or emerge would be involved.

If you don't have root access for these, I suggest doing so on a different computer where you do.
This User Gave Thanks to Corona688 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

FORTRAN p-norm

What would be an accurate and efficient computation of the p-norm in Fortran? Integer :: p Real :: sum, pn Do i = 1, Size (a) sum = sum + ((Abs a(i)) ** p) End Do pn = sum ** (1.0/ Real(p)) (0 Replies)
Discussion started by: kristinu
0 Replies

2. 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

3. UNIX for Dummies Questions & Answers

cc compiler and gcc compiler

hi, can we install gcc compiler in unix based OS(sun solar,IBM AIX,HP,etc) and also can we install sun cc compiler in AIX environment and vice versa. and more ..is linux support cc compiler regards Ajay (3 Replies)
Discussion started by: ajaysahoo
3 Replies

4. Programming

Fortran 77 and gfortran

Hi! I have a program in fortran77. This program was compiled with pgf90, but now, I need compiled it with gfortran. I show a bit of code. program hello PARAMETER(a=100) integer a write(*,*)'value ', a end program hello What's the problem? Thanks (2 Replies)
Discussion started by: kekaes
2 Replies

5. Programming

learning fortran

Can anyone recommend a very good Fortran online course for unix. It should also cover Fortran X11 programming if possible. I understand this learning cannot be rushed but a course that addresses useful topics sooner is best. If it isn't free, that's okay. (1 Reply)
Discussion started by: gav2251
1 Replies

6. Programming

How Can a Machine Reads a Compiler Since A Compiler is Written in Text! Not Binaries?

To make a programming language you need a compiler, so what was the first programming language and how was is created if you need the compiler first? The compiler itself is considered as a high language comparing to the machine! since the compiler is not created in 1's and 0's... Eventhough i... (12 Replies)
Discussion started by: f.ben.isaac
12 Replies

7. UNIX for Dummies Questions & Answers

xl C/C++ compiler to GCC compiler

Hi, we are converting from IBM-AIX(xl c/c++ compiler) to Linux(GCC complier). As a part of this i need to change the CFLAGS. The xl c/c++ complier CFLAGS is CFLAGS := $(CDEBUG) $(PROJECT_INCLUDE_DIRS) $(COBJECT_MODE) -qcpluscmt -qmakedep -qcheck=all \ -qalign=bit_packed $(LINT_FLAGS)... (0 Replies)
Discussion started by: pbattu1
0 Replies

8. 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
Login or Register to Ask a Question