[Ecls-list] Problem building from git

Gabriel Dos Reis gdr at integrable-solutions.net
Sun Feb 1 20:50:33 UTC 2009


On Sun, Feb 1, 2009 at 1:04 PM, Juan Jose Garcia-Ripoll
<juanjose.garciaripoll at googlemail.com> wrote:
> On Sun, Feb 1, 2009 at 7:58 PM, Gabriel Dos Reis
> <gdr at integrable-solutions.net> wrote:
>> On Sun, Feb 1, 2009 at 12:09 PM, Juan Jose Garcia-Ripoll
>>> There was a typo in this function, which caused it to search in a
>>> wrong way for the element type. I have just built ECL on a 64-bit
>>> intel machine, without extra options, and seems to build and run just
>>> fine.
>>
>> Hmm, I just updated to the latest CVS trunk.  A fresh build
>> stills fails for me, at the same point as I reported earlier.
>
> I sent a message that only the CVS tree gets updated. There are
> problems with the Sourceforge servers, it seems. The problem I fixed
> is mostly contained in the last commit from
> http://tream.dreamhosters.com/git/?p=lisp/ecl.git&a=summary
>
> Juanjo

OK, I checked out the git repo, and the builds just
went fine.  Thanks.

BTW think that the cast

    (int)file

where file is of type void*, is highly unportable because of
differences in type precision.  Rather, it should be

   (int)(intptr_t)file

since intptr_t is garanteed to be precise enough to hold
a value of type void*.




More information about the ecl-devel mailing list