[MonoDevelop] bulding a F# program

Piotr Zurek p.zurek at gmail.com
Tue Mar 16 01:27:04 EDT 2010


Hi Vasili,

On Tue, Mar 16, 2010 at 18:04, Vasili I. Galchin <vigalchin at gmail.com> wrote:
>     As I have said in previous emails, when I try to build a F# program/script
>
> 1) I only have "Build All" as a choice, strange!
>
> 2) MonoDevelop get hung. I have to run "mono .... fsc.exe ..." from
> the Linux CLI to unhang it!
>
>
> One more interesting fact ... I can't quit these MonoDevelop instances
> ... I have to do "kill -9" and all result in zombie (defunct)
> processes. If I start MonoDevelop without attempting to do a Build and
> then a "kill -9" => no zombie(defunct) process!

I don't think it is related to your problem and doubt that it may
actually solve it, but  for your convenience you could consider adding
two adding fsc and fsi scripts to your /usr/local/bin folder.
They should look something like that (depending on your system paths):

#!/bin/sh
exec /usr/bin/mono /usr/local/src/FSharp/bin/fsc.exe $@

and for fsi of course:

#!/bin/sh
exec /usr/bin/mono /usr/local/src/FSharp/bin/fsi.exe $@

Thanks to that you can run fsc and fsi with a single command without
all that typing.

Cheers,
Piotr


More information about the Monodevelop-list mailing list