- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
Best regards,
Link kopiert
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
"when we press the button for start debugging give a warning(pic3)" -
when you pressed the button to start debugging, Visual Studio attempted to build your program first. However it encountered many compilation errors - see "Output" window at the bottom of the screen. You need to fix these errors first.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
When ı compile same pre-written Fortran program with the old version compiler,program running smoothly so ı think that compilation errors stems from something else but i didn't find reeason.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
Could it be that the new compiler is finding errors with the code that the older compiler did not?
Perhaps when you "copy and paste" the code something was missed? (e.g. include files)
Are you creating the correct kind of "new project"?
The errors are shown in the output window (and in the buildlog.html file) you need to correct these errors first.
Many of us have been through the situation where code used to compile and run with an old compiler but fails with a new one.
If you attach the build log file or better still the failing code (at the minimum the routine console25.f90) we will be better able to help you.
Les
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
The code as posted references several external files; search for the word "include" and you will see the names of these files.
If it cannot find the file, it will give an error.
I suspect that your previous configuration had an INCLUDE path set to the location of these files. You'll need to do the same for the new environment.
--Lorri
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
i have this file but program still doesn't compile.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
Rather than attach screenshots (for some reason two of the screenshots you attached are showing different pictures now), please attach a ZIP of your project folder after you get the error messages. This will help us help you.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
I add pictures and fortran code and necessary include folder as RAR in attachment. pictures showing different because pic1 picture of first opened with intel parallel studio xe 2013 but there start debugging button isn't active so ı copy entire code and paste empty project page to compile then start debugging button is active(pic2) when we press the button for start debugging give a warning(pic3).
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
The debugging won't start because the program had errors during the build. One of the screenshots shows the compilation terminating due to "too many errors" but you didn't show the build log I asked for which would show those errors.
When I compile the source you provide, I do get three errors due to mismatched argument types, but you're clearly getting more.
For example, one of the errors is that at line 1784 you pass the COMPLEX(16) array rvec to routine relaxap1a, but the corresponding argument there is declared REAL (that means REAL(4). This is simply wrong. There are more errors like this highlighted by the compiler.
Without seeing the buildlog.htm file from the Debug folder, I don't know what else went wrong. Please ZIP that file and attach it here.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
I attach buildlog.htm file here
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
You have a fixed-form source file, but you named it with a .f90 file type, which causes it to be treated as free-form source. Rename the file to Console34.f and most of the problems should disappear.
See also Doctor Fortran in "Source Form Just Wants to be Free"
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
You didn't show the error message. The include files would normally want to be in the same directory as the .f source, which you have done.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
The error message says that it can't find Console34.f90. You renamed the source file in the directory but not in the project. Probably the easiest way to handle this is to remove the .f90 source from the project and add the .f. In the future you can rename the file in the "Solution Explorer" and it will take care of both actions.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
Since you already renamed the file separately, click once on the .f90 file in Solution Explorer and press Delete. It may ask if you want to remove the file or delete the file from disk - choose Remove. Now right click on the project, select Add > Existing Item. Select your .f90 file and add it.
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
- Als neu kennzeichnen
- Lesezeichen
- Abonnieren
- Stummschalten
- RSS-Feed abonnieren
- Kennzeichnen
- Anstößigen Inhalt melden
These errors are not what you saw before you fixed the filename. See my reply #10 above for an explanation of the errors you're seeing now. These are bugs in your program source that you need to fix.
- RSS-Feed abonnieren
- Thema als neu kennzeichnen
- Thema als gelesen kennzeichnen
- Diesen Thema für aktuellen Benutzer floaten
- Lesezeichen
- Abonnieren
- Drucker-Anzeigeseite