Browse thread
caml_alloc + 64 bits - caml_alloc.h
-
Daniel de Rauglaudre
- Erik de Castro Lopo
-
malc
- Olivier Andrieu
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2009-01-13 (10:26) |
From: | Olivier Andrieu <oandrieu@n...> |
Subject: | Re: [Caml-list] caml_alloc + 64 bits - caml_alloc.h |
On Tue, Jan 13, 2009 at 10:37, malc <av1474@comtv.ru> wrote: > P.S. This whole value->intnat->long makes me wonder how OCaml is > ever supposed to work on LLP64... It does already, since 3.10. From byterun/config.h : /* Win64 model: IL32LLP64 */ typedef ARCH_INT64_TYPE intnat; where ARC_INT64_TYPE is either long long or __in64 depending on the compiler (GCC or MSVC). -- Olivier