<?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 Steve, in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005324#M104654</link>
    <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;I tried both Quickwin &amp;amp; the Standard Graphics options - they both essentially executed the same as the Console option. The compile error for Win32 has changed a bit, though, now that I have some Linker 'Additional Dependentcies' set correctly:&lt;/P&gt;

&lt;P&gt;1&amp;gt;LIBCMT.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Attached is the Code::Block config file for the GFortran build of the Demo Program.&lt;/P&gt;

&lt;P&gt;I hope these help.&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;</description>
    <pubDate>Wed, 24 Sep 2014 19:58:24 GMT</pubDate>
    <dc:creator>Jeffrey_K_</dc:creator>
    <dc:date>2014-09-24T19:58:24Z</dc:date>
    <item>
      <title>Any Success Building GTK+ Apps w/ IVF?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005320#M104650</link>
      <description>&lt;P&gt;All,&lt;/P&gt;

&lt;P&gt;I have become interested with the GTK+ (GIMP Toolkit) Project (http://www.gtk.org/) as an alternate GUI builder for my Windows projects. A user has developed a fortran Library to interface w/ GTK+ environment called gtk-fortran (https://github.com/jerryd/gtk-fortran/wiki). I have followed his instructions to build a supplied demo code using GNU Fortran in the Code::Blocks IDE &amp;amp; it builds/executes fine :-)&lt;/P&gt;

&lt;P&gt;However, I had difficulty getting Code::Blocks to work w/ IVF so I tried to build the GTK+ fortran demo in IVF (XE 14.0.4.237) as a Windows App...and had problems. I get this linker error:&lt;/P&gt;

&lt;P&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;42&amp;nbsp;&amp;nbsp; &amp;nbsp; error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup&amp;nbsp;&amp;nbsp; &amp;nbsp;MSVCRTD.lib(crtexew.obj)&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	and can't figure out to correct it. *HOWEVER*, it compiles &amp;amp; links fine...as a Console App but, of course, it does not execute correctly. What is the secret to correcting that WinMain@16 error?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 17:22:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005320#M104650</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-24T17:22:55Z</dc:date>
    </item>
    <item>
      <title>You've created a "Windowing</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005321#M104651</link>
      <description>&lt;P&gt;You've created a "Windowing application" and this requires that you supply a function called WinMain with that entry point. I suspect you're chasing the wrong problem, though. If it works in a simple gfortran build, which is unlikely to be a windowing application, it should work in ifort. What goes wrong as a console build?&lt;/P&gt;

&lt;P&gt;To read more about windowing applications, see&amp;nbsp;https://software.intel.com/sites/products/documentation/hpc/composerxe/en-us/fortran/win/pdf/Creating_Fortran_Win_Apps.pdf&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 17:39:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005321#M104651</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-24T17:39:25Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005322#M104652</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Gee, the GTK+ programs sure look look like Windows apps to me ;-)&lt;/P&gt;

&lt;P&gt;"...this requires that you supply a function called WinMain with that entry point.'&lt;/P&gt;

&lt;P&gt;This is not true in every instance. I also program using the Winteracter package (a Fortran GUI builder you have to pay for) &amp;amp; nowhere do i have to use a WinMain function. Wineracter uses instead (I presume) "CALL WInitialise()" which, after that, you can create &amp;amp; manipulate the Windows environment. I presume the GTK+ environment is the same - here is the 'Main' routine:&lt;/P&gt;

&lt;P&gt;program gui_main&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; use iso_c_binding&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; use gtk, only: gtk_init, gtk_main&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; use gui_functions&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; implicit none&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; type(window) :: demo_win&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call gtk_init()&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call create_window(demo_win,"test.glade"//c_null_char)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call show_window(demo_win)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call gtk_main()&lt;BR /&gt;
	end program gui_main&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	I'll see if I can attach screenshots of the Demo program that works from GFortran &amp;amp; the IVF 'Console' version that...sorta works. The IVF version, when the window appears &amp;amp; you go to enter the requested text, clicking the 'Say Hello' button causes it to crash.&lt;/P&gt;

&lt;P&gt;Thanks for your help,&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 18:24:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005322#M104652</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-24T18:24:09Z</dc:date>
    </item>
    <item>
      <title>Winteracter probably supplies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005323#M104653</link>
      <description>&lt;P&gt;Winteracter probably supplies its own WinMain.&lt;/P&gt;

&lt;P&gt;Try creating a new project as a QuickWin application and see what happens. Can you show me how the gfortran applcation is built? (What options are used.)&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 18:36:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005323#M104653</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-24T18:36:08Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005324#M104654</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;I tried both Quickwin &amp;amp; the Standard Graphics options - they both essentially executed the same as the Console option. The compile error for Win32 has changed a bit, though, now that I have some Linker 'Additional Dependentcies' set correctly:&lt;/P&gt;

&lt;P&gt;1&amp;gt;LIBCMT.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Attached is the Code::Block config file for the GFortran build of the Demo Program.&lt;/P&gt;

&lt;P&gt;I hope these help.&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 19:58:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005324#M104654</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-24T19:58:24Z</dc:date>
    </item>
    <item>
      <title>The difference in the linker</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005325#M104655</link>
      <description>&lt;P&gt;The difference in the linker error is not interesting - same cause. Don't specify a Windows application.&lt;/P&gt;

&lt;P&gt;I'd try this myself, but it has a lot of prerequisites I don't have time for. You have all the source, I suggest debugging the console application and see what it doesn't like.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 20:19:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005325#M104655</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-24T20:19:06Z</dc:date>
    </item>
    <item>
      <title>I have been meaning to play</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005326#M104656</link>
      <description>&lt;P&gt;I have been meaning to play with this for some time.&amp;nbsp; How did you get it (the gtk-fortran library) to build with IVF?&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2014 06:48:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005326#M104656</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-09-25T06:48:16Z</dc:date>
    </item>
    <item>
      <title>Ian,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005327#M104657</link>
      <description>&lt;P&gt;Ian,&lt;/P&gt;

&lt;P&gt;I didn't...I just used what was provided. Thinking about it &amp;amp; my work with the Winteracter GUI libraries, they (Winteracter) have a separate library sets ported to specific compilers - Lahey, Absoft, PGI, Intel/Compaq VF, etc. I wonder if the GTK+ libraries need to be compiled for IVF, or, since they are all in C, IVC? Doing that is *way* above my knowledge base...Looking for volunteers&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2014 18:48:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005327#M104657</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-25T18:48:47Z</dc:date>
    </item>
    <item>
      <title>Unlikely the libraries need</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005328#M104658</link>
      <description>&lt;P&gt;Unlikely the libraries need to be compiled specifically, since the author says it makes use of the C interoperability features. Certainly one does not need to use Intel C++ (not that there's anything wrong with that.) The author says he made it work with Intel Fortran on Linux, There might be some other dependency but it seems unlikely.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2014 19:19:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005328#M104658</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-25T19:19:34Z</dc:date>
    </item>
    <item>
      <title>Apologies for being slow, but</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005329#M104659</link>
      <description>&lt;P&gt;Apologies for being slow, but what do you mean by "I just used what was provided".&amp;nbsp; They provide the library as Fortran source so something has to be built, and while my knowledge of cmake is limited (understatement), I see basic issues like command line options specified that don't make sense for ifort on windows.&amp;nbsp; I can fix that, but then I have problems when the included examples try and link against the glib libraries (and some examples have compile errors).&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Are you building against gtk2 or gtk3?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2014 22:02:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005329#M104659</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-09-25T22:02:01Z</dc:date>
    </item>
    <item>
      <title>Hey Ian,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005330#M104660</link>
      <description>&lt;P&gt;Hey Ian,&lt;/P&gt;

&lt;P&gt;(clarification) The GUI Demo I was referencing was from the Fortran Dev Blog page (http://fortrandev.wordpress.com/2014/05/25/creating-a-gui-using-gtk3-and-gtk-fortran/) &amp;amp; the source is downloaded from GITHub (https://github.com/jshahbazi/fortran-gui-demo) ...Download ZIP on the right.&lt;/P&gt;

&lt;P&gt;I presume the 'library' you are referring to are the interface routines listed in the gtk_src directory? I followed the model that was listed in the Code::Blocks config file for the fortran_gui_demo project. I included the needed files in the IVF Project listing as part of the build for the fortran_gui_demo. I added the needed "Linker\Input\Additional Dependencies" and "Addtional Include Directories" as indicated in the Code::Blocks config file and build it as a Windows Application (obviously).&lt;/P&gt;

&lt;P&gt;It all compiled fine except for the linker error "LIBCMT.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup" which started this whole thread. It compiles/builds &amp;amp; executes correctly w/ gfortran...why not IVF &amp;amp; what will it take to remove that linker error to get IVF to work?&lt;/P&gt;

&lt;P&gt;Also - I am using everything associated w/ gtk3&lt;/P&gt;

&lt;P&gt;Jeff&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 12:29:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005330#M104660</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-26T12:29:03Z</dc:date>
    </item>
    <item>
      <title>Jeff,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005331#M104661</link>
      <description>&lt;P&gt;Jeff,&lt;/P&gt;

&lt;P&gt;I believe I have told you twice if not three times about why you get that linker error and how to avoid it. Simply don't use /winapp (or choose a project type other than Windowing Application.) Your gfortran compile appears to be building a console application, so use that project type.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 13:16:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005331#M104661</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-26T13:16:02Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005332#M104662</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;I was responding to Ian's question. I already understand your position. Thank you for the responses you provided.&lt;/P&gt;

&lt;P&gt;I'll go away now...&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 16:57:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005332#M104662</guid>
      <dc:creator>Jeffrey_K_</dc:creator>
      <dc:date>2014-09-26T16:57:03Z</dc:date>
    </item>
    <item>
      <title>I have found a set of</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005333#M104663</link>
      <description>&lt;P&gt;I have found a set of commands that at least compiled an old version of a GTK program successfully.&lt;/P&gt;

&lt;P&gt;Set the path so that Windows can find GTK's DLLs:&lt;/P&gt;

&lt;P&gt;set path=%path%;C:\GTK\bin&lt;/P&gt;

&lt;P&gt;Create the gtk.mod file the compiler will need to compile GTK programs:&lt;/P&gt;

&lt;P&gt;gfortran -c gtk.f90&lt;/P&gt;

&lt;P&gt;Then tell gfortran where GTK's libraries are and the libraries you need:&lt;/P&gt;

&lt;P&gt;gfortran gtkhello.f90 -ogtkhello gtk.o -LC:\GTK\lib -lgtk-win32-2.0.dll -lgoblject-2.0.dll&lt;/P&gt;

&lt;P&gt;And that worked in the good old days.&amp;nbsp; Can't really test it now because for some reason they made it just about impossible to install GTK on Windows any more.&amp;nbsp; Maybe Steve can translate the above sequence to ifort commands.&amp;nbsp; I was worried at first that GTK might be using STDCALL calling convention on 32-bit Windows, but it seems to be CDECL so that makes life easier.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 20:10:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005333#M104663</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2014-09-26T20:10:58Z</dc:date>
    </item>
    <item>
      <title>The set path command is the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005334#M104664</link>
      <description>&lt;P&gt;The set path command is the same. gfortran is linking directly to DLLs? Really?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 20:18:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005334#M104664</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-26T20:18:06Z</dc:date>
    </item>
    <item>
      <title>Ok - I was tryigthe cmake</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005335#M104665</link>
      <description>&lt;P&gt;Ok - I was tryigthe cmake build of the gtk-fortran library on top of gtk3.&amp;nbsp; Beyond the basic compile options mismatch and gross user error on my part, the cmake that I was using (2.8.12.1) trips up with ifort 15.0's integration new use of the TargetName project property.&amp;nbsp; I'm getting there...&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 22:11:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005335#M104665</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-09-26T22:11:27Z</dc:date>
    </item>
    <item>
      <title>No, it's linking to libgtk</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005336#M104666</link>
      <description>&lt;P&gt;No, it's linking to libgtk-win32-2.0.dll.a and libgobject-2.0.dll.a .&amp;nbsp; I guess I misspelled gobject up there.&amp;nbsp; Sorry.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 22:24:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005336#M104666</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2014-09-26T22:24:17Z</dc:date>
    </item>
    <item>
      <title>Hmm. .a is a Linux spelling -</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005337#M104667</link>
      <description>&lt;P&gt;Hmm. .a is a Linux spelling - I wonder if these are actually .lib files. The equivalent ifort command would be:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;ifort gtkhello.f90 /link /libpath:C:\GTK\lib gtk-win32-2.0.dll.lib gobject-2.0.dll.lib&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;I'm assuming that the .lib files exist. If they're .a files, try renaming them to .lib and see if that works.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2014 23:05:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005337#M104667</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-09-26T23:05:46Z</dc:date>
    </item>
    <item>
      <title>I have it building, after a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005338#M104668</link>
      <description>&lt;P&gt;I have it building, after a few changes to the solutions and projects generated by cmake.&amp;nbsp; Some of the projects for the examples still have issues - some of which I suspect are Fortran language errors (but I need to dig further) and others are due to use of non-portable intrinsic functions.&lt;/P&gt;

&lt;P&gt;The cmake configuration specifies the subsystem as console.&amp;nbsp; That just means that when you run an example by double clicking the exe file from within explorer (or similar), the operating system will create a console for the exe, which is pointless for most gui applications.&amp;nbsp; You can just use the editbin utility to change the exe type after a build is complete to workaround that.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2014 00:28:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005338#M104668</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-09-27T00:28:53Z</dc:date>
    </item>
    <item>
      <title>It looks like the .lib files</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005339#M104669</link>
      <description>&lt;P&gt;It looks like the .lib files exist, but they are called gtk-win32-2.0.lib and gobject-2.0.lib . I saw a web site that, for another mingw project, recommended taking the .def files the project created and then using lib.exe to turn them into .lib files.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2014 01:18:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Any-Success-Building-GTK-Apps-w-IVF/m-p/1005339#M104669</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2014-09-27T01:18:31Z</dc:date>
    </item>
  </channel>
</rss>

