-
Notifications
You must be signed in to change notification settings - Fork 0
/
2001.12.18.html
278 lines (208 loc) · 10.7 KB
/
2001.12.18.html
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
277
278
<html><body>
<a href="2001.12.11.html">Previous week</a> <a href="index.html">Up</a> <a href="2001.12.30.html">Next week</a>
<pre>
Hello,
Here is the latest Caml Weekly News, week 12 to 18 december, 2001.
Summary:
1) <a href="#1">Pairs vs. Records</a>
2) <a href="#2">Third shared patch</a>
3) <a href="#3">Outil</a>
4) <a href="#4">Objective Caml 3.04 released</a>
5) <a href="#5">SCaml</a>
6) <a href="#6">OCamldoc 3.04 (pre-release 3)</a>
7) <a href="#7">LablGTK-1.2.3 and lablGL-0.97</a>
8) <a href="#8">Packages for O'Caml 3.04 at ocaml-programming.de</a>
9) <a href="#9">Zoggy 0.9</a>
10) <a href="#10">Report 0.2</a>
11) <a href="#11">OCamlCVS 1.0</a>
<a name="1"/>======================================================================
1) Pairs vs. Records
----------------------------------------------------------------------
Willem Duminy asked:
Hi guys,
I had a program that used pairs int*int as the basis of the primary data
structure. After changing it to use records {row:int;col:int} the
program runs slower.
I am wondering whether this performance was lost because of changing
from pairs to records, or whether it some other reason.
So my question is simply: is there a difference in the performance of
pairs and records when I use ocamlopt to compile an ocaml program in
Linux.
(follow the thread here: <a href="http://caml.inria.fr/archives/200112/msg00065.html">http://caml.inria.fr/archives/200112/msg00065.html</a>)
<a name="2"/>======================================================================
2) Third shared patch
----------------------------------------------------------------------
malc announced:
Highlights:
* Module unloading (Natdynlin.unload)
* Workaround for "mangled" function names
* Uninliner for .cmx
Download at <a href="http://algol.prosalg.no/~malc/scaml">http://algol.prosalg.no/~malc/scaml</a>
Changelog <a href="http://algol.prosalg.no/~malc/scaml/ChangeLog3">http://algol.prosalg.no/~malc/scaml/ChangeLog3</a>
<a name="3"/>======================================================================
3) Outil
----------------------------------------------------------------------
Warp announced:
Bonjour, je viens de finir un outil qui permet d'interfacer OCaml avec
Microsoft VisualC++. Cet outil est GPL et donc le code source complet
est disponible. Je pense qu'il permettra l'accés à OCaml à des
personnes pas forcément familiarisées avec l'environnement "ligne de
commande" à la Unix.
Merci de me linker, et éventuellement de tester mon logiciel si cela
vous interesse. Bravo encore pour votre travail, j'ai déja commencé à
utiliser OCaml et je compte participer activement à l'évolution de ce
langage.
Le soft est dispo sur mon site : <a href="http://www.warplayer.fr.st">http://www.warplayer.fr.st</a>
(quick and dirty translation: the link takes you to a tool that let you
interface OCaml with Microsoft Visual C++. The tool is licensed under
the GPL.)
<a name="4"/>======================================================================
4) Objective Caml 3.04 released
----------------------------------------------------------------------
Xavier Leroy announced:
End-of-year clearance! Version 3.04 of the Objective Caml system is
now available from the usual places:
<a href="http://caml.inria.fr/ocaml/distrib.html">http://caml.inria.fr/ocaml/distrib.html</a>
ftp://ftp.inria.fr/lang/caml-light/
This release is essentially a stabilization of the 3.03 Alpha release
of october 2001. To avoid potential confusion with 3.03 Alpha, we
just skipped over the 3.03 release number.
A detailed list of changes is appended below. The main changes
w.r.t. the previous final release (3.02) are:
1- Labels on function arguments are now strict (non-optional) by default,
and the standard library modules are now not labeled, instead
labeled versions of some of these modules are provided.
The previous treatment of labels (optional by default, and
generously sprinkled throughout the standard library) was unsatisfactory
(insufficient static checking). This change breaks compatibility with
versions 3.00--3.02: some programs that used labels in "classic" mode
(optional, non-commuting labels) need to be cleaned up.
The distribution provides tools and detailed hints to help doing this.
2- As an alternative to building "custom bytecode executables"
(containing C code statically linked), the bytecode interpreter now
supports dynamic loading of the C part of mixed Caml/C libraries.
This change does not break any existing program or libraries, yet
makes it much easier to use mixed Caml/C libraries in a toplevel or
dynamic loading context, and to preserve machine-independence of
bytecode executables.
3- The CamlP4 pre-processor-pretty-printer is now integrated in the
distribution. Again, this should only make life easier for users,
although we took advantage of CamlP4's better implementation of
streams and stream parsers to remove them from the core OCaml language.
4- The Windows native port has received some attention, and now sports
a new GUI for the toplevel, a new installer, and an implementation
of the Graphics library usable from stand-alone executables.
5- The libraries and run-time system are now distributed under a
special exception to the LGPL, allowing unrestricted static linking.
For general info on Objective Caml, see <a href="http://caml.inria.fr.">http://caml.inria.fr.</a> Bug
reports go to [email protected], messages for the implementors to
[email protected], and general discussions to the mailing-list
[email protected], or the comp.lang.ml or comp.lang.functional
newsgroups.
(the rest of the message with the full changelog is here:
<a href="http://caml.inria.fr/archives/200112/msg00082.html">http://caml.inria.fr/archives/200112/msg00082.html</a>)
<a name="5"/>======================================================================
5) SCaml
----------------------------------------------------------------------
malc announced:
Doh! OCaml 3.04 is released(congratulations to OCaml team), and so is
3a_shared.patch. I now consider it feature complete(for what it more or
less is: proof of concept).
Grab it from: <a href="http://algol.prosalg.no/~malc/scaml">http://algol.prosalg.no/~malc/scaml</a>
Features(ia32/ELF only):
* Ability to create DLL's with native code compiler
* Ability to link against those DLL's (with CVS binutils)
* Ability to dynamically load/unload them via Natdynlink library
(CVS binutils not needed)
* Immunity to <a href="http://algol.prosalg.no/~malc/scaml/caveat/tac.tar.gz">http://algol.prosalg.no/~malc/scaml/caveat/tac.tar.gz</a>
* Bugs i dont know anything about
<a name="6"/>======================================================================
6) OCamldoc 3.04 (pre-release 3)
----------------------------------------------------------------------
Maxence Guesdon announced:
Hi,
A new pre-release of ocamldoc is available zt
<a href="http://pauillac.inria.fr/~guesdon/Tools/ocamldoc/ocamldoc.html">http://pauillac.inria.fr/~guesdon/Tools/ocamldoc/ocamldoc.html</a>
If needs OCaml 3.04.
Chenges include bug fixes, better LaTeX generation, more options, ...
Enjoy !
<a name="7"/>======================================================================
7) LablGTK-1.2.3 and lablGL-0.97
----------------------------------------------------------------------
Jacques Garrigue announced:
As expected, here are the new release of LablGTK and lablGL for
Objective Caml 3.04.
LablGTK 1.2.3:
* supports Objective Caml 3.04 DLLs on Unix platforms
* added a GToolbox utility module (contributed by Maxence Guesdon)
* some bug fixes
LablGL 0.97:
* supports Objective Caml 3.04 DLLs on Unix platforms
You can find them at
<a href="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html">http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html</a>
<a href="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgl.html">http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgl.html</a>
and
ftp://ftp.inria.fr/lang/caml-light/bazar-ocaml/lablgtk-1.2.3.tar.gz
ftp://ftp.inria.fr/lang/caml-light/bazar-ocaml/lablgl-0.97.tar.gz
Note that if you had installed Objective Caml 3.03 alpha, or old
libraries on Objective Caml 3.04, it is a good idea to delete them
before installing.
<a name="8"/>======================================================================
8) Packages for O'Caml 3.04 at ocaml-programming.de
----------------------------------------------------------------------
Gerd Stolpmann announced:
Hi list,
there are now updated packages for O'Caml 3.04 at www.ocaml-programming.de.
Please look at
<a href="http://www.ocaml-programming.de/packages">http://www.ocaml-programming.de/packages</a>
and
<a href="http://www.ocaml-programming.de/packages/compatibility.html">http://www.ocaml-programming.de/packages/compatibility.html</a>
The new packages are:
equeue-1.2.3
rpc-0.3.1
pxp-1.1.2
findlib-0.6.2
shell-0.2.1
netclient-0.3-OCaml3.04
<a name="9"/>======================================================================
9) Zoggy 0.9
----------------------------------------------------------------------
Maxence Guesdon announced:
Hello everybody,
I'm pleased to announce the release 0.9 of Zoggy, interface builder for
OCaml/LablGtk.
Changes include :
- better interface
- support for almost all widgets of lablgtk
- support for most of their properties
- use of camlp4 to generate code
- use of camlp4 to compile zoggy files to .cmo and .cmi, and report
locations of errors in the zoggy files.
- bootstrap
The camlp4 part was developed by Daniel de Rauglaudre.
You can find Zoggy at :
<a href="http://www.maxence-g.net/Tools/zoggy/zoggy.html">http://www.maxence-g.net/Tools/zoggy/zoggy.html</a>
Enjoy !
<a name="10"/>======================================================================
10) Report 0.2
----------------------------------------------------------------------
Maxence Guesdon also announced:
Report 0.2 is available.
This tools can be used to describe XML documents and the way to fill
them with data at runtime.
Only minor changes (use of lablgtk 1.2.3 and ocaml 3.04).
<a href="http://www.maxence-g.net/Tools/report/report.html">http://www.maxence-g.net/Tools/report/report.html</a>
Enjoy !
<a name="11"/>======================================================================
11) OCamlCVS 1.0
----------------------------------------------------------------------
Maxence Guesdon kept on announcing:
OCamlCVS 1.0, a front-end to common CVS commands, is available.
Changes :
* use of LablGtk 1.2.3 and OCaml 3.04,
* sort files by clicking on column headers.
<a href="http://www.maxence-g.net/Tools/ocamlcvs/ocamlcvs.html">http://www.maxence-g.net/Tools/ocamlcvs/ocamlcvs.html</a>
Enjoy !
======================================================================
Alan Schmitt
</pre></body></html>