From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: *** X-Spam-Status: No, score=3.1 required=5.0 tests=AWL,DNS_FROM_RFC_POST, HTML_MESSAGE,SPF_NEUTRAL autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by yquem.inria.fr (Postfix) with ESMTP id 81205BB84 for ; Sun, 7 Dec 2008 20:21:42 +0100 (CET) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AkACAHKwO0nRVd0VjWdsb2JhbACCQS6Cco0yPgEBAQEJCQoJDwWtLYEDiW8BAwEDgwI X-IronPort-AV: E=Sophos;i="4.33,730,1220220000"; d="scan'208,217";a="20046622" Received: from mail-qy0-f21.google.com ([209.85.221.21]) by mail3-smtp-sop.national.inria.fr with ESMTP; 07 Dec 2008 20:21:41 +0100 Received: by qyk14 with SMTP id 14so869377qyk.3 for ; Sun, 07 Dec 2008 11:21:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :content-type:mime-version:subject:date:x-mailer; bh=ETNAIgFsXQ8VUnc9GngnxUdI7daqx+6Dc67gR0UYJ7U=; b=GNslIer/HS+hh8iKoHVRlX1afrW7uwFPWXLD6HlQQdr7xLQAMEs+Ekfqcwv13g4TEw rQcC5phqpYngSvT9B1W3cmoJfWfbpNG93QpVB/EHoO/HZ4RNkqcDUX3vgst9ABlePszp Lt8wHyOEnmHE/LTNekdRgGhUNk4Bse+B8RiSc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:content-type:mime-version:subject:date:x-mailer; b=L4wL/XB2H++w8ThnTKTYfTIE+TvMIeJjg69gdt2R0pExA/ydFoZ7zl69Q5eL0PK8p0 am/KfCi78lReJ1D4V1y7u8sXQ5cc23VGxkike6n3Ke7KGoxjNzibtvTwxSiPw+Juxz2G jMDMs4Z+9cnGXIjcXVAr9ilSb/4oGXgvz0jyM= Received: by 10.214.218.7 with SMTP id q7mr1632101qag.142.1228677700804; Sun, 07 Dec 2008 11:21:40 -0800 (PST) Received: from ?192.168.1.102? ([64.30.3.122]) by mx.google.com with ESMTPS id 9sm1479224yws.11.2008.12.07.11.21.39 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 07 Dec 2008 11:21:39 -0800 (PST) Message-Id: From: Alexy Khrabrov To: caml-list@yquem.inria.fr Content-Type: multipart/alternative; boundary=Apple-Mail-3--885088657 Mime-Version: 1.0 (Apple Message framework v929.2) Subject: caml_atom_table bug still present in ocaml 3.11.0 Date: Sun, 7 Dec 2008 14:21:38 -0500 X-Mailer: Apple Mail (2.929.2) X-Spam: no; 0.00; bug:01 ocaml:01 ocamlopt:01 ocaml:01 asmrun:01 cheers:01 ocamlopt:01 asmrun:01 cheers:01 char:01 char:01 helvetica:98 caml-list:01 caml-list:01 undefined:01 --Apple-Mail-3--885088657 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit When compiling with ocamlopt from 3.11 on Mac OSX 10.5, I got errors about undefined symbols: caml_atom_table and caml_static_data_start, and googled out this: http://caml.inria.fr/pub/ml-archives/caml-list/2005/05/e3905eefb5bca0ae534f009bbd2727b0.en.html There's also related, if somewhat different, discussion about dylib's at http://tunes.org/~nef//logs/ocaml/08.02.04 The sollution is still the same, with the only one of the two lines remaining from that example in asmrun/startup.c, line 40 in the current one: char * caml_code_area_start, * caml_code_area_end = NULL; /* added the initializer */ -- and now things work well. Under the 2005 thread, the resolution, by John Skaller, was, it should go into the bugtracker; did it, and if not, should it now? :) Cheers, Alexy --Apple-Mail-3--885088657 Content-Type: text/html; charset=US-ASCII Content-Transfer-Encoding: quoted-printable When compiling with ocamlopt = from 3.11 on Mac OSX 10.5, I got errors about undefined symbols: = caml_atom_table and caml_static_data_start, and googled out = this:


There's also related, if somewhat different, discussion about = dylib's at


The sollution is still = the same, with the only one of the two lines remaining from that example = in asmrun/startup.c, line 40 in the current = one:

char * caml_code_area_start, * = caml_code_area_end =3D NULL; /* added the initializer = */

-- and now things work = well.

Under the 2005 thread, the resolution, = by John Skaller,