[Caml-list] Re: Lwt and OCamlMakefile

2010-12-21 Thread Sylvain Le Gall
-predicates syntax,preprocessor -a-format -r lwt.syntax` *) It will work on Linux. On Windows, you will get a problem because ocamlfind EOL (win32) doesn't match `...` EOL wrapping (cygwin). There was a similar problem with sexplib... Regards, Sylvain Le Gall

[Caml-list] Re: Pre-compiled ocaml binary for windows

2010-12-07 Thread Sylvain Le Gall
Hello, On 07-12-2010, Alain Frisch al...@frisch.fr wrote: On 12/07/2010 01:24 AM, Sylvain Le Gall wrote: Here is the list so far: 1. no build system setup : Martin who first did the packaging, didn't have included how to build ocaml/findlib neither the binaries itself. So basically

[Caml-list] Re: help with regular expression

2010-12-06 Thread Sylvain Le Gall
mikmatch, that helps to write regexp in a very meaningful syntax: match str with | RE bol a* | ab* eol - true | _ - false http://martin.jambon.free.fr/mikmatch-manual.html http://martin.jambon.free.fr/mikmatch.html You can use pcre and str with mikmatch. Regards, Sylvain Le Gall

[Caml-list] Re: Pre-compiled ocaml binary for windows

2010-12-06 Thread Sylvain Le Gall
Windows Installer project. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners

Re: [Caml-list] Re: oasis

2010-11-29 Thread Sylvain Le Gall
Hello, On Mon, Nov 29, 2010 at 10:46:22PM +0300, Anastasia Gornostaeva wrote: On Sun, Nov 28, 2010 at 05:17:35PM +, Sylvain Le Gall wrote: My current state about this solution is: - defines BuildDepends: freetype2 (pkg-config), to make clear that there is a C build-depends

[Caml-list] Re: oasis

2010-11-28 Thread Sylvain Le Gall
On 27-11-2010, Anastasia Gornostaeva erm...@ermine.pp.ru wrote: On Sat, Nov 27, 2010 at 10:20:38AM +, Sylvain Le Gall wrote: Hi, On 26-11-2010, Anastasia Gornostaeva erm...@ermine.pp.ru wrote: Hello. How can I substitute in setup.ml (not in _oasis file) values for CCOpt and CCLib

[Caml-list] Re: oasis

2010-11-27 Thread Sylvain Le Gall
right now, is to override this call: let () = setup ();; (last line of setup.ml) by let f pkg = (* Call freetype-config and add flags where needed in pkg *) ... let () = BaseSetup.setup (f setup_t);; Regards, Sylvain Le Gall ___ Caml

[Caml-list] Re: Is OCaml fast?

2010-11-22 Thread Sylvain Le Gall
time + execution time is fast. But if you spend 10x development time on the same C code, you will obviously get something faster in C. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman

[Caml-list] [was: Re: Is OCaml fast?] OCaml Shootout task force

2010-11-22 Thread Sylvain Le Gall
an email + preferred VCS (among svn, git, darcs) and your account login on http://forge.ocamlcore.org. I will take care, when ready, to made this code available in the shootout once finished. Regards, Sylvain Le Gall ___ Caml-list mailing list

[Caml-list] Re: Optimizing garbage collection

2010-11-22 Thread Sylvain Le Gall
to stop? - Maybe you can stop when you reach (the size of the L2/L3 cache of the processor) / number of core. Both information are quite straight to read from /proc/cpuinfo. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management

[Caml-list] Re: [Was: OCamlJit 2.0]

2010-11-20 Thread Sylvain Le Gall
, the migration you are talking about is starting a new project that will replace one software/library by another. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives

[Caml-list] Re: Looking for stubs for sendmsg/recvmsg

2010-11-20 Thread Sylvain Le Gall
On 20-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: On 19-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: On 19-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv

[Caml-list] Re: Looking for stubs for sendmsg/recvmsg

2010-11-19 Thread Sylvain Le Gall
) an Unix.file_descr over a Unix Domain Socket. Does anyone know of a module that has them? If you don't find one and plan to write it yourself, this would be a good addition to extunix: http://extunix.forge.ocamlcore.org Regards, Sylvain Le Gall

[Caml-list] Re: ocamlbuild and packs

2010-11-19 Thread Sylvain Le Gall
(contains 'A B') Is there any way with ocamlbuild to build that tree (if possible using only _tags files, but if not I would be happy to have at least a solution :-) ? You can try to start building A/a.mlpack and use the generated library in other libraries. Regards, Sylvain Le Gall

[Caml-list] Re: Looking for stubs for sendmsg/recvmsg

2010-11-19 Thread Sylvain Le Gall
Hello, On 19-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: On 18-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Hi, I'm looking for stubs for ssize_t sendmsg(int sockfd, const struct msghdr *msg, int flags

[Caml-list] Re: Looking for stubs for sendmsg/recvmsg

2010-11-19 Thread Sylvain Le Gall
On 19-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: On 19-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: On 18-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Not that much, if you

[Caml-list] Re: SMP multithreading

2010-11-17 Thread Sylvain Le Gall
On 17-11-2010, Goswin von Brederlow goswin-...@web.de wrote: Sylvain Le Gall sylv...@le-gall.net writes: Hi, On 15-11-2010, Wolfgang Draxinger wdraxinger.maill...@draxit.de wrote: Hi, I've just read http://caml.inria.fr/pub/ml-archives/caml-list/2002/11/64c14acb90cb14bedb2cacb73338fb15

[Caml-list] Re: Native toplevel? (was: OCamlJit 2.0)

2010-11-17 Thread Sylvain Le Gall
in the OCaml toplevel. OASIS generates a setup.ml that is interpreted using the toplevel. Maybe, a native toplevel can enhance the speed of this process (it takes less than 1 second to run). http://oasis.forge.ocamlcore.org Regards, Sylvain Le Gall

[Caml-list] Re: SMP multithreading

2010-11-16 Thread Sylvain Le Gall
of them. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports

[Caml-list] Re: Type Safety comes to the iPad

2010-11-09 Thread Sylvain Le Gall
of a chicken/egg scenario. Anyway I am inordinately proud of my new publication and if you know anybody who has an iPad, please let them know about it. http://itunes.apple.com/app/ocamlexample/id396515573?mt=8# Congratulation, this is a really nice work. Regards, Sylvain Le Gall

[Caml-list] Re: Help with Elliom syntax

2010-11-04 Thread Sylvain Le Gall
]; ... ] Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http

[Caml-list] Re: Help with Elliom syntax

2010-11-04 Thread Sylvain Le Gall
Hello, On 04-11-2010, Till Crueger till.crue...@gmx.net wrote: On Thu, 04 Nov 2010 13:31:35 +0100, Sylvain Le Gall sylv...@le-gall.net wrote: Most of the time you have an ~a parameter. Example: div ~a:[a_class [statistics]] [ h2 [pcdata Statistics]; ... ] Thanks for the help again

[Caml-list] Re: type inference problem with Printf.sprintf ?

2010-11-03 Thread Sylvain Le Gall
the internationally standardized format for dates: # Printer.Calendar.print %F %T\n (Calendar.now ()) ;; 2010-10-27 11:28:59 - : unit = () Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman

[Caml-list] Re: Generalized Algebraic Datatypes

2010-10-31 Thread Sylvain Le Gall
-- and motivation. The only limitation I can see, is that the generated constructors won't be capitalized. E.g.: type t = MyConstr | YourConstr of int = type t = MyConstr | YourConstr of int let myConstr = MyConstr let yourConstr i = YouConstr i Regards, Sylvain Le Gall

[Caml-list] Re: Generalized Algebraic Datatypes

2010-10-31 Thread Sylvain Le Gall
On 31-10-2010, Lukasz Stafiniak lukst...@gmail.com wrote: On Sun, Oct 31, 2010 at 3:35 PM, Sylvain Le Gall sylv...@le-gall.net wrote: On 31-10-2010, Wojciech Daniel Meyer wojciech.me...@googlemail.com wrote: bluestorm bluestorm.d...@gmail.com writes: It was actually the case in Caml Light

[Caml-list] Re: Generalized Algebraic Datatypes

2010-10-29 Thread Sylvain Le Gall
=1704671501085578312hl=en# Regards Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug

[Caml-list] [ANN] oasis v0.2.0: Architecture for building OCaml libraries and applications

2010-10-22 Thread Sylvain Le Gall
OASIS generates a full configure, build and install system for your application. It starts with a simple `_oasis` file at the toplevel of your project and creates everything required. It uses external tools like OCamlbuild and it can be considered as the glue between various subsystems that do

[Caml-list] [ANN] ocaml-data-notation v0.0.3: Store data using OCaml notation

2010-10-22 Thread Sylvain Le Gall
This library uses `type-conv` to dump OCaml data structures using OCaml data notation. This kind of data dumping helps to write OCaml code generator, like OASIS. Changes: * Partial support for polymorphic variant, as used in OASIS v0.2.0 Homepage: http://forge.ocamlcore.org/projects/odn Get

[Caml-list] Re: [ANN] oasis v0.2.0: Architecture for building OCaml libraries and applications

2010-10-22 Thread Sylvain Le Gall
/?group_id=54 Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http

[Caml-list] Re: [ANN] oasis v0.2.0: Architecture for building OCaml libraries and applications

2010-10-22 Thread Sylvain Le Gall
first the general help, then the subcommand-specific help; I think just the subcommand-specific help would be a better output All this seems quite reasonable. May I ask you to submit feature requests about this on the BTS? Regards Sylvain Le Gall

[Caml-list] Re: [ANN] oasis v0.2.0: Architecture for building OCaml libraries and applications

2010-10-22 Thread Sylvain Le Gall
On 22-10-2010, bluestorm bluestorm.d...@gmail.com wrote: On Fri, Oct 22, 2010 at 7:51 PM, Sylvain Le Gall sylv...@le-gall.netwrote: Have you tried the revamped quickstart subcommand. I am trying to make the creation of _oasis as easy as possible... If you have any suggestions to help make

[Caml-list] Re: Unicode, update

2010-10-14 Thread Sylvain Le Gall
as an external library? Thanks for the update Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group

[Caml-list] Re: Type constraint to explain that a polymorphic variants is included into another

2010-10-11 Thread Sylvain Le Gall
Hello, On 08-10-2010, Jacques Garrigue garri...@math.nagoya-u.ac.jp wrote: On 2010/10/09, at 2:13, Sylvain Le Gall wrote: Hello all, I would like to build an interface for plugins that allow to extract at the same time a very specific data for a plugin family and to extract general help

[Caml-list] Type constraint to explain that a polymorphic variants is included into another

2010-10-08 Thread Sylvain Le Gall
to this problem? Does anyone have a better solution to this problem? (different design?) Thank you for your answers, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http

[Caml-list] Re: Type constraint to explain that a polymorphic variants is included into another

2010-10-08 Thread Sylvain Le Gall
On 08-10-2010, Jake Donham j...@donham.org wrote: On Fri, Oct 8, 2010 at 10:13 AM, Sylvain Le Gall sylv...@le-gall.net wrote: This code doesn't compile because I see no way to explain that F.kind is included into plugin_kind. As you have written it, F.kind is of course completely abstract. I

[Caml-list] [ANN] ounit v1.1.0: Unit testing framework

2010-10-06 Thread Sylvain Le Gall
- Maintainance is now done by Sylvain Le Gall (OCamlCore SARL), thanks to Maas-Maarten Zeeman for all his work __As you see there are a lot of changes. OUnit is evolving, feel free to submit bug reports or contribute your own OUnit snippet if it can be included in the library.__ Homepage: http

[Caml-list] [ANN] ocaml-expect v0.0.2: Expect-like framework

2010-09-30 Thread Sylvain Le Gall
This is a simple implementation of `expect` to help building unitary testing of interactive program. It helps to receive question and send answers from an interactive process. You can match the question using a regular expression (Str). You can also use a timeout to ensure that the process answer

[Caml-list] Re: what do I need to know to understand camlp4

2010-09-23 Thread Sylvain Le Gall
, there is a tutorial session at CUFP: http://cufp.org/conference/sessions/2010/camlp4-and-template-haskell (but you need to subscribe). Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml

[Caml-list] Re: How can I set a type parameter of Map.Make(X) ?

2010-09-20 Thread Sylvain Le Gall
(* N.B. Y is syntactically incorrect for a type identifier, you need to use y *) Regards Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr

[Caml-list] Re: OCaml projects on github, hard to find?

2010-09-20 Thread Sylvain Le Gall
On 20-09-2010, Mike Lin mike...@mit.edu wrote: On Fri, Sep 17, 2010 at 5:04 AM, Sylvain Le Gall sylv...@le-gall.net wrote: Could OCamlForge be set up to do one-click read-only mirroring of interesting github projects? That is a possible project: https://forge.ocamlcore.org/tracker/index.php

[Caml-list] OCaml projects on github, hard to find?

2010-09-17 Thread Sylvain Le Gall
. Regards, Sylvain Le Gall p.s.: if someone can volunteer to create a small application that automatically fetch new projects/news from project on github/google code/whatever, I will be happy to add it to planet.ocamlcore.org. ___ Caml-list mailing list

[Caml-list] Re: OCaml projects on github, hard to find?

2010-09-17 Thread Sylvain Le Gall
On 17-09-2010, Martin DeMello martindeme...@gmail.com wrote: On Fri, Sep 17, 2010 at 2:13 PM, Sylvain Le Gall sylv...@le-gall.net wrote: Hello all, Before anyone claimed that I am not honest, let me be clear: I am one of the admin of OCaml Forge, so I am biased. So here is my problem, from

[Caml-list] Re: How to re-implement the GC?

2010-09-13 Thread Sylvain Le Gall
-up with multicore). Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug

[Caml-list] Re: How to re-implement the GC?

2010-09-13 Thread Sylvain Le Gall
we plug our own algorithm to the oc4mc if it has already provided the basic changes to substitute the GC? I think you won't be able to plugin your own GC. The one they provide is a stop the world... I am not sure though, ask them directly. Regards, Sylvain Le Gall

[Caml-list] Re: How to re-implement the GC?

2010-09-13 Thread Sylvain Le Gall
On 13-09-2010, Eray Ozkural examach...@gmail.com wrote: --===0758070018== Content-Type: multipart/alternative; boundary=000e0cd18672fce48b049024b79e --000e0cd18672fce48b049024b79e Content-Type: text/plain; charset=ISO-8859-1 On Mon, Sep 13, 2010 at 3:22 PM, Sylvain Le Gall sylv

[Caml-list] Re: [ANN] camera-rescue v0.0.1: Recover JPEG files from a crashed SD/MMC/CF camera memory card

2010-09-08 Thread Sylvain Le Gall
On 08-09-2010, Gabriel Kerneis kern...@pps.jussieu.fr wrote: On Tue, Sep 07, 2010 at 10:50:42PM +0200, Sylvain Le Gall wrote: This program searches for JPEG files into a dump of a memory card (a RAW file). Once found, each files is saved in a different JPEG file. Out of curiosity, what

[Caml-list] [ANN] ocaml-expect v0.0.1: Expect-like framework

2010-09-07 Thread Sylvain Le Gall
This is a simple implementation of `expect` to help building unitary testing of interactive program. It helps to receive question and send answers from an interactive process. You can match the question using a regular expression (Str). You can also use a timeout to ensure that the process answer

[Caml-list] Re: CUFP 2010 is coming! (Oct 12 in Baltimore MD)

2010-09-05 Thread Sylvain Le Gall
/functional-language-compiler-experiences-intel Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com

[Caml-list] [ANN] Cryptokit 1.4

2010-09-04 Thread Sylvain Le Gall
/projects/cryptokit/ or for testing oasis-db: http://oasis.ocamlcore.org/dev/browse?pkg=cryptokit Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http

[Caml-list] Create a constraint between variant type and data list

2010-09-03 Thread Sylvain Le Gall
ideas ? If you need to use another type expression rather than variant, please do so, as long as I am able to link the license type and data list. Thanks all, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi

[Caml-list] Re: Create a constraint between variant type and data list

2010-09-03 Thread Sylvain Le Gall
On 03-09-2010, Maxence Guesdon maxence.gues...@inria.fr wrote: Le Fri, 3 Sep 2010 17:16:48 + (UTC), Sylvain Le Gall sylv...@le-gall.net a écrit : A solution is to add your new license to your list of associations, then the compiler will complain about the unknown variant :) This is my

[Caml-list] Re: ANN: ocamljs 0.3

2010-08-27 Thread Sylvain Le Gall
/) OBrowser seems to be replaced by Js_of_OCaml - Js_of_OCaml (http://ocsigen.org/js_of_ocaml/overview) - OcamlJS Have a look at: http://ambassadortothecomputers.blogspot.com/2010/08/ocamljs-03.html Regards, Sylvain Le Gall ___ Caml-list mailing list

[Caml-list] Re: Please provide at least one page for your ocaml projects

2010-08-25 Thread Sylvain Le Gall
On 25-08-2010, Sylvain Le Gall sylv...@le-gall.net wrote: On 25-08-2010, Maxence Guesdon maxence.gues...@inria.fr wrote: Indeed, having to look for this information in a tarball of a git repos (with gitweb) is not very convenient. Even the project page on a forge is not the best way to get

[Caml-list] Re: Question about float refs.

2010-08-23 Thread Sylvain Le Gall
not local) implies a call to caml_modify (byterun/memory.c|h) which has a cost. This cost is bigger on amd64 architecture because one test is quite expensive (Is_in_heap I think) due to address space randomization. Regards, Sylvain Le Gall ___ Caml-list

[Caml-list] Re: Fwd: More re GC hanging

2010-08-15 Thread Sylvain Le Gall
talked about ocaml-ssl possibly and your application hanging, it reminds me: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591891 ocaml-ssl and ocaml-dbus are involved, so maybe the guilty party is ocaml-ssl -- this is just a guess, not sure about anything. Regards, Sylvain Le Gall

[Caml-list] Re: scalable web apps

2010-07-26 Thread Sylvain Le Gall
, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http://caml.inria.fr

[Caml-list] Re: scalable web apps

2010-07-26 Thread Sylvain Le Gall
? For sqlite, at least, it uses Lwt_preemptive.detach and sqlite3 contains the required caml_enter/leave_blocking_section(s). So Lwt should work without problems with sqlite. I suppose it is the same for dbm. Regards, Sylvain Le Gall ___ Caml-list

[Caml-list] Re: scalable web apps

2010-07-26 Thread Sylvain Le Gall
On 26-07-2010, Gabriel Kerneis kern...@pps.jussieu.fr wrote: On Mon, Jul 26, 2010 at 05:10:01PM +, Sylvain Le Gall wrote: Both Dbm and Sqlite lock the entire files which blocks concurrent uses, isn't it a problem? For sqlite, at least, it uses Lwt_preemptive.detach and sqlite3 contains

[Caml-list] Re: scalable web apps

2010-07-24 Thread Sylvain Le Gall
it when I have time. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug

[Caml-list] Re: Cryptokit and HMAC-SHA256

2010-07-22 Thread Sylvain Le Gall
/tracker/?group_id=133 Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug

[Caml-list] Re: Cryptokit and HMAC-SHA256

2010-07-21 Thread Sylvain Le Gall
decide to code the solution and provide the patch, I will be happy to apply it to cryptokit (if the main author of cryptokit accepts it, of course). Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin

[Caml-list] Re: Binding the Lua library [was: adding a scripting language to an ocaml program]

2010-07-07 Thread Sylvain Le Gall
an hg repository if needed. If anyone is interested, I think more forces to this effort are welcome. I would be glad that at least David, Paolo and Christian join ;-) Regards, Sylvain Le Gall ps: right now I can provide some time to setup the forge account and web pages, but I will have

[Caml-list] Re: exception error trace back in ocaml

2010-06-21 Thread Sylvain Le Gall
to see it in the full trace. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners

[Caml-list] Re: Unix.send blocks

2010-06-16 Thread Sylvain Le Gall
behavior. Any help appreciated. I don't have a clue but maybe you can tell us more about the pattern of requests from the browser. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman

[Caml-list] Re: Unix.send blocks

2010-06-16 Thread Sylvain Le Gall
. There is (was) a bug in the windows select implementation. It had problems with the GC. http://caml.inria.fr/mantis/view.php?id=4844 There was when OCaml 3.12 will be out ;-) However, I think it should have crash if it falls into this bug. Regards, Sylvain Le Gall

[Caml-list] Re: Unix.send blocks

2010-06-16 Thread Sylvain Le Gall
on Windows with latest version of OCaml. But there were a couple of bugs corrected in version 3.12 (esp. O_NONBLOCK + select). Next version will be safer for the use of select on Windows. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription

[Caml-list] Re: [ANN] Camomile 0.7.3

2010-05-14 Thread Sylvain Le Gall
: is it possible to store .mar file as .mar.gz? This would help to reduce occupation by a factor of 5... Regards Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http

[Caml-list] Re: about OcamIL

2010-05-14 Thread Sylvain Le Gall
of thing in Open Source World... Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group

[Caml-list] Re: Mbox-Readers

2010-05-11 Thread Sylvain Le Gall
exception. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports

[Caml-list] Re: Subtyping structurally-equivalent records, or something like it?

2010-05-04 Thread Sylvain Le Gall
On 04-05-2010, rossb...@mpi-sws.org rossb...@mpi-sws.org wrote: Sylvain Le Gall sylv...@le-gall.net: This is not about optimized compiler in this case but about data representation. Even if you use an optimized compiler (which is not really the case with ocamlopt), you won't change

[Caml-list] Re: OCaml / F# co-development

2010-05-03 Thread Sylvain Le Gall
posts by CoherentPDF on http://planet.ocamlcore.org 1 year ago. Here is one of them: http://coherentpdf.com/blog/?p=10 Browse their archives to have more: http://www.coherentpdf.com/news-archive.html Regards, Sylvain Le Gall ___ Caml-list mailing list

[Caml-list] Re: Subtyping structurally-equivalent records, or something like it?

2010-05-01 Thread Sylvain Le Gall
, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http://caml.inria.fr/bin

[Caml-list] Re: Extending Set - strange behavior of abstract type

2010-04-27 Thread Sylvain Le Gall
(Ord : Set.OrderedType) = struct include Set.Make(Ord) module Set : Set.S with type t = t = Set.Make(Ord) end end The type t = t do the trick. The first t is bound inside Set and the other comes from include Set.Make(Ord). Regards Sylvain Le Gall

[Caml-list] Re: SHA1 = stdlib ?!

2010-04-24 Thread Sylvain Le Gall
Hello, On 24-04-2010, Oliver Bandel oli...@first.in-berlin.de wrote: is it planned, to also include SHA1-Hash into stdlib? What is the advantage of having SHA-1 in stdlib rather than in cryptokit for example? Regards, Sylvain Le Gall ___ Caml-list

[Caml-list] Re: SHA1 = stdlib ?!

2010-04-24 Thread Sylvain Le Gall
/cryptokit/ Cryptokit is written by X. Leroy, the same author as OCaml. There is a debian package for it (apt-get install libcryptokit-ocaml-dev), a Fedora package and a GODI package. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription

[Caml-list] Re: ocamlcore.org not available

2010-04-24 Thread Sylvain Le Gall
which hosts the DNS server that should propagate *.ocamlcore.org domain. I have a similar problem on 2010-03-09 at 22:00 for 2 hours. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman

[Caml-list] Re: Inspect libary

2010-04-15 Thread Sylvain Le Gall
will be recognized. http://www.cacert.org/index.php?id=3 This is done by default on Debian for example. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http

[Caml-list] Re: Caml-inspect library

2010-04-15 Thread Sylvain Le Gall
-inspect. Regards, Sylvain Le Gall ps: maybe one day we will be able to integrate nicely github with forge.ocamlcore.org and you will just have to hit the button Share my projects on github through forge.ocamlcore.org... Any taker send me an email

[Caml-list] Re: Building ocaml on Win32 using VS 2008

2010-04-14 Thread Sylvain Le Gall
the same toolchain as VS 2008. And note that despite its name, the SDK is not related to Win7 at all: it works for older of Windows as well. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin

[Caml-list] [ANN] OASIS 0.1.0, ocamlify 0.0.1 and ocaml-data-notation 0.0.1

2010-04-08 Thread Sylvain Le Gall
. It uses type-conv to create data dumper functions, you just have to add with odn in the type definition. There is no load scheme, since it is used to dump datastructure into OCaml scripts. It is mainly a code generator helper. Regards, Sylvain Le Gall

[Caml-list] [ANN] OCaml Meeting 2010, final notice

2010-04-01 Thread Sylvain Le Gall
OCaml Meeting, an OCaml hacking day will take place: Further information and inscriptions: http://wiki.cocan.org/events/europe/ocamlhackingdayparis2010 The subscription will be closed at midnight, Paris time. Regards, Sylvain Le Gall on behalf of the OCaml Meeting organization team

[Caml-list] [ANN] OCaml Meeting 2010, end of subscription is on next friday

2010-03-30 Thread Sylvain Le Gall
in (Haskell user group, CUFP mailing list...) For people who need further information, you can contact me (see wiki.cocan.org for contact details). Hope to see a lot of you Regards Sylvain Le Gall on behalf of the OCaml Meeting organization team

[Caml-list] Re: Shared memory parallel application: kernel threads

2010-03-12 Thread Sylvain Le Gall
MPI can work on a single computer to take advantage of multi-core through multi-processus. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr

[Caml-list] [ANN] OCaml Meeting 2010, 3 weeks before end of subscription

2010-03-10 Thread Sylvain Le Gall
to any groups that can be interested in (Haskell user group, CUFP mailing list...) For people who need further information, you can contact me (see wiki.cocan.org for contact details). Hope to see a lot of you Regards Sylvain Le Gall on behalf of the OCaml Meeting organization team

[Caml-list] Re: gc overhead

2010-03-03 Thread Sylvain Le Gall
Hello, On 03-03-2010, Edgar Friendly thelema...@gmail.com wrote: On 03/02/2010 06:09 PM, Warren Harris wrote: On Mar 2, 2010, at 2:03 PM, Sylvain Le Gall wrote: You can have a look at: http://ocamlviz.forge.ocamlcore.org Thanks! This looks very promising. I'll give it a try. Overall

[Caml-list] Re: gc overhead

2010-03-02 Thread Sylvain Le Gall
. I think that with a little a little help on program side, you can be quite precise about GC without using gprof at all. This should also be more lightweight than gprof. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http

[Caml-list] Re: [newbie] miscellaneous on installation and web site

2010-03-01 Thread Sylvain Le Gall
: participate to various OCaml projects or create your own Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http

[Caml-list] Re: [newbie] miscellaneous on installation and web site

2010-03-01 Thread Sylvain Le Gall
Debian/Ubuntu people working on the packaging (not the library). But even if there has been no release for a while, it doesn't mean that it is orphaned or unmaintained... Try it to see if it is working. Regards, Sylvain Le Gall ___ Caml-list mailing list

[Caml-list] Re: OCaml/C variant representation

2010-02-28 Thread Sylvain Le Gall
On 28-02-2010, Jianzhou Zhao jianz...@seas.upenn.edu wrote: On Wed, Feb 24, 2010 at 11:42 AM, Sylvain Le Gall sylv...@le-gall.net wrote: On 24-02-2010, Jean Yang jeany...@csail.mit.edu wrote: Please have a look at: http://caml.inria.fr/mantis/view.php?id=4803 This section is misleading. You

[Caml-list] [ANN] OCaml Meeting 2010 in Paris, 2nd call

2010-02-15 Thread Sylvain Le Gall
Regards Sylvain Le Gall on behalf of the OCaml Meeting organization team. ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http

[Caml-list] Re: Being aware of memory overuse

2010-02-10 Thread Sylvain Le Gall
future. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http

[Caml-list] Re: debugging memory leaks

2010-02-02 Thread Sylvain Le Gall
or google code. Thanks, You could consider, putting your code on http://forge.ocamlcore.org This is probably the place where it will have the best visibility for other OCaml developers. Regards Sylvain Le Gall ___ Caml-list mailing list. Subscription

[Caml-list] Re: ExtLib/Camomile UTF8

2010-01-26 Thread Sylvain Le Gall
in Debian: we cannot easily access download section. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com

[Caml-list] Re: Bytecode run on AIX - unknown C primitive error

2010-01-20 Thread Sylvain Le Gall
why ocamlopt cannot be built ? Regards Sylvain Le Gall Christoph Bauer From: caml-list-boun...@yquem.inria.fr [mailto:caml-list-boun...@yquem.inria.fr] On Behalf Of Dawid Toton Sent: Tuesday, January 19, 2010 9:32 PM To: caml-list@yquem.inria.fr Subject: [Caml-list] Bytecode run on AIX

[Caml-list] [ANN] OCaml Meeting 2010 in Paris

2010-01-14 Thread Sylvain Le Gall
. Hope to see a lot of you Regards Sylvain Le Gall on behalf of the OCaml Meeting organization team. ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's

[Caml-list] Re: general question, was Re: OCaml is broken

2010-01-03 Thread Sylvain Le Gall
with OCaml without encounting these problems. For the topic you describe, OCaml is a good choice. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http

[Caml-list] Re: OCaml is broken

2009-12-21 Thread Sylvain Le Gall
using multi-processes as fast as other commercial programs that do the same thing. In particular, it runs faster than another well-known program written in C, using threads on Windows and on Linux. Regards, Sylvain Le Gall ___ Caml-list mailing list

[Caml-list] Re: OCaml is broken

2009-12-19 Thread Sylvain Le Gall
On 19-12-2009, Erik Rigtorp e...@rigtorp.com wrote: Please fix OCaml! The first step would be to support multiple runtimes running in the same process communicating using message queues. You should take a look at: http://jocaml.inria.fr/ Regards, Sylvain Le Gall

[Caml-list] Re: What is CPAN? (was: Re: Hoogle for Ocaml)

2009-12-03 Thread Sylvain Le Gall
it (ssh.ocamlcore.org has rsync installed). Everything is ready on *.ocamlcore.org, we just need some volunteer to do the work. Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list

[Caml-list] Re: Simple ocamlbuild example for C stubs?

2009-11-28 Thread Sylvain Le Gall
give more details/actual layout of your myocamlbuild.ml ? Regards, Sylvain Le Gall ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http

  1   2   >