- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Today I installed the last version of my Intel Fortran compiler (Intel Composer XE 2011 Update 1 (package 127) in a Windows 7 (64 bits). I use a command windows (cmd) to compile my programs using a batch files. The procedure to compile is working but not for the link. I have the next message:
ifort: error #10036: unable to run 'link'
If I run link program in the same command window seems that it works...
The same situation is for 32 bits and 64 bits applications...
Any suggestion? At the moment if impossible to create any program in this situation.
I have included the output of the environment variables using set command.
Thanks in advance
Javier Glez
ifort: error #10036: unable to run 'link'
If I run link program in the same command window seems that it works...
The same situation is for 32 bits and 64 bits applications...
Any suggestion? At the moment if impossible to create any program in this situation.
I have included the output of the environment variables using set command.
Thanks in advance
Javier Glez
Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't see that you included the SET output. Please show the entire command session from the start.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The double slashes are harmless.
What is the content of C:\Program Files (X86)\Intel\ComposerXE-2011\bin\ia32\ifort.cfg?
What is the content of C:\Program Files (X86)\Intel\ComposerXE-2011\bin\ia32\ifort.cfg?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Only one line:
# This Configuration file may be used for additional switches
# This Configuration file may be used for additional switches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
For any reason ifort program don't found the link program...
I use a bat file to compile my program. If I have
ifort /c space_group_info.f90 /O2 /nologo /IC:\CrysFML\Intel\LibC
ifort /exe:space_group_info *.obj C:\CrysFML\Intel\LibC\crysfml.lib
then the compilation if OK but I have the error message
ifort: error #10036: unable to run 'link'
a workaround that I have found is call directly the link program
ifort /c space_group_info.f90 /O2 /nologo /IC:\CrysFML\Intel\LibC
link /out:space_group_info.exe *.obj C:\CrysFML\Intel\LibC\crysfml.lib
and now I have my executable file without problem.
Aparently the problem is the ifort program and I don't know if it is related that I use a spanish version of Windows 7....
I use a bat file to compile my program. If I have
ifort /c space_group_info.f90 /O2 /nologo /IC:\CrysFML\Intel\LibC
ifort /exe:space_group_info *.obj C:\CrysFML\Intel\LibC\crysfml.lib
then the compilation if OK but I have the error message
ifort: error #10036: unable to run 'link'
a workaround that I have found is call directly the link program
ifort /c space_group_info.f90 /O2 /nologo /IC:\CrysFML\Intel\LibC
link /out:space_group_info.exe *.obj C:\CrysFML\Intel\LibC\crysfml.lib
and now I have my executable file without problem.
Aparently the problem is the ifort program and I don't know if it is related that I use a spanish version of Windows 7....

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page