SYSTEMQQ call with quotes
I'm trying to use SYSTEMQQ with quotes for the command and arguments and it doesn't seem to work. It's OK if either the command or the arguments are quoted, but not both.result = systemqq (...
View ArticleVisual Studio integration quirks
(I think I'm using the integration that came with the 2015 beta under VS2010.)Is there some way that module dependencies can be tracked across projects when a multiple project build is done? If not,...
View ArticleModule dependencies with 'include' statements
I am using VS2010 with Intel(R) Composer XE 2013 SP1 Update 1 (package 139)I have the following:modA.f90 module A contains include 'functions.fi' end module Afunctions.fi subroutine f use B end...
View ArticleVisual Studio Not Found, Error LNK1104 cannot open .EXE
Hello,I just purchased Intel Composer XE 2013 SP1 for my windows 7 64 bit computer. I already had Microsoft Visual Studio 2010 Shell installed on my computer before installing intel composer. When I...
View ArticleTrick for creating a large text file with known, fixed content?
Maybe there is a trick I am not aware of...Assume I need my code to write a text file which content is fixed (say, a template file, or a mini help file) and which will not be modified by the code...
View ArticleIntel Visual Fortran 15 now available
Version 15.0 of the Intel Visual Fortran Compiler is now available from the Intel Registration Center, if your support term hasn't yet expired. Announcements about this will go out soon. The product...
View ArticleZero length array constructors
IMPLICIT NONE TYPE t END TYPE t TYPE(t), PARAMETER :: array(0) = [t::] END >ifort "2014-08-27 ZeroLength.f90" Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Intel(R)...
View ArticleOverloaded structure constructors get distracted by abstract
I think this has been around for a little while, but the new version prompted me to flush it out.MODULE MA IMPLICIT NONE PRIVATE PUBLIC :: t TYPE :: t INTEGER :: comp END TYPE t INTERFACE t MODULE...
View ArticleSuperfluous tokens & failure to diagnose
Short and sweet. PRINT "(A)", 'There is something '& & // 'wrong with this statement.' END>ifort /c /check:all /warn:all /standard-semantics /stand "2014-08-27 AFewTooMany.f90" Intel(R)...
View ArticleProblems installing 15.0
Steve,I'm having great difficulty installing this version, and when I tried to submit the report to Premier Support, got the very helpful "an error occurred while submitting your request."The error I...
View ArticleTraceback truncated unless /Od is in effect
The following test program, when run on a file with fewer lines (2) than the program tries to read (3), gives an incomplete traceback if, in addition to the /traceback option, the /Od option is also...
View Articlehow to make work together two different version of the compiler on the same...
Hello,I would like to know if we can have two different version of the Intel Fortran compiler on the same domain environment (on different servers).We have actually two tokens which are both on the...
View ArticleShare COMMON BLOCK between EXE and 2 DLL's.
I have an old DLL (source code is lost) created with Compaq Visual Fortran that exports a common block. I'm trying to add another DLL to the project that uses the same common block . The main...
View ArticleUnable to get past problem in code
All,I have been trying to compile a code handed over to me. I am using Visual Studio with the Intel Fortran 10.1.011 compiler. I created the project and included all the necessary files and everything...
View Articlebufferoverflowu.lib link error
I have a team of 4 working on several different Fortran projects in a code repository. I can successfully build all of the projects. My coworkers cannot. They each get a link error that says "Cannot...
View ArticleProblem after XE 15.0.0.108 install
After the install some code I has gave a number of build errors most of which are now resolved but there are a few things I really do not understand. Consider the source below which is a simple pared...
View ArticleXE 2015 changes some project settings
After installing XE 2015, but still using XE 2013 to build a project, I got this warning, and corresponding error that the DLL was not found:HEADTANK: warning:...
View ArticleMixed Fixed and Free Comments and Continuation Syntax
I am using Intel Visual Fortran 64 Compiler XE, Version 12.0.4.196 Build 20110427 from a Windows 7 command line. Here is some example code I am trying to compile: PROGRAM HELLO ! This is a comment C...
View ArticleFeature requests
...is there a recommended place to submit them? I have a couple of very simple ones that I would dearly like to enjoy. Not complex function or calculation features, but source code formatting. Surely...
View ArticleInternal subroutines in drop down list
Hello,I've used INTERNAL SUBROUTINES in my Fortran code:PROGRAM prog<...> CALL internal1 CONTAINS SUBROUTINE internal1 < ...> END SUBROUTINE internal1 END PROGRAM progINTEL VISUAL FORTRAN...
View Article