--- a/libgcc/config/i386/gthr-win32.h 2016-03-30 07:45:33.388684463 +0200 +++ b/libgcc/config/i386/gthr-win32.h 2016-03-30 15:51:24.123896436 +0200 @@ -30,7 +30,7 @@ /* Make sure CONST_CAST2 (origin in system.h) is declared. */ #ifndef CONST_CAST2 -#define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) +#define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)X) #endif /* Windows32 threads specific definitions. The windows32 threading model o'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/time-travel-manifest.scm
AgeCommit message (Collapse)Author
2022-08-17time-travel-manifest: Use a separate cache per system.Mathieu Othacehe
* etc/time-travel-manifest.scm (<guix-instance-compiler>): Use a separate cache per system so that parallel system evaluations do no step on each other's toes.
2022-07-10time-travel-manifest: Use a separate Git checkout cache.Ludovic Courtès
* etc/time-travel-manifest.scm (guix-instance-compiler): Parameterize %REPOSITORY-CACHE-DIRECTORY.
2022-07-08etc: Add 'time-travel-manifest.scm'.Ludovic Courtès
This manifest makes it easy to test travels from the current revision back to the revision of a past Guix release. Suggested by zimoun <zimon.toutoune@gmail.com>. * etc/time-travel-manifest.scm: New file. * Makefile.am (EXTRA_DIST): Add it.