Overview
Comment: | Updated to use stdint in Metakit to determine integer types |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
79b6f2657bebe8d873769272e48183bb |
User & Date: | rkeene on 2014-05-21 00:55:33 |
Other Links: | manifest | tags |
Context
2014-05-21
| ||
03:57 | Updated to build Linux test as RHEL5 as well as allow user to specify individual targets check-in: 823074a385 user: rkeene tags: trunk | |
00:55 | Updated to use stdint in Metakit to determine integer types check-in: 79b6f2657b user: rkeene tags: trunk | |
2014-05-20
| ||
22:58 | Updated to include global CFLAGS/LDFLAGS/CPPFLAGS/LIBS in addition to per-project settings check-in: fddc41b4b8 user: rkeene tags: trunk | |
Changes
Added mk4tcl/patches/all/metakit-2.4.9.7-fix3264.diff version [cbea8b0f9a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | diff -uNr metakit-2.4.9.7.orig/include/mk4.h metakit-2.4.9.7-1fix3264/include/mk4.h --- metakit-2.4.9.7.orig/include/mk4.h 2007-06-15 19:23:25.000000000 -0500 +++ metakit-2.4.9.7-1fix3264/include/mk4.h 2014-05-20 19:45:24.000000000 -0500 @@ -9,6 +9,8 @@ #ifndef __MK4_H__ #define __MK4_H__ +#include <stdint.h> + //--------------------------------------------------------------------------- // // TITLE @@ -199,11 +201,7 @@ typedef unsigned char t4_byte; // create typedefs for t4_byte, etc. -#if q4_LONG64 -typedef int t4_i32; // if longs are 64b, then int must be 32b -#else -typedef long t4_i32; // if longs aren't 64b, then they are 32b -#endif +typedef int32_t t4_i32; #if q4_LONG64 // choose a way to represent 64b integers typedef long t4_i64; diff -uNr metakit-2.4.9.7.orig/src/header.h metakit-2.4.9.7-1fix3264/src/header.h --- metakit-2.4.9.7.orig/src/header.h 2007-03-09 09:58:53.000000000 -0600 +++ metakit-2.4.9.7-1fix3264/src/header.h 2014-05-20 19:40:12.000000000 -0500 @@ -13,6 +13,10 @@ #include "config.h" +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif + ///////////////////////////////////////////////////////////////////////////// // A number of preprocessor options are used in the source code // @@ -139,11 +143,7 @@ typedef unsigned char t4_byte; // create typedefs for t4_byte, etc. -#if SIZEOF_LONG == 8 -typedef int t4_i32; // longs are 64b, so int must be 32b -#else -typedef long t4_i32; // longs aren't 64b, so they are 32b -#endif +typedef int32_t t4_i32; ///////////////////////////////////////////////////////////////////////////// // Include header files which contain additional os/cpu/ide/fw specifics |