Welcome to mirror list, hosted at ThFree Co, Russian Federation.

download « doc - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41fcada55d3151deb357174c1667c723297f9c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
* Software Availability

	The Virtual Execution System is available in package `mono'.
	Currently this contains a metadata library and the
	disassembler.  Please reffer to our <a
	href="runtime.html">Runtime</a> description for more details
	on this part of the project.

	The code for the C# compiler as well as the language error
	test suite and the class library are in the `mcs' package, we
	will move this later into `mono' itself. 

	In order to make mcs and the class libraries you will need the
	GNU make tools.  These may be obtained for the Windows
	environment from <a href="http://www.cygwin.com">cygwin.com</a>.

	You will also need to get GLIB and <a
	href="http://www.freedesktop.org/software/pkgconfig">pkgconfig</a>.
	You can get Glib 1.3 from: <a
	href="ftp://ftp.gtk.org/pub/gtk/v1.3/glib-1.3.12.tar.gz">ftp://ftp.gtk.org/pub/gtk/v1.3/glib-1.3.12.tar.gz</a>.

<a name="sources">
** Sources

	We provide both <a href="#packaged">packaged and tested</a>
	tarballs (those are known to compile and pass `make
	distcheck') as well as <a href="snapshots">daily snapshots</a> done
	at 10pm Boston Time

<a name="snapshots">
*** Snapshots

	The daily snapshots are available <a
	href="http://www.go-mono.com/snapshots">here</a>.  These
	snapshots are done every day at 10pm EST (Boston Time). 

	They are not guaranteed to build, but most of the time they
	should.  They should give you a window to see what we are up to.

	You might also want to track our development using the <a
	href="http://lists.ximian.com/mailman/listinfo/mono-cvs-list">mono-cvs-list</a>
	mailing list.

<a name="packaged">
* Packaged.

	Version 0.8 of Mono was released on February 11, 2002.  If you want
	up-to-date code, you might consider getting the code from AnonCVS,
	or using the daily snapshots.

	<a name="feb-11">
	<ul>
		* <a href="archive/mono-0.8.tar.gz">mono-0.8.tar.gz</a>: Mono Runtime 0.8 release.

		  Includes: source code to the x86 JIT/interpreter
		  engine.<br>
		  Binaries for the compiler and the class libraries
		  are included as a convenience.

		* <a href="archive/mcs-0.8.tar.gz">mcs-0.8.tar.gz</a>: Mono Class Libraries and C# Compiler.

		  Source code for the Mono Class Libraries, C#
		  compiler, regression test suites and development
		  tools (yacc for C#, nant and nunit)
	</ul>
	
<a name="install">
** Installing the software

	To install and work on the compiler and the class libraries,
	follow these instructions:

	<ul>
		* Install <a href="http://www.cygwin.com">CygWin</a> first.

		* Untar the MCS distribution (see below for information).

		* Go into the MCS directory and type `make windows'
	</ul>

	To compile the mono runtime on windows:

	<ul>	
		* Install <a href="http://www.cygwin.com">CygWin</a> first.

		* Install in /usr/local in your Cygwin world the following
	  	  packages (compiled by <a href="mailto:alex@ximian.com">Alex Graveley</a>):
		<ul>
		<li><a href="http://primates.ximian.com/~alex/glib-1.3.12-win32-native.zip">
		http://primates.ximian.com/~alex/glib-1.3.12-win32-native.zip</a>

		<li><a href="http://primates.ximian.com/~alex/pkg-config-0.8-cygwin.zip">
		http://primates.ximian.com/~alex/pkg-config-0.8-cygwin.zip</a>
		</ul>

		These already contain libiconv linked statically. 

	</ul>

	If you want to compile things yourself you will need to compile and install:


	<ul>
		* Install <a href="http://www.freedesktop.org/software/pkgconfig">pkgconfig</a>.
                  (I had to change line 674 of
                  <nobr><tt>pkgconfig-0.8.0/glib-1.2.8/gstrfuncs.c</tt></nobr> from 
		  <nobr><tt>extern char *strsignal (int sig);</tt></nobr> to
		  <nobr><tt>extern const char *strsignal (int sig);</tt></nobr>.

<pre>
tar xzvf pkgconfig-0.8.0.tar.gz
cd pkgconfig-0.8.0
./configure --prefix=/usr
make
make install
</pre>

		* Install <a href="ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.7.tar.gz">libiconv</a>.
		  If you dont have MS Visual C/C++ 4.0 or 5.0 or 6.0 you can also try
		  the binary package available at <a
		  href="http://www.gimp.org/win32/libiconv-dev-20001007.zip">here</a>.
 
		* Install the newest glib (1.3 version). You can download it
                  from <a href="ftp://ftp.gtk.org/pub/gtk/v1.3/glib-1.3.12.tar.gz">here</a>.

		* Unpack the mono distribution:

<pre>
tar xzvf mono-XXX.tar.gz
</pre>

		* Configure, compile and install:

	 	  For official releases, use:

<pre>
./configure --prefix=//c/mono
make
make install
</pre>

		  For Snapshots, or CVS trees, use:

<pre>
./autogen.sh --prefix=//c/mono
make
make install
</pre>


		* Some people observed problems with autoconf 2.52. Installing 
		  autoconf 2.13 helped in those cases (don't forget to do a
		  `make maintainer-clean' after the update)

	</ul>

	To compile the mono runtime on Unix:

	<ul>
		
		* Install <a href="http://www.freedesktop.org/software/pkgconfig">pkgconfig</a>.

		* Install newest glib (cvs head version). You can download it
                  from <a href="ftp://ftp.gtk.org/pub/gtk/v1.3/glib-1.3.12.tar.gz">here</a>. Maybe you need
                  to modify your ACLOCAL_FLAGS for pkgconfig, for example if
                  your install prefix is /usr/local:
<pre>
export ACLOCAL_FLAGS="-I /usr/local/share/aclocal"
</pre>

		* Download the mono distribution

		* Unpack the mono distribution:

<pre>
tar xzvf mono-XXX.tar.gz
</pre>

		* Configure, compile and install:

		  For official releases:
<pre>
./configure
make
make install
</pre>

		  For snapshots and CVS trees:

<pre>
./autogen.sh
make
make install
</pre>

	</ul>
	


<a name="oldreleases">

*** Old releases.
	<ul>
		<a name="sep-18">
		<b>September 18, 2001</b>
		<ul>
		* <a href="archive/mono-0.7.tar.gz">mono-0.7.tar.gz</a>: Mono Runtime 0.7 release.
		* <a href="archive/mcs-0.7.tar.gz">mcs-0.7.tar.gz</a>: Mono Compiler and Classes 0.7 release.
		* <a href="archive/mono-0.7">Release Notes.</a>
		</ul>

		<a name="august-22">
		<b>August 22, 2001</b>
		<ul>
		* <a href="archive/mono-0.6.tar.gz">mono-0.6.tar.gz</a>: Mono Runtime 0.6 release.
		* <a href="archive/mono-compiler-classes-0.6.tar.gz">mono-compiler-classes-0.6.tar.gz</a>: Mono Compiler and Classes 0.6 release.
		* <a href="archive/mono-0.6">Release Notes.</a>
		</ul>

	
	 	<a name="july-29">
		<b>July 29, 2001</b>
		<ul>
		* <a href="archive/mono-0.5.tar.gz">mono-0.5.tar.gz</a>: Mono Runtime 0.5 release.
		* <a href="archive/mono-0.5">Release Notes.</a>
		</ul>

	
		<a name="july-22">
		<b>July 22, 2001</b>
		<ul>
		* <a href="archive/mcs-22-Jul-2001.tar.gz">mcs-22-Jul-2001.tar.gz</a>: CVS snapshot.
		* <a href="archive/mcs-Jul-22-Jul-19-2001.tar.gz">Differences since 19</a>: CVS snapshot.
		* <a href="archive/mcs-22">Release Notes.</a>
		</ul>

		<a name="july-19">
		<b>July 19th, 2001</b>
		<ul>
		* <a href="archive/mcs-19-Jul-2001.tar.gz">mcs-19-Jul-2001.tar.gz</a>: CVS snapshot.
		* <a href="archive/mcs-Jul-17-Jul-19-2001.tar.gz">Differences since 17</a>: CVS snapshot.
		* <a href="archive/mcs-19">Release Notes.</a>
		</ul>

		<a name="july-17">
		<b>July 17th, 2001</b>
		<ul>
		* <a href="archive/mcs-17-Jul-2001.tar.gz">mcs-17-Jul-2001.tar.gz</a>: CVS snapshot.
		* <a href="archive/mcs-Jul-15-Jul-17-2001.tar.gz">Differences since 15</a>: CVS snapshot.
		* <a href="archive/mcs-17">Release Notes.</a>
		</ul>

		<a name="july-15">
		<b>July 15th, 2001</b>
		<ul>
		* <a href="archive/mcs-15-Jul-2001.tar.gz">mcs-15-Jul-2001.tar.gz</a>: CVS snapshot.
		* <a href="archive/mono-0.4.tar.gz">mono-0.4.tar.gz</a>: Packaged Source Code.
		* <a href="archive/mono-0.4">Release Notes.</a>
		</ul>

		<a name="july-14">
		<b>July 14th, 2001</b>
		<ul>
		* <a href="archive/mcs-12-Jul-2001.tar.gz">mcs-12-Jul-2001.tar.gz</a>: CVS snapshot.
		* <a href="archive/mono-0.3.tar.gz">mono-0.3.tar.gz</a>: Packaged Source Code.
		</ul>

		<a name="july-8">
		<b>July 8th, 2001</b>

		<ul>
		* <a href="archive/mcs-08-Jul-2001.tar.gz">mcs-08-Jul-2001.tar.gz</a>: CVS Snapshot
		* <a href="archive/mono-08-Jul-2001.tar.gz">mono-08-Jul-2001.tar.gz</a>: CVS Snapshot
		</ul>
	</ul>