-
Notifications
You must be signed in to change notification settings - Fork 0
/
2002.04.23.txt
146 lines (105 loc) · 5.78 KB
/
2002.04.23.txt
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
Hello,
Here is the latest Caml Weekly News, weeks 17 to 23 april, 2002.
1) Contract Position for C++/ML programmer at Microsoft Research, Cambridge
2) OCamlSDL
3) ocaml curses library?
4) CamlTk/Windows
======================================================================
1) Contract Position for C++/ML programmer at Microsoft Research, Cambridge
----------------------------------------------------------------------
Don Syme announced:
Job Description
6 Month Contract Position for C++/ML programmer at Microsoft Research,
Cambridge
Primary aim: Delivering Generics in the "Rotor" .NET Common Language
Runtime
Microsoft Research, Cambridge have a vacancy for a 6 month contract
position to assist with out ongoing research project to implement
support for parametric polymorphism (templates/generics) in Microsoft's
new programming language C# and the .NET Common Language Runtime.
Andrew Kennedy and Don Syme have published a paper on this at PLDI 2001
describing the basic design.
Microsoft has release a shared source version of the .NET CLR, called
"Rotor" or the "Shared Source Common Language Infrastructure" (SSCLI),
initially available for FreeBSD and Microsoft Windows. We are
interested in seeing a public release of our generics work implemented
within the Rotor code base. As such, we are looking to hire a skilled
programmer to work with us on a contract basis for 6 months or so. The
first 3 months would be spent preparing a release of generics for Rotor,
and the remaining time would be spent working in collaboration with the
Rotor team and users to ensure stability. If time permits we would also
investigate performance and design improvements. We may also ask the
person to work on some of our related projects, in particular two .NET
compilers for ML languages, one of which features excellent .NET
language interoperability, and the other of which targets the our
generics design and can be used for performance testing.
The job will require the candidate to show real enthusiasm for the end
product (the world's first shared source implementation of parametric
polymorphism in an object-based runtime) and good C/C++ coding skills.
Experience with native code compiler implementation, Rotor, ML and/or
virtual machine implementation would be highly regarded. Most
importantly it will also be necessary to have the patience required to
deal with real-world software development, and of course all the
attention to detail that is needed to produce a software release!
For more information contact Dr Don Syme (dsyme@microsoft.com), or
submit your CV to t-frajos@microsoft.com . See also
http://research.microsoft.com <http://research.microsoft.com/> for
general information about Microsoft Research.
======================================================================
2) OCamlSDL
----------------------------------------------------------------------
Luc Mazardo announced:
The goal of OCamlSDL is to provide access the multimedia hardware
in the ML programming language with the help of the SDL library.
The Simple DirectMedia Layer is a generic API that provides low
level access to audio, keyboard, mouse, and display framebuffer across
multiple platforms.
here is a part of HISTORY file:
Release 0.5:
* Ocamlplayer has been added, it provides to play audio file
(ogg,xm, s3m, wav) on the commande line.
* Applying many patches.
You can look at the website for retreving infos, documentations and
downloading the new release.
http://ocamlsdl.sourceforge.net/
We always need some feedback.
======================================================================
3) ocaml curses library?
----------------------------------------------------------------------
Michael Vanier asked and Jérôme Marant answered:
> Is there an "official" ocaml binding to the unix curses library? I
> know that curses is used in the manual as an example of linking c code
> to ocaml, but it's incomplete and I was wondering if there was
> anything pre-packaged that I could just grab and compile.
You might want to look at this
http://savannah.gnu.org/projects/ocaml-tmk/
======================================================================
4) CamlTk/Windows
----------------------------------------------------------------------
Xavier Leroy said and Christophe Macabiau corrected:
> Camltk is (for the time being) Unix-only. Although Cygwin does heroic
> efforts to emulate Unix, it's not quite Unix and I'm not surprised
> that Camltk doesn't compile right out of the box under Cygwin.
CamlTk compiles under Windows !
You can have a look at SynDEx, which is written using CamlTk :
http://www-rocq.inria.fr/syndex/
It's true that it's a little difficult to compile with Cygwin, various
reasons :
* you don't have the good version of Cygwin; I use the version 1.1.8-2
(one day I tried another version unsucessfully)
* maybe you have a problem with the configure script; in this case you
must report to Pierre Weis and Jun Furuse who maintain CamlTk.
SynDEx is written with CamlTk, but no depends on cygwin.dll. Dmitry Bely
and Masakazu Fukuzawa made a patch of OCaml-3.03 to compile OCaml with
mingw (http://www.mingw.org/ ) which allows to compile under windows
without to rely on 3rd party DLL; instead of using cygwin.dll, it use
Microsoft's standard C runtime library MSVCRT.DLL. We adapted this
patch to the version 3.04 of OCaml. That's what I use to compile SynDEx.
We have discussed with the Ocaml team to include this patch in the next
version of Ocaml, to be able to compile with mingw; I don't know if they
took a decision... Maybe it would be useful to distribute this patch on
the Camltk web ?
It would be great for Ocaml users who work under Windows (it's not a
shame) to be allowed to use Camltk (it's a joke...)
======================================================================
Alan Schmitt