typedef of missing types

Jón Hallur Haraldsson jonhallur at gmail.com
Wed Feb 1 11:44:05 UTC 2017


In ecl/config.h line 220 there is a block labelled /* Missing integer types
*/

The int8_t has a typedef of char which is incompatible with Windows
standard types.

https://msdn.microsoft.com/en-us/library/323b6b3k.aspx

changing line 221 from:

typedef char int8_t;
to
typedef signed char int8_t;

Fixes the issue for me and allows me to compile both lisp code and C++
projects using ecl.lib


I know that char and signed char should be the same but the MS VS compile
disagrees.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/ecl-devel/attachments/20170201/0615f28e/attachment.html>


More information about the ecl-devel mailing list