I am currently using an evaluation copy of Intel Visual Fortran 2013. I have been trying to compile from the command line a simple hello world application but am encountering problems with the linker. Initially when I used the command
ifort test.for it came back with the linker error LNK1104: Cannot open file 'ifconsol.lib' I found in one forum post a fix which suggested using the command
ifort test.for /link /libpath:"C:\Program Files (x86)\Intel\Composer XE\compiler\lib\ia32"
but that just resulted in another linker error LNK1104: Cannot open file 'kernel32.lib'
Kernel32.lib does exist in the folder C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib and that folder is in the system path so I don't know what is going on here.
Any help would be greatly appecriated.
Thanks
Ed