RE: [Mono-list] heads up

2004-04-28 Thread Nick D
| -Original Message-
| From: [EMAIL PROTECTED] [mailto:mono-list-
| [EMAIL PROTECTED] On Behalf Of Jackson Harper
| Sent: Tuesday, April 27, 2004 3:46 PM
| To: mono-devel mailing list; mono-list
| Subject: [Mono-list] heads up
| 
| Hello,
| 
|  I have just committed some changes to our build system. We now
| build
| libraries for each profile into their own directory class/lib/$(PROFILE)
| so that we can build all the profiles libraries at once without them
| overwriting each other. Since this is such a large change there may be
| issuesplease reply to the list with anything you notice.
| 

Jackson,

Here's what I noticed: 'make test' from mcs doesn't work anymore.
NUnit.Framework.dll is not being copied into class/lib/default.

Nick D.


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] heads up

2004-04-27 Thread A Rafael D Teixeira
I updated from cvs everything and built mono and then mcs but it stops
when building Npgsql, because when monoresgen is run it says:

[EMAIL PROTECTED] monoresgen]$ monoresgen
Corlib not in sync with this runtime: expected corlib version 17, found
5.
Download a newer corlib or a newer runtime at
http://www.go-mono.com/daily.

Well no other step of the build process showed that message, specially
for such an old corlib version. I scanned my disk and killed or updated 
all mscorlibs/corlibs/monoresgen/SWF outdated and the message continues
to happen. 

I tried to compile a new version of monoresgen with debugging writelines
to no avail, it the loading of the assembly that triggers the message.

Locally I moved npgsql to be the last one in the build chain because it
seems to be the only one using monoresgen, but that way I can't do a
make install for mcs.

Any help is welcome,

Thanks,


On Tue, 2004-04-27 at 03:45, Jackson Harper wrote:
 Hello,
 
   I have just committed some changes to our build system. We now build
 libraries for each profile into their own directory class/lib/$(PROFILE)
 so that we can build all the profiles libraries at once without them
 overwriting each other. Since this is such a large change there may be
 issuesplease reply to the list with anything you notice.
 
 Thanks,
 Jackson

-- 
Rafael Monoman Teixeira 
Mono Hacker since 16 Jul 2001 - http://www.go-mono.org/
Mono Brasil Founding Member - http://monobrasil.redesolbrasil.org/
English Blog: http://monoblog.blogspot.com/
Brazilian Portuguese Blog: http://monoblog.weblogger.terra.com.br/

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] heads up

2004-04-27 Thread A Rafael D Teixeira
Update on my previous email: as root make install was able to make
Npgsql with old resources and then back as user monoresgen was running
again. Seems like monoresgen was depending on something besides corlib
that was outdated in the prefix.


Sorry for the noise,

Thanks,

On Tue, 2004-04-27 at 03:45, Jackson Harper wrote:
 Hello,
 
   I have just committed some changes to our build system. We now build
 libraries for each profile into their own directory class/lib/$(PROFILE)
 so that we can build all the profiles libraries at once without them
 overwriting each other. Since this is such a large change there may be
 issuesplease reply to the list with anything you notice.
 
 Thanks,
 Jackson
 
 
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
 
 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 26/04/2004 / Versão: 1.5.2
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/
 
 E-mail classificado pelo Identificador de Spam Inteligente Terra.
 Para alterar a categoria classificada, visite
 http://www.terra.com.br/centralunificada/emailprotegido/imail/imail.cgi?+_u=rafael.teixeirabr_l=1083048667.57864.24597.turvo.terra.com.br
-- 
Rafael Monoman Teixeira 
Mono Hacker since 16 Jul 2001 - http://www.go-mono.org/
Mono Brasil Founding Member - http://monobrasil.redesolbrasil.org/
English Blog: http://monoblog.blogspot.com/
Brazilian Portuguese Blog: http://monoblog.weblogger.terra.com.br/

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] heads up building

2003-11-16 Thread Francisco T. Martinez
I am running into a problem when performing a make of mcs, even after 
following the instructions below.

The following is a fragment of the errors I am getting:

.
.
.
make[2]: Leaving directory `/download/mono/mcs/class/corlib'
make[2]: Entering directory `/download/mono/mcs/class/corlib'
touch ../../build/deps/corlib.dll.stamp
mcs /nowarn:649 /nowarn:169 -d:INSIDE_CORLIB  -d:NET_1_1 -g /noconfig 
/unsafe /nostdlib /target:library /out:../../class/lib/corlib.dll 
@../../build/deps/corlib.dll.response
System/Decimal.cs(168) error CS1502: The best overloaded match for 
method 'int System.Int32[].GetLength (int)' has some invalid arguments
System/Decimal.cs(168) error CS1503: Argument 0: Cannot convert from 
'int' to 'int'
.
.
.

Thank you for your assistance!

Paco





Jackson Harper wrote:

One final step I forgot. After everything is built and install you can
delete your prefix/corlib.dll (we are now building mscorlib.dll).
Cheers,
Jackson


On Wed, 2003-11-12 at 07:22, Jackson Harper wrote:
 

Hello,

Some changes I commited tonight will make building slightly more
difficult then normal today. Here is the easiest way to get your system
updated:
1. in mcs do make monocharge (if your system is pretty out of date
download: http://primates.ximian.com/~jackson/monocharge-20031112.tgz)
2. in mcs make clean and cvs update
3. in mono cvs update and make install
4. copy the binaries from the monochage into prefix/bin and
prefix/lib
5. in mcs make install
Jackson



___
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
 



___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] heads up building

2003-11-16 Thread Jackson Harper
Hello,

It looks like corlib is being built with an old mono. Is it possible
that you have more then on mono on your machine and it is picking up on
the old one?

Cheers,
Jackson


On Sun, 2003-11-16 at 04:15, Francisco T. Martinez wrote:
 I am running into a problem when performing a make of mcs, even after 
 following the instructions below.
 
 The following is a fragment of the errors I am getting:
 
 .
 .
 .
 make[2]: Leaving directory `/download/mono/mcs/class/corlib'
 make[2]: Entering directory `/download/mono/mcs/class/corlib'
 touch ../../build/deps/corlib.dll.stamp
 mcs /nowarn:649 /nowarn:169 -d:INSIDE_CORLIB  -d:NET_1_1 -g /noconfig 
 /unsafe /nostdlib /target:library /out:../../class/lib/corlib.dll 
 @../../build/deps/corlib.dll.response
 System/Decimal.cs(168) error CS1502: The best overloaded match for 
 method 'int System.Int32[].GetLength (int)' has some invalid arguments
 System/Decimal.cs(168) error CS1503: Argument 0: Cannot convert from 
 'int' to 'int'
 .
 .
 .
 
 Thank you for your assistance!
 
 Paco
 
 
 
 
 
 
 Jackson Harper wrote:
 
 One final step I forgot. After everything is built and install you can
 delete your prefix/corlib.dll (we are now building mscorlib.dll).
 
 Cheers,
 Jackson
 
 
 
 On Wed, 2003-11-12 at 07:22, Jackson Harper wrote:
   
 
 Hello,
 
 Some changes I commited tonight will make building slightly more
 difficult then normal today. Here is the easiest way to get your system
 updated:
 
 1. in mcs do make monocharge (if your system is pretty out of date
 download: http://primates.ximian.com/~jackson/monocharge-20031112.tgz)
 2. in mcs make clean and cvs update
 3. in mono cvs update and make install
 4. copy the binaries from the monochage into prefix/bin and
 prefix/lib
 5. in mcs make install
 
 Jackson
 
 
 
 ___
 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
   
 
 
 
 ___
 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