The fsc tag has no wiki summary.
3
votes
1answer
63 views
fast scala compiler: Unable to establish connection to compilation daemon
I have a ubuntu machine under OpenVZ virtualization. When I run fsc test.scala I get:
Unable to establish connection to compilation daemon
Then ps aux shows me lots of processes that look like this
...
0
votes
1answer
72 views
F# integer file directive
I've been using fslex and fsyacc, and the F# source files (.fs they generate from the lexer (.fsl) and parser (.fsp) rules refer to the original .fsl (and sometimes to the same .fs source file) all ...
0
votes
1answer
38 views
Does the scala fsc ant task simply not work in scala v2.9.1-1?
I've looked at this page https://issues.scala-lang.org/browse/SI-5196. It looks like it's fixed in v2.10.x. Has anybody gotten the fsc ant task to work in scala v2.9.1-1?
8
votes
1answer
147 views
Maven improperly starting fsc?
I am trying to use fsc (fast scala compiler) with my maven project. My pom.xml has:
...
<execution>
<id>cc</id>
<goals>
<goal>cc</goal>
...
0
votes
1answer
112 views
Latest fsck execution on Solaris [closed]
Linux has a tune2fs command to determine the last time fsck was executed. Is there something similar in Solaris that can be used to determine last fsck execution?
3
votes
1answer
141 views
Is there a workaround for Scala 2.9.1's buggy fsc Ant task?
The fsc Ant task provided with Scala 2.9.1 is buggy (issues SI-5174 and SI-5196): if the compile fails, everything proceeds as normal. If the compile succeeds, on the other hand, then an internal ...
11
votes
1answer
252 views
F# compiler throws OutOfMemoryException
The project I use contains a lot of classes inherited from single base class. In unit tests I need to compare received results by types and data.
When I use match comparison by types in the case when ...
5
votes
1answer
486 views
How do I run a Fast Scala Compiler remote server?
I want to set an fsc process running on a box that I can then access remotely.
I understand I need to share a temp directory.
However, I'm struggling to even get it going on my laptop.
I'm trying:
...
3
votes
2answers
250 views
FSC compilation warning: Assembly 'SMDiagnostics' was referenced transitively and the assembly could not be resolved automatically
Intermittently when compiling my project (it is a Console Application implementing a Windows Service) the above warning is posted.
(here full warning text)
Warning 1 Assembly 'SMDiagnostics' was ...
2
votes
1answer
568 views
How to include app.config file with fsc.exe (F#) or csc.exe (C#)?
I have a console application that uses an app.config file however I can't figure out how to include that in the command line parameters so that the output will create the Program.exe.config when I ...
0
votes
1answer
519 views
Compile Server with fsc in IntelliJ IDEA never finishes building
I've been trying to get IntelliJ building with FSC, as described here:
http://grahamhackingscala.blogspot.com/2010/10/turn-fsc-fast-scala-compiling-on-in.html
I've followed all the instructions ...
4
votes
1answer
223 views
Changing the F# tools Visual Studio 2010 uses
I rebuilt F# with few syntax additions. I was able to tell VS2010 to use them for F# Interactive and for building, but the code editor still claims I'm making errors (even though the project builds ...
1
vote
2answers
125 views
How to know which exact .NET assembly is used
I need to know exactly which FSharp.Compiler.dll file the Fsc.exe is using. I have reasons to believe that it is not using the file adjacent to it, so I want to know which one it does use. The version ...
13
votes
2answers
1k views
How do I turn off the Scala Fast Compilation server's (FSC) timeout?
I am using a Scala compilation server. This is probably not related to my IDE IntelliJ IDEA, but I will just inform you that I start the Scala compilation server through a special run configuration in ...