Anyone got --standalone option to work in F# CTP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:07:51Z http://stackoverflow.com/feeds/question/71157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp 3 Anyone got --standalone option to work in F# CTP? Benjol 2008-09-16T10:50:58Z 2009-05-23T14:11:19Z <p>I may have this completely wrong, but my understanding is that the --standalone compiler option tells the compiler to include the F# core and other dependencies in the exe, so that you can run it on another machine without installing any 'runtime'.</p> <p>However, I can't get this to work in the CTP - it doesn't even seem to change the size of the output file (docs I've read say about 1M extra).</p> <p>"Google may know, but if it does, it ain't telling, or I'm not looking in the right place"</p> <p><strong>UPDATE:</strong></p> <p>It seems to work with latest CTP <a href="http://www.microsoft.com/downloads/details.aspx?familyid=61ad6924-93ad-48dc-8c67-60f7e7803d3c&amp;displaylang=en" rel="nofollow">update 1.9.6.2</a></p> <p><strong>UPDATE2:</strong></p> <p>I have since experienced another error: </p> <pre><code>FSC(0,0): error FS0191: could not resolve assembly Microsoft.Build.Utilities. </code></pre> <p>If you get errors like this when trying to compile --standalone, you need to explicitly include them as references in your project.</p> http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp/71200#71200 0 Answer by aku for Anyone got --standalone option to work in F# CTP? aku 2008-09-16T10:57:18Z 2008-09-16T10:57:18Z <p>F# manual: <a href="http://research.microsoft.com/fsharp/manual/compiler.aspx#Standalone" rel="nofollow">Statically linking the F# library using "--standalone"</a></p> <p>Did you try to run peverify.exe utility?</p> http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp/71318#71318 0 Answer by aku for Anyone got --standalone option to work in F# CTP? aku 2008-09-16T11:18:26Z 2008-09-16T11:29:25Z <p>@<a href="#71333" rel="nofollow">Benjol</a>, </p> <p>just tried it myself. it seems to be broken :(</p> <p>--staticlink is not working either:</p> <pre><code>C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll" -r C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll --target exe --fullpaths --staticlink "C:\Program Files\FSharp-1.9.6.0\bin\FSharp.Core.dll" Tutorial.fcs </code></pre> <p>gives me:</p> <blockquote> <p>error FS0192: internal error: Assembly C:\Program Files\FSharp-1.9.6.0\bin\FShar p.Core.dll not found in dependency set of target application, ignoring Please build a small example that reproduces this problem and report it to fsbug s@microsoft.com.</p> </blockquote> <p>But in runtime I receive:</p> <blockquote> <p>Unhandled Exception: System.IO.FileNotFoundException: Could not load file or ass embly 'FSharp.Core, Version=1.9.6.0, Culture=neutral, PublicKeyToken=a19089b1c74 d0809' or one of its dependencies. The system cannot find the file specified.</p> </blockquote> <p>I guess we need to wait for the next CTP :)</p> http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp/71938#71938 3 Answer by Benjol for Anyone got --standalone option to work in F# CTP? Benjol 2008-09-16T13:00:51Z 2009-01-07T08:53:47Z <p>Answer from MS:</p> <p><em>There is a CTP update 1.9.6.2 that fixed some --standalone bugs.</em></p> <p>I'm reinstalling now...</p> <p>UPDATE: Works for me - so the my accepted answer is <strong>download CTP update 1.9.6.2</strong>.</p> http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp/901597#901597 -1 Answer by Jon Harrop for Anyone got --standalone option to work in F# CTP? Jon Harrop 2009-05-23T14:11:19Z 2009-05-23T14:11:19Z <p>This has been a pet hatred of mine for a long time (it has been broken in every CTP release ever including the latest 1.9.6.16 May 2009 release). The "solution" is essentially to write your own build system that is not broken.</p> <p>This is a real problem for me because I have accumulated hundreds of great F# programs that I would like to put on our site but it takes hours to build each one into a standalone executable.</p>