diff -ru src/def.h c/def.h --- src/def.h 2007-12-06 17:30:56.000000000 +0100 +++ c/def.h 2013-10-19 18:42:55.118745730 +0200 @@ -2,14 +2,9 @@ /* INT should always be 4 byte */ #ifndef DEF_H - -#ifdef __alpha -typedef int INT; -typedef unsigned int UINT; -#else /* __alpha */ -typedef long INT; -typedef unsigned long UINT; -#endif /* __alpha */ +#include +typedef int32_t INT; +typedef uint32_t UINT; #include #include @@ -65,10 +60,13 @@ /* definitionen fuer object.c */ -typedef INT OBJECTKIND; /* 4 byte */ +/* NOTE: partition code assumes that there is no unused space in the + * object struct when an INT is stored. This requires both OBJECTKIND + * and OBJECTSELF to have a size equal to a machine word. */ +typedef intptr_t OBJECTKIND; typedef union { - INT ob_INT; + intptr_t ob_INT; INT * ob_INTpointer; char *ob_charpointer; struct bruch *ob_bruch; >Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-08-09build-system: Add 'channel-build-system'....* gnu/ci.scm (channel-build-system, channel-source->package): Remove. * gnu/packages/package-management.scm (channel-source->package): New procedure, moved from (gnu ci). * guix/build-system/channel.scm: New file, with code moved from (gnu ci). * doc/guix.texi (Build Systems): Document it. Ludovic Courtès
2022-07-10monads: Add 'mparameterize'....* etc/system-tests.scm (mparameterize): Move to... * guix/monads.scm (mparameterize): ... here. * tests/monads.scm ("mparameterize"): New test. * .dir-locals.el (c-mode): Add it. Ludovic Courtès
2022-04-11tests: System tests really parameterize 'current-guix-package'....Until now, 'current-guix-package' was parameterized in the wrong context. Thus, 'current-guix' would end up building a variant of the 'guix' package instead of the package returned by 'channel-source->package', which is much less expensive to build. * etc/system-tests.scm (mparameterize): New macro. (tests-for-current-guix): Change the 'value' field of each <system-test> record to parameterize 'current-guix-package' for good. Ludovic Courtès
2020-03-23tests: Use the same source as ci.guix.gnu.org....* etc/system-tests.scm (system-test-manifest): In 'local-file' call, use a name that is a function of COMMIT to match what Cuirass does. Ludovic Courtès
2020-03-05tests: Add a manifest for system tests....The manifest can be passed to 'guix build -m', 'guix weather -m', and so on. It can also be passed to an installed 'guix' (without ./pre-inst-env), with the exception so far of installation tests. * build-aux/run-system-tests.scm: Remove. Move interesting bits move to... * etc/system-tests.scm: ... here. New file. * Makefile.am (EXTRA_DIST): Remove 'build-aux/run-system-tests.scm' and add 'etc/system-tests.scm'. (check-system): Rewrite to run 'guix build -m etc/system-tests.scm'. Ludovic Courtès