I can't install the current version from the AnonCVS... When I try the following: 8<-------------------------------------------------------------------------- --- export CVSROOT=:pserver:[EMAIL PROTECTED]:/mono cvs -z3 update -dP mcs mono gtk-sharp cd mono ./autogen.sh --prefix=/home/vadim/mono/m-cvs make fullbuild 8<-------------------------------------------------------------------------- ---
The last it says is (when making fullbuild): 8<-------------------------------------------------------------------------- --- make[1]: Entering directory `/home/vadim/mono/cvs/mcs/class/corlib' mcs /nowarn:649 /nowarn:169 -d:INSIDE_CORLIB -d:NET_1_1 -d:ONLY_1_1 -g /noconfig /unsafe /nostdlib /target:library /out:../../class/lib/mscorlib.dll @../../build/deps/corlib.dll.response Mono.Math/BigInteger.cs(261) error CS0121: Ambiguous call when selecting function due to implicit casts Mono.Math/BigInteger.cs(261) error CS1501: New invocation: Can not find a constructor in `Mono.Math.BigInteger' for this argument list Mono.Math/BigInteger.cs(276) error CS0165: Use of unassigned local variable `val' Mono.Math/BigInteger.cs(293) error CS0165: Use of unassigned local variable `val' 8<-------------------------------------------------------------------------- --- Is the CVS broken now? I tried to install the last daily package from http://go-mono.com/daily and it isn't working with this version also. Is there so big difference between CVS version and daily packages??? Best regards, Vadim B. Guzev ----- Original Message ----- From: "Gonzalo Paniagua Javier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 02, 2004 7:42 PM Subject: Re: [Mono-list] Starting processes with parameters from Mono 0.31and mono-0.31.99.20040331 > El vie, 02-04-2004 a las 01:04, vguzev escribi�: > > >add: > > > > > > psi.UseShellExecute = false; > > > > > >and it will work. > > > > Hmmm.... it doesn't work with UseShellExecute=false too... :( > > > > 8<----------------------------------------------------- > > [EMAIL PROTECTED] processstart]$ cat ProcessStart.cs > > using System; > > using System.Diagnostics; > > > > class ProcessStart { > > static void Main(string[] args) { > > Console.Out.WriteLine("Trying to start: 'mono --version'"); > > ProcessStartInfo psi = new ProcessStartInfo(); > > psi.FileName = "mono"; > > psi.UseShellExecute = false; > > psi.Arguments = "--version"; > > > > Process p = new Process(); > > p.Start( psi ); > > } > > } > > [EMAIL PROTECTED] processstart]$ mcs ProcessStart.cs > > Compilation succeeded > > [EMAIL PROTECTED] processstart]$ mono --version > > Mono JIT compiler version 0.31.99.20040331, (C) 2002-2004 Novell, Inc and Contri > > butors. www.go-mono.com > > TLS: normal > > GC: Included Boehm (with typed GC) > > SIGSEGV : normal > > Globalization: none > > [EMAIL PROTECTED] processstart]$ mono ProcessStart.exe > > Trying to start: 'mono --version' > > 8<----------------------------------------------------- > > Your program works here: > [EMAIL PROTECTED]:~$ mono go-mono/p.exe > Trying to start: 'mono --version' > Mono JIT compiler version 0.31.99, (C) 2002-2004 Novell, Inc and > Contributors. www.go-mono.com > TLS: normal > GC: Included Boehm (with typed GC) > SIGSEGV : normal > Globalization: ICU > > This is current CVS. > > -Gonzalo > > > _______________________________________________ > Mono-list maillist - [EMAIL PROTECTED] > http://lists.ximian.com/mailman/listinfo/mono-list > _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
