Questions tagged [photran]

Photran is an IDE and refactoring tool for Fortran based on Eclipse and the CDT. Photran 9.1 was released with Eclipse 4.5 (Mars) on June 24, 2015. Photran supports Fortran 77-2008.

Photran is part of the Parallel Tools Program (PTP) of the Eclipse Foundation. A makefile is required for Photran to identify which compiler you are using so that the compiler can parse the error messages, since Photran simply calls the compiler and different compilers use different formats for error messages.

References

21 questions
0
votes
0 answers

How to run a mixed C++/Fortran project under Eclipse IDE?

I was trying to compile a mixed programming lanaguage (C++/Fortran) sample project provided by Intel Compiler 2013 under Eclipse IDE. I can run this project successfully under Visual Studio IDE (on Windows OS system), but I have not figured out how…
Li-Pin Juan
  • 1,156
  • 1
  • 13
  • 22
0
votes
1 answer

Fortran in Eclipse: LARGE program will run, but throws java.lang.NullPointerException on debug

I have begun working on a code (the DALTON quantum chemistry code) that is millions of lines of FORTRAN in size. I would like to debug this through Eclipse so have been working on getting it setup within the IDE. All is running fine, the code seems…
0
votes
1 answer

Compile errors with Fortran90

All, I've been fighting these errors for hours, here's my code: program hello implicit none integer :: k, n, iterator integer, dimension(18) :: objectArray call SetVariablesFromFile() do iterator = 1, 18 write(*,*) objectArray(iterator) end…
0
votes
0 answers

fortran: using pgplot with eclipse photran

So I am really not a Fortran programmer at all, but I have some code I am working with that uses the pgplot graphics libraries in fortran. I am able to get the code running in fortran from the console using the following commands. gfortran -o simple…
krishnab
  • 9,270
  • 12
  • 66
  • 123
0
votes
2 answers

Why does Eclipse's Photran require 'call flush(6)' after 'write' to prevent buffering to std out?

I'm using Classic Eclipse 4.2.2 with the Photran plugin and cygwin's gfortran compiler on a Windows 7 Professional machine. If I remove 'call flush(6)' below, the program does not write to console until AFTER reading from std in: program…
-2
votes
1 answer

Eclipse Photran can't find module named: to

I am building a large Fortran project with hundreds of files that has successfully been built using make. I am now trying to create an Eclipse project for it, but have run into a strange problem, which I don't believe is a Fortran problem. As I…
Dan Eckhart
  • 245
  • 2
  • 8
1
2