diff options
author | recht <recht@pkgsrc.org> | 2003-10-02 08:41:42 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-10-02 08:41:42 +0000 |
commit | 03fb525bc277e24a1a4f92f8ca00c24cee54fbd0 (patch) | |
tree | b72993351fb7f18f7ec054ed64aa1fdfffe41c21 /lang/mono/buildlink2.mk | |
parent | 9230c958373d3a666e7c8e5b7e5e91c95cccf0a3 (diff) | |
download | pkgsrc-03fb525bc277e24a1a4f92f8ca00c24cee54fbd0.tar.gz |
Update to 0.28
the ususal: new features and fixes
notably:
New Thread Locking
Zoltan removed the big locks we had in the runtime, and now we have a
finely grained lock system in the runtime. Runtime hackers can read the
included lock matrix document which describes the requirements to use
the new fine grained locks in their code.
Ahead of Time Compiler Optimizations
Zoltan has worked extensively on the Mono ahead-of-time compilation
feature (AOT). The AOT code is now considered to be production quality,
and also for the first time precompiled code runs faster than JITed
code. This resulted in a 13% compilation speed up for the Mono C#
compiler, reducing the compile time to 3.185 seconds. A clear goal of
the team for the next release is to reach 3.1416 seconds.
for a complete list see: http://www.go-mono.com/archive/mono-0.28.html
Diffstat (limited to 'lang/mono/buildlink2.mk')
-rw-r--r-- | lang/mono/buildlink2.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/mono/buildlink2.mk b/lang/mono/buildlink2.mk index 2204dfd63c6..dfc1030c3b5 100644 --- a/lang/mono/buildlink2.mk +++ b/lang/mono/buildlink2.mk @@ -1,10 +1,10 @@ -# $NetBSD: buildlink2.mk,v 1.7 2003/09/25 16:05:21 recht Exp $ +# $NetBSD: buildlink2.mk,v 1.8 2003/10/02 08:41:42 recht Exp $ .if !defined(MONO_BUILDLINK2_MK) MONO_BUILDLINK2_MK= # defined BUILDLINK_PACKAGES+= mono -BUILDLINK_DEPENDS.mono?= mono>=0.26 +BUILDLINK_DEPENDS.mono?= mono>=0.28 BUILDLINK_PKGSRCDIR.mono?= ../../lang/mono EVAL_PREFIX+= BUILDLINK_PREFIX.mono=mono @@ -71,7 +71,6 @@ BUILDLINK_FILES.mono+= lib/System.dll BUILDLINK_FILES.mono+= lib/corlib.dll BUILDLINK_FILES.mono+= lib/libmono-profiler-cov.* BUILDLINK_FILES.mono+= lib/libmono.* -BUILDLINK_FILES.mono+= lib/libmonogc.* BUILDLINK_FILES.mono+= lib/pkgconfig/mono.pc .include "../../devel/glib2/buildlink2.mk" |