RE: [Mono-list] Gcc summit...interesting stuff

2003-11-25 Thread Chris Lattner

Pablo Baena wrote:
> Have you seen this paper
> http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-proceedings.pdf where
> someone implemented a low level virtual machine http://llvm.cs.uiuc.edu/
> for gcc?? Doesn't it give you ideas? *wink* *wink* Interesting. I don't
> know if it could be extended to support g++.

Absolutely.  In fact, we already support g++.  Work is underway on objc,
Caml, Java, a forth-like frontend, etc.  The open-source 1.0 release of
LLVM is available btw:
http://mail.cs.uiuc.edu/pipermail/llvm-announce/2003-October/02.html

We are also tentatively planning for a 1.1 release in the next couple of
weeks.  Here's the most recent "status update" from the project:
http://mail.cs.uiuc.edu/pipermail/llvm-announce/2003-November/03.html

If you have any questions, please feel free to contact me, though response
might be slow due to the holidays.

-Chris

-- 
http://llvm.cs.uiuc.edu/
http://www.nondot.org/~sabre/Projects/

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


[Mono-list] Deploying a site (ASP.NET .aspx) with mono

2003-11-25 Thread Tiago Lima



Hi,
 
What is the best way to deploy a site (ASP.NET 
.aspx) using mono?
Do you use xsp only, apache with 
mod_mono?
Does the site has a correct behaviour when 
receiving multiple simultaneous requests?
For example, ~20+ simultaneous 
users...
 
Does anyone has any experience on 
this?
 
Thanks in advance,
    Tiago Lima
 


[Mono-list] assertion error in mcs (OS-X with boehmgc)

2003-11-25 Thread Markus W. Weissmann
When executing mcs, I'll get the following error:
---
mww% mcs hello.cs
** ERROR **: file interp.c: line 297 (get_virtual_method): assertion 
failed: (res)
aborting...
/opt/local/bin/mcs: line 2:  2078 Abort trap  
/opt/local/bin/mint /opt/local/bin/mcs.exe "$@"
mww%
---
mono 0.28, on MacOS-X 10.3.1, compiled with boehmgc 6.2, glib 2.2.3, 
./configure --disable-shared
The problem seems to be the garbage collector - when compiled w/o 
boehmgc, mcs works;
Is mcs using the gc? (I suppose that the vm does which won't run with 
or w/o gc here)

mint works fine with & w/o boehmgc (I assume it doesn't use it?)

mww

---
Markus W. Weissmann
http://www.mweissmann.de/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Deploying a site (ASP.NET .aspx) with mono

2003-11-25 Thread Fawad Halim
Tiago,
   You usually wanna go with apache with mod_mono on a production 
deployment. mod_mono at least has a good behavior under load. It doesn't 
have problems with concurrent connections. Apachebench on httpd2-cvs, 
mod-mon-cvs gives me the following numbers on my 800MHz athlon box with 
300MB RAM when running xsp/test/index.aspx with concurrency=200 (no 
caching). Like any other benchmark, your mileage may vary.

Concurrency Level:  100
Time taken for tests:   345.85596 seconds
Complete requests:  2000
Failed requests:0
Write errors:   0
Total transferred:  21026000 bytes
HTML transferred:   20474000 bytes
Requests per second:5.80 [#/sec] (mean)
Time per request:   17254.280 [ms] (mean)
Time per request:   172.543 [ms] (mean, across all concurrent requests)
Transfer rate:  59.50 [Kbytes/sec] received
Connection Times (ms)
 min  mean[+/-sd] median   max
Connect:02  12.3  0  82
Processing:  7673 16107 3658.2  15580   99947
Waiting: 7572 16056 3660.1  15533   99923
Total:   7706 16110 3657.3  15580   99947
-fawad

Tiago Lima wrote:

Hi,
 
What is the best way to deploy a site (ASP.NET .aspx) using mono?
Do you use xsp only, apache with mod_mono?
Does the site has a correct behaviour when receiving multiple 
simultaneous requests?
For example, ~20+ simultaneous users...
 
Does anyone has any experience on this?
 
Thanks in advance,
Tiago Lima
 


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


RE: [Mono-list] Gcc summit...interesting stuff

2003-11-25 Thread pbaena

> If you have any questions, please feel free to contact me, though response
> might be slow due to the holidays.
> 
> -Chris

Well, I guess the most important question would be: How hard could it be to make it 
target IL code?

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


[Mono-list] missing mono.conf

2003-11-25 Thread Roberto Jimeno

Can someone send me his mono.conf file, so I could use
it  as a base to build mine?

I´ve just installed
mod_mono-0.6-0.ximian.6.0.i386.rpm along with an
upggrade to mono 0.29, etc.

Unfortunatelly .aspx files get served verbatim by the
web server. By instpecting the installed files, I
realized there is no mono.conf file in
/etc/httpd/conf.d/, therefore I believe the problem is
related to that.

Thanks.

=
Roberto Jimeno

__
Do you Yahoo!?
Free Pop-Up Blocker - Get it now
http://companion.yahoo.com/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Delegate compilation error

2003-11-25 Thread Alejandro Sánchez
With daily binary package mono-0.28.99.20031125.tar.gz

$ mcs MyApp.cs
syntax error, expecting OPEN_BRACKET STAR IDENTIFIER
MyApp-striped.cs(13) error CS1041: Identifier expected
Compilation failed: 1 error(s), 0 warnings

namespace MyApp { 

using System;

public class MyApp {

public static void Main (string[] args) {

}

}

delegate void ButtonClickedEventHandler (object o,
ButtonClickedEventArgs);

class ButtonClickedEventArgs : EventArgs{

string mystring;

public string MyString {

get {
return mystring;
}

}

public ButtonClickedEventArgs(string MyString) : base(){

mystring = MyString;
}
}

}

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


Re: [Mono-list] Delegate compilation error

2003-11-25 Thread Peter Williams
On Tue, 2003-11-25 at 15:05, Alejandro Sánchez wrote:
> With daily binary package mono-0.28.99.20031125.tar.gz
...
>   delegate void ButtonClickedEventHandler (object o,
> ButtonClickedEventArgs);

I think you need to give the parameter a name here. Eg

delegate void ButtonClickedEventHandler (object o,
ButtonClickedEventArgs args);

Peter

-- 
Peter Williams  [EMAIL PROTECTED]

"[Ninjas] are cool; and by cool, I mean totally sweet."
  -- REAL Ultimate Power

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