<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196307#M150973</link>
    <description>&lt;P&gt;Pierre78 wrote: "The /verbose option doesn’t exist."&lt;/P&gt;
&lt;P&gt;That finding may be a clue to what is going wrong. As Andrew also noted, you may have more than one Link.exe or Link.bat accessible along %PATH%. For example, Cygwin installs a link.exe that is used to create and manage links to other files. If this is the case for you, just make sure that the MSVC linker appears earlier along %PATH%.&lt;/P&gt;
&lt;P&gt;Every version of the Microsoft linker that I have seen for years has had&amp;nbsp; the /verbose option.&lt;/P&gt;
&lt;P&gt;Please report what you see when, in your development command window, you type the command&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; link /?&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jul 2020 09:22:14 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2020-07-31T09:22:14Z</dc:date>
    <item>
      <title>Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195673#M150881</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I do the compilation with ifort like this: ifort file1.f90 file2.F90 file3.f90 /exe:program.exe&lt;/P&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;P&gt;Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 15.0.7.287 Build 2016051&lt;/P&gt;
&lt;P&gt;File2.F90(793): remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W&amp;gt;=D+7'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No error during compilation, the .obj files are created, but the exe file is not created, probably due to an error during link&lt;/P&gt;
&lt;P&gt;The problem: the link is done in a new shell window that closes immediately after, so it is not possible to see the messages. I just can see a command window blinking but it is too quick to read something.&lt;/P&gt;
&lt;P&gt;I also tried to launch a link command beginning by start: start Link xx.obj&lt;/P&gt;
&lt;P&gt;Or finishing by /K: Link xx.obj /K&lt;/P&gt;
&lt;P&gt;But without success&lt;/P&gt;
&lt;P&gt;Any idea to know what is wrong ?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Remark: Compilation with visual studio is OK:&lt;/P&gt;
&lt;P&gt;1&amp;gt;------ Rebuild All started: Project: Verifications, Configuration: Debug Win32 ------&lt;/P&gt;
&lt;P&gt;1&amp;gt;Deleting intermediate files and output files for project 'Verifications', configuration 'Debug|Win32'.&lt;/P&gt;
&lt;P&gt;1&amp;gt;Compiling with Intel(R) Visual Fortran Compiler XE 15.0.7.287 [IA-32]...&lt;/P&gt;
&lt;P&gt;1&amp;gt;file2.F90(793): remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W&amp;gt;=D+7'.&lt;/P&gt;
&lt;P&gt;1&amp;gt;Linking...&lt;/P&gt;
&lt;P&gt;1&amp;gt;Embedding manifest...&lt;/P&gt;
&lt;P&gt;1&amp;gt;Build log written to file://c:\user\visual studio 2015\projects\verifications\Verifications\Debug\BuildLog.htm&lt;/P&gt;
&lt;P&gt;1&amp;gt;Verifications - 0 error(s), 0 warning(s)&lt;/P&gt;
&lt;P&gt;========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 14:52:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195673#M150881</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-29T14:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195688#M150883</link>
      <description>&lt;P&gt;Check whether all three object files from the compilation are present (and none has zero length). If not, use ifort /c &amp;lt;source file names&amp;gt; to create them.&lt;/P&gt;
&lt;P&gt;Now, try calling link directly:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;link file1.obj file2.obj file3.obj&lt;/P&gt;
&lt;P&gt;If you do not see any messages, you can also add the /verbose option. If you still see nothing, try&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;link /?&lt;/P&gt;
&lt;P&gt;We may be able to figure out what the problem is by examining the console outputs that you get.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 15:41:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195688#M150883</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-07-29T15:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195700#M150885</link>
      <description>&lt;P&gt;Thanks for answering.&lt;/P&gt;
&lt;P&gt;Object file are generated normally&lt;/P&gt;
&lt;P&gt;The /verbose option doesn’t exist.&lt;/P&gt;
&lt;P&gt;The problem is that console output is not readable because the command windows closes.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 16:35:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195700#M150885</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-29T16:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195710#M150886</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jimdempseyatthecove_0-1596042045430.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/11512i20DA8B6F01D1FCEA/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="jimdempseyatthecove_0-1596042045430.png" alt="jimdempseyatthecove_0-1596042045430.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Select the desired command line build environment&lt;/P&gt;
&lt;P&gt;For Hello World (project created in MS VS but no build performed)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;dir
 Volume in drive C has no label.
 Volume Serial Number is F8CE-A4A4

 Directory of C:\Users\Jim\Source\Repos\Console2\Console2

07/29/2020  12:11 PM    &amp;lt;DIR&amp;gt;          .
07/29/2020  12:11 PM    &amp;lt;DIR&amp;gt;          ..
07/29/2020  12:04 PM               484 Console2.f90
07/29/2020  12:04 PM             2,057 Console2.vfproj
07/29/2020  12:04 PM             1,071 ReadMe.txt
               3 File(s)          3,612 bytes
               2 Dir(s)  348,342,235,136 bytes free

C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;ifort /c Console2.f90
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on IA-32, Version 19.1.0.166 Build 20191121
Copyright (C) 1985-2019 Intel Corporation.  All rights reserved.


C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;dir
 Volume in drive C has no label.
 Volume Serial Number is F8CE-A4A4

 Directory of C:\Users\Jim\Source\Repos\Console2\Console2

07/29/2020  12:12 PM    &amp;lt;DIR&amp;gt;          .
07/29/2020  12:12 PM    &amp;lt;DIR&amp;gt;          ..
07/29/2020  12:04 PM               484 Console2.f90
07/29/2020  12:12 PM               898 Console2.obj
07/29/2020  12:04 PM             2,057 Console2.vfproj
07/29/2020  12:04 PM             1,071 ReadMe.txt
               4 File(s)          4,510 bytes
               2 Dir(s)  348,342,243,328 bytes free

C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;ifort Console2.obj
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on IA-32, Version 19.1.0.166 Build 20191121
Copyright (C) 1985-2019 Intel Corporation.  All rights reserved.

Microsoft (R) Incremental Linker Version 14.26.28806.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:Console2.exe
-subsystem:console
Console2.obj

C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;dir
 Volume in drive C has no label.
 Volume Serial Number is F8CE-A4A4

 Directory of C:\Users\Jim\Source\Repos\Console2\Console2

07/29/2020  12:12 PM    &amp;lt;DIR&amp;gt;          .
07/29/2020  12:12 PM    &amp;lt;DIR&amp;gt;          ..
07/29/2020  12:12 PM           484,864 Console2.exe
07/29/2020  12:04 PM               484 Console2.f90
07/29/2020  12:12 PM               898 Console2.obj
07/29/2020  12:04 PM             2,057 Console2.vfproj
07/29/2020  12:04 PM             1,071 ReadMe.txt
               5 File(s)        489,374 bytes
               2 Dir(s)  348,341,751,808 bytes free

C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First ifort built from .f90 to .obj only (compiled with /c)&lt;BR /&gt;Second ifort built from .obj to .exe&amp;nbsp; (IOW Link only)&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 17:18:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195710#M150886</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-07-29T17:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195923#M150926</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_0-1596091823085.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/11531i8800EB6BEBFA7675/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_0-1596091823085.png" alt="andrew_4619_0-1596091823085.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 06:50:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195923#M150926</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-30T06:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195924#M150927</link>
      <description>&lt;P&gt;Hello Jim&lt;/P&gt;
&lt;P&gt;That’s what I do, but when ifort does the link, it opens a new windows, performs the link, and then the window closes so it is not possible to get the potential error message (unless recording the screen with a high speed camera)&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 06:55:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195924#M150927</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-30T06:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195980#M150931</link>
      <description>&lt;P&gt;Strange, opening the Intel command window and doing a simple hello world build look like below for me. why don'y you do the same and copy paste the full output to see if there are any clues people can spot.&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;Copyright (C) 2009-2020 Intel Corporation. All rights reserved.
Intel(R) Inspector 2020 (build 604266)
Copyright (C) 2009-2020 Intel Corporation. All rights reserved.
Intel(R) Advisor 2020 (build 605410)

Intel(R) MPI Library 2019 Update 7 for Windows* Target Build Environment for Intel(R) 64 applications
Copyright 2007-2020 Intel Corporation.

Copyright (C) 1985-2019 Intel Corporation. All rights reserved.
Intel(R) Compiler 19.1 Update 1 (package 216)

**********************************************************************
** Visual Studio 2017 Developer Command Prompt v15.9.22
** Copyright (c) 2017 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'

C:\Program Files (x86)\IntelSWTools&amp;gt;cd %homepath%

C:\Users\cadfi&amp;gt;ifort hello.f90
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.1.216 Build 20200306
Copyright (C) 1985-2020 Intel Corporation.  All rights reserved.

Microsoft (R) Incremental Linker Version 14.16.27039.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:hello.exe
-subsystem:console
hello.obj

C:\Users\cadfi&amp;gt;dir hello.*
 Volume in drive C is OS
 Volume Serial Number is 3257-09CB

 Directory of C:\Users\cadfi

30/07/2020  10:24           658,432 hello.exe
30/07/2020  10:18               125 hello.f90
30/07/2020  10:24             1,424 hello.obj
               3 File(s)        659,981 bytes
               0 Dir(s)  365,178,253,312 bytes free

C:\Users\cadfi&amp;gt;hello
  hello world
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 09:29:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1195980#M150931</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-30T09:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196032#M150937</link>
      <description>&lt;P&gt;FWIW As an observation, it is amazing how far advanced we've come in compiler code generation and O/S integration that we've finally managed to squeeze a 124 byte 3 statement program into the tiny little space of 658,432 bytes of executable.&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:03:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196032#M150937</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-07-30T13:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196035#M150939</link>
      <description>&lt;P&gt;Yes Jim I remember the pain of&amp;nbsp; DOS programs that had to fit in 512K of memory along with all OS and graphics memory. For every day spent adding new features we had two days of finding ways to make the code smaller so it could run. I remember the joy of the Phar Lap DOS extender in Powerstation. This first thing I did was make a 10 line program with a 6MB integer array that I filled with 1 to 6M and then&amp;nbsp; was amazed that I could randomly ask what was at&amp;nbsp; location 1,345,567 or similar&amp;nbsp; and marvelled when the answer&amp;nbsp;1,345,567&amp;nbsp; was printed on the screen. Such joy! Such Freedom! Been writing bloatware every since &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:25:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196035#M150939</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-30T13:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196076#M150946</link>
      <description>&lt;P&gt;short video:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://u.pcloud.link/publink/show?code=XZhk03kZor39V4IDFCLbMyHRHXqiCYD3bcOV" target="_blank"&gt;https://u.pcloud.link/publink/show?code=XZhk03kZor39V4IDFCLbMyHRHXqiCYD3bcOV&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 16:05:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196076#M150946</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-30T16:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196083#M150947</link>
      <description>&lt;P&gt;so do you get the same is you do the minimal command line?&lt;/P&gt;
&lt;P&gt;ifort&amp;nbsp; name.f90&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check the path. Do you have some batch file that is being run with the same name as an ifort command?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 16:37:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196083#M150947</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-30T16:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196110#M150952</link>
      <description>&lt;P&gt;This is what I can see from the flashing window:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jimdempseyatthecove_0-1596133043111.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/11550i3B6D286AC492E80D/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="jimdempseyatthecove_0-1596133043111.png" alt="jimdempseyatthecove_0-1596133043111.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There wasn't a frame capture with the remainder of the output.&lt;/P&gt;
&lt;P&gt;Your command line, and linker output (as much as I can see) is OK.&lt;/P&gt;
&lt;P&gt;On my system, the Console2 link that works:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;C:\Users\Jim\Source\Repos\Console2\Console2&amp;gt;link Console2.obj /SUBSYSTEM:console /OUT:Console2.exe
Microsoft (R) Incremental Linker Version 14.26.28806.0
Copyright (C) Microsoft Corporation.  All rights reserved.
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 18:33:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196110#M150952</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-07-30T18:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196118#M150954</link>
      <description>&lt;P&gt;Just a thought but this has happened to me in the past.&lt;/P&gt;
&lt;P&gt;Could your virus checker be deleting the .exe file as soon as it gets created?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 19:18:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196118#M150954</guid>
      <dc:creator>Stephen_Sutcliffe</dc:creator>
      <dc:date>2020-07-30T19:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196122#M150956</link>
      <description>&lt;P&gt;I have never seen the link appear in a new window. Ever.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 19:26:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196122#M150956</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-07-30T19:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196286#M150971</link>
      <description>&lt;P&gt;Hello Jim , I tried this, but same result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;del *.obj&lt;/P&gt;
&lt;P&gt;del example_not_ok.exe&lt;/P&gt;
&lt;P&gt;ifort example_not_ok.F90 /exe:example_not_ok.exe&lt;/P&gt;
&lt;P&gt;link example_not_ok.obj /SUBSYSTEM:console /OUT:example_not_ok.exe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normally I should have an error message&amp;nbsp; about a missing subroutine (call Missing_Routine)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Workaround: I compile in the visual_studio environment to get the messages, but I much prefer to compile in a shell window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/117614"&gt;@Steve&lt;/a&gt;:&amp;nbsp; there's a first time for everything&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pierre&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 07:19:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196286#M150971</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-31T07:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196290#M150972</link>
      <description>&lt;P&gt;I asked this a few posts back. What happens when you do "&lt;SPAN&gt;ifort example_not_ok.f90" ? Also, check in the PATH that you do not have something such as "link.bat" that is sitting between the your command line an the invocation&amp;nbsp;of link.exe. A rogue (non-standard) script could cause the problem you are seeing.&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 07:50:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196290#M150972</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-31T07:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196307#M150973</link>
      <description>&lt;P&gt;Pierre78 wrote: "The /verbose option doesn’t exist."&lt;/P&gt;
&lt;P&gt;That finding may be a clue to what is going wrong. As Andrew also noted, you may have more than one Link.exe or Link.bat accessible along %PATH%. For example, Cygwin installs a link.exe that is used to create and manage links to other files. If this is the case for you, just make sure that the MSVC linker appears earlier along %PATH%.&lt;/P&gt;
&lt;P&gt;Every version of the Microsoft linker that I have seen for years has had&amp;nbsp; the /verbose option.&lt;/P&gt;
&lt;P&gt;Please report what you see when, in your development command window, you type the command&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; link /?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 09:22:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196307#M150973</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-07-31T09:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196337#M150974</link>
      <description>&lt;P&gt;Many thanks&lt;/P&gt;
&lt;P&gt;No link in path ,&amp;nbsp;No link.bat&lt;/P&gt;
&lt;P&gt;What happens&amp;nbsp; when I do “ifort example_not_ok.F90” :&lt;/P&gt;
&lt;P&gt;Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 15.0.7.287 Build 20160518&lt;/P&gt;
&lt;P&gt;Copyright (C) 1985-2016 Intel Corporation.&amp;nbsp; All rights reserved.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I specify that when there is no error the exe file is generated.&lt;/P&gt;
&lt;P&gt;Here the content of link /?&lt;/P&gt;
&lt;P&gt;usage: LINK [options] [files] [@commandfile]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; options:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /ALIGN:#&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /ALLOWBIND[:NO]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /ALLOWISOLATION[:NO]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /APPCONTAINER[:NO]&lt;/P&gt;
&lt;P&gt;…&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; / TLBOUT:filename&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I didn’t see the verbose option for the same reason: window closes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try , it works , but &amp;nbsp;for the same reason , I don’t catch the messages &amp;nbsp;, even trying “link example_not_ok.obj /verbose &amp;gt; file.txt”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 12:20:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196337#M150974</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-31T12:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196359#M150977</link>
      <description>&lt;P&gt;Are there any LINK or _LINK_ environment variables set? link.exe will parse those....&lt;/P&gt;
&lt;P&gt;also if you type &amp;lt;full path&amp;gt;link.exe on your command line does that fare any better?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 14:51:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196359#M150977</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2020-07-31T14:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Compilation  with ifort ok but  problem with link , i don’t have the error messages</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196365#M150979</link>
      <description>&lt;P&gt;no "LINK" in the environnement variables&lt;/P&gt;
&lt;P&gt;for full path to&amp;nbsp; link.exe , i will try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 15:24:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compilation-with-ifort-ok-but-problem-with-link-i-don-t-have-the/m-p/1196365#M150979</guid>
      <dc:creator>Pierre78</dc:creator>
      <dc:date>2020-07-31T15:24:30Z</dc:date>
    </item>
  </channel>
</rss>

