From: Tobias Geerinckx-Rice Date: Sat, 11 Dec 2021 19:22:49 +0100 Subject: [PATCH] gnu: i7z: Build with GCC 10. Patch from Debian, modified to apply to our i7z sources in src/. Author: Andreas Beckmann Description: fix FTBFS with gcc-10 gcc-10 defaults to -fno-common see https://gcc.gnu.org/gcc-10/porting_to.html Bug-Debian: https://bugs.debian.org/957351 --- a/src/i7z_Dual_Socket.c +++ b/src/i7z_Dual_Socket.c @@ -37,7 +37,7 @@ float Read_Voltage_CPU(int cpu_num); extern struct program_options prog_options; FILE *fp_log_file; -struct timespec global_ts; +extern struct timespec global_ts; extern FILE *fp_log_file_freq_1, *fp_log_file_freq_2; extern char* CPU_FREQUENCY_LOGGING_FILE_single; mit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-06-09gnu: dhall: Update to 1.32.0....* gnu/packages/dhall.scm (dhall): Update to 1.32.0. [inputs]: Add ghc-half. Tobias Geerinckx-Rice
2020-06-09gnu: dhall: Disable network tests differently....* gnu/packages/dhall.scm (dhall)[source]: Remove patch. [arguments]: Rename ‘remove-more-tests’ phase to ‘remove-network-tests’. Identify the tests by name instead of by content. * gnu/packages/patches/dhall-remove-network-tests.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. Tobias Geerinckx-Rice
2020-05-29gnu: Add dhall....* gnu/packages/dhall.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. (dist_patch_DATA): Add new patch. * gnu/packages/patches/dhall-remove-network-tests.patch: Add patch to remove dhall network tests. Signed-off-by: Leo Famulari <leo@famulari.name> John Soo