Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Kenneth Oksanen <cessu@hutcs.cs.hut.fi>
To: xavier.leroy@inria.fr
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] autoconf and caml
Date: Thu, 05 Sep 2002 15:23:17 +0300	[thread overview]
Message-ID: <E17mvfJ-00074V-00@hutcs.cs.hut.fi> (raw)
In-Reply-To: <20020905135720.D5343@pauillac.inria.fr> (message from Xavier Leroy on Thu, 5 Sep 2002 13:57:20 +0200)

>> I'm writing a piece of software using O'Caml and GNU autoconf (among
>> others).  In C the results of running `./configure' are conveniently
>> accessed with `#include "config.h"'.  My current solution is to
>> preprocess also the O'Caml code, but this requires some clumsy hacks
>> in Makefiles etc.  Is there a better way?  If not, then I'ld suggest
>> some flag in O'Caml which would run the source files through cpp.
>
>The -pp flag to ocamlc and ocamlopt lets you do this easily:
>  ocamlc -pp /lib/cpp ...

True, and this had already been kindly pointed out by some other
camlers.  A few remarks though:

This flag is not documented on the corresponding man-pages.

The flag does not exist in ocamlyacc and ocamllex.

ocamllex produces code that is not cpp-safe.  It contains definitions
of the form
  Lexing.lex_base = 
   "\000\000\255\255\254\255\002\000\248\255\001\000\247\255\246\255\
    \250\255\252\255\245\255\251\255\249\255\077\000\244\255\003\000\
etc.  At least when passed through GNU CPP version 2.96 20000731 (Red
Hat Linux 7.3 2.96-110) these become converted to
  Lexing.lex_base =
   "\000\000\255\255\254\255\002\000\248\255\001\000\247\255\246\255    \250\255\252\255\245\255\251\255\249\255\077\000\244\255\003\000    \030\000\031\000\160\000\235\000\054\001\129\001\204\001\023\002    \098\002\011\000\225\255\230\255\173\002\248\002\067\003\142\003    \217\003\036\004\111\004\186\004\005\005\080\005\155\005\230\005    \049\006\124\006\199\006\018\007\232\255\237\255\234\255\231\255    \236\255";

The extra whitespaces in the string constants are crucial.  The intent
of the output of ocamllex was that they would *not* be included in the
strings, but cpp mangles those strings so that they are included in
the strings, thereby producing a broken lexer.

-=-
; Kenneth Oksanen, email: cessu@iki.fi, http://www.iki.fi/~cessu
((lambda(a) (a a((lambda(a)(lambda()(set! a(+ a 1))a))1)))(lambda(a c)
((lambda(b) (newline)(write b)(a a((lambda(c)(lambda()(c c)))(lambda(a)
((lambda(c) (if(=(modulo c b)0)(a a)c))(c))))))(c)))) ; Scheme me!
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2002-09-05 12:23 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-04 15:20 Kenneth Oksanen
2002-09-05 11:57 ` Xavier Leroy
2002-09-05 12:23   ` Kenneth Oksanen [this message]
2002-09-05 12:53     ` Olivier Andrieu
2002-09-05 13:16     ` Lauri Alanko
2002-09-06 10:12       ` Kenneth Oksanen
2002-09-06 10:25         ` Jun P.FURUSE
2002-09-06 10:46         ` Yann Régis-Gianas
2002-09-06 10:56           ` Yaron M. Minsky
2002-09-06 11:07             ` Maxence Guesdon
2002-09-06 12:31               ` pa_ifdef [Was: Re: [Caml-list] autoconf and caml] Stefano Zacchiroli
2002-09-06 12:52                 ` Daniel de Rauglaudre
2002-09-08 10:07                   ` Stefano Zacchiroli
2002-09-09  8:59                     ` Daniel de Rauglaudre
2002-09-06 11:33             ` [Caml-list] autoconf and caml Yann Régis-Gianas
2002-09-06 11:22               ` Yaron M. Minsky
2002-09-06 11:28                 ` Jérôme Marant
2002-09-06 11:41                   ` Yaron M. Minsky
2002-09-06  9:42   ` Hendrik Tews

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E17mvfJ-00074V-00@hutcs.cs.hut.fi \
    --to=cessu@hutcs.cs.hut.fi \
    --cc=caml-list@inria.fr \
    --cc=xavier.leroy@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox