[Mono-list] compiler error

Sergey Chaban serge@wildwestsoftware.com
Sat, 4 Jan 2003 16:16:37 +0200


> If somebody can tell we what options to use with csc to produce such
> binaries, I can have a look at implementing the support in mono to load
> such non-standard heaps.

There is no specific option, but there is some pattern to reproduce this.
Something like this:

It's necessary to have at least two source files.
Then:
1) csc -out:bin.exe -debug+ -optimize- -incremental+ a.cs b.cs
2) touch a.cs
3) csc -out:bin.exe -debug+ -optimize- -incremental+ a.cs b.cs

Sergey