help-flex
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Flex: Cygwin and Windows ports


From: Vincent Caron
Subject: Flex: Cygwin and Windows ports
Date: 21 Oct 2002 22:31:04 +0200

Hello,

I'd like to use the latest Flex (ie. 2.5.23) under a Windows 
environment. The main pb is related to the integral types declaration 
(in flexint.h).

Cygwin :

* does not have <inttypes.h>
* but provides <sys/types.h> which defines most integral types
* the latter is needed for the uint* unsigned types (Cygwin adds an 
extra underscore) :

   typedef u_int8_t uint8_t;
   typedef u_int16_t uint16_t;
   typedef u_int32_t uint32_t;

As far as I could check, looks like an ISOC99 non compliance issue ( 
http://www.opengroup.org/onlinepubs/007904975/basedefs/stdint.h.html ). This
mail is cc'ed to address@hidden


Windows : is not even vaguely POSIX, so you get something like :

typedef __int8 int8_t;
typedef __int16 int16_t;
typedef __int32 int32_t;
typedef __int64 int64_t;
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;


I don't know how you would like to solve those issues, thus I'm not 
sending my brutal flexint.h patch :)






reply via email to

[Prev in Thread] Current Thread [Next in Thread]