compiler listing and variable alignment
This is only a recommendation to improve 'compiler visibility' and was available in Fortran IBM compilers many years ago. For a better understanding of local variable, modules, commons etc. I would be...
View ArticleVisual studio 2010 crashes with intel fortran
Hi,I have visual studio 2010 and Intel Fortran 12.0.221 (w_fcompxe_2011.5.221) is installed. When I create a new fortran project, visual studio crashes.when I do the same thing in visual studio safe...
View ArticleMicrosoft Visual Studio 2015 Update 2
Microsoft Visual Studio 2015 Update 2 is available from Microsoft. This is safe to use with Intel Visual Fortran, but not with Intel C++ at this time. (Microsoft made a breaking change in the C headers...
View ArticleReading more data than recl should allow
Say I have the following code (saved as mf.f90, so it's reading itself)program recltest ! this is a longer string implicit none integer :: ios character(len=100) :: line open(unit=101, iostat=ios,...
View ArticleError LNK2001: Unresolved external symbol when calling a FORTRAN subroutine...
I have a C wrapper that has always been 32-bit. It calls a FORTRAN subroutine. This FORTRAN subroutine is in a FORTRAN library (MyFortranLibrary_lib.lib). This FORTRAN library file has also always...
View ArticleLicense terms for library static linked with ifort
Hi,I work on some BSD-licensed open source projects, that need to be compiled with fortran.I'm considering using the Intel Fortran compiler for Windows, but I am not clear on the license terms (sorry...
View ArticleRead fails and debug wont work
I have a simple program:Program MkCallTree Implicit None Character(50) :: Cfile, Dfile Character(135):: Buffer(5000) Character(26):: Progr(20), Csv, P1, P2, P3 Character(76):: Calling(5000)...
View Articleexternal Link issues
I am getting following error when I tried to compile a .f file.-subsystem:console weibull.obj weibull.obj : error LNK2019: unresolved external symbol _PAPER referenced in function _MAIN__ weibull.obj :...
View ArticleMemory leaks in Fortran dlls
When Intel Fortran quits a program it tidies up after itself so there are no memory leaks. It seems to do this very well.What happens with dlls? When I exit a Fortran dll that I have written, do I need...
View ArticleFortran2003 : linkconstructor does not have a type with ifort version 13.1.3
Hello,I am getting the following problem when compiling a Fortran 2003 code with ifort version 13.1.3error #6404: This name does not have a type, and must have an explicit type. [LINKCONSTRUCTOR]...
View Articlepassing pointer between fortran and C
I have a C library which is called from fortran. The C lib creates a class and passes a pointer to it back to fortran. The fortran program will then pass the pointer back into the C lib later on....
View ArticleA C question
I am trying to implement some Fortran code based on some C code but there is a statement that I don't understand, so can someone please tell me whar does j += (i-j);do? If i == j then is j...
View ArticleCannot find Fortran Compiler in Intel Parallel Studio editions
Hello everyone,I am trying to install one of editions of Intel Parallel Studio XE 2016 (I installed Intel Parallel Studio XE 2016 Cluster Edition). However, after the installation, I can not find any...
View ArticleAbout calling and using Fortran dll in c
Hi! After I posted my problem about calling Fortran dll in c in this forum, But it is hard way. I struggled to try it these days. I want to use nonlinear regression analysis by odrpack. All information...
View ArticleDetect when user closes an app
My program opens an application using the ShellExecute command, e.g.irtn = ShellExecute (hwnd=null, lpOperation = 'open'C, lpFile = 'edit_this.txt', ...)In my case, txt files are associated with the...
View ArticleProblem with resource files
I wanted to change a control in a dialog I had not changed for sometime.Since moving to IVF & Visual Studio I have been using ResEdit to edit my dialogs.With this program I could not edit the...
View ArticleCan't write to registry
My setup program created three keys in the Win 10 registry and I can read them but when I try to change the value of one of them I get an error 5 (lack of access priviledge). My code looks something...
View ArticleBug Report
Hi, I have encountered an Internal compiler error when compiling with codes below:type :: test integer(1) :: a integer(1) :: b end type test type(test), parameter :: const = test(Z"7f", Z"80") endThe...
View ArticleImplicit save attribute in debug mode?
Based on a flaw in my program, I began to wonder if the MVS2013 Debug mode is based on implicit save attributes of the var's, and if so, what compiler option is causing this behaviour?The case:After...
View ArticleApparently no search in default paths for ifmodintr.lib
Dear forum users,While working with Intel Parallel Studio XE 2016 integrated in Microsoft Visual Studio 2015 to work on a C++ program that uses a Fortan library, I came across the following linker...
View Article