Work around this GCC ICE: . It shows up only when doing native compiles on armhf-linux. --- mariadb-10.1.33/plugin/semisync/semisync_master.cc 2018-07-28 02:13:12.604020250 +0200 +++ mariadb-10.1.33/plugin/semisync/semisync_master.cc 2018-07-28 02:14:11.907753417 +0200 @@ -847,6 +847,8 @@ return function_exit(kWho, 0); } +volatile const void *kSyncHeaderPtr = &ReplSemiSyncMaster::kSyncHeader; + int ReplSemiSyncMaster::reserveSyncHeader(unsigned char *header, unsigned long size) { @@ -873,7 +875,7 @@ /* Set the magic number and the sync status. By default, no sync * is required. */ - memcpy(header, kSyncHeader, sizeof(kSyncHeader)); + memcpy(header, (void *)kSyncHeaderPtr, sizeof(kSyncHeader)); hlen= sizeof(kSyncHeader); } return function_exit(kWho, hlen); n> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/build-aux/check-final-inputs-self-contained.scm
AgeCommit message (Expand)Author
2018-12-04Remove most references to hydra.gnu.org....* Makefile.am (assert-binaries-available): Don't mention hydra.gnu.org in comment. * build-aux/check-available-binaries.scm: Likewise. * build-aux/check-final-inputs-self-contained.scm: Likewise. * doc/guix.texi (SUBSTITUTE-SERVER): New variable. Use it throughout instead of "mirror.hydra.gnu.org". * doc/contributing.texi (Submitting Patches): Likewise. * gnu/services/base.scm (hydra-key-authorization) (guix-activation): Remove mentions of "hydra.gnu.org" in comments and messages. * gnu/system/install.scm (%installation-services): Likewise. * guix/scripts/size.scm (guix-size): Likewise. Ludovic Courtès
2018-03-25maint: Adjust 'check-final-inputs-self-contained' for glibc:static....This change is necessary to cope with 6dff905e51202bbdebbad8811b6509584d12a796. * build-aux/check-final-inputs-self-contained.scm (final-inputs): Change 'match' pattern to match (LABEL PACKAGE OUTPUT). Ludovic Courtès
2017-05-08maint: Use 'G_' in build-aux/ scripts....This is a followup to 69daee23af49aeafcb1d250c90860f9253da719e. * build-aux/check-final-inputs-self-contained.scm (assert-valid-substitute): Use 'G_' instead of '_'. Ludovic Courtès
2016-12-18build: check-final-inputs-self-contained has an exception for 'bash:include'....Currently 'bash:include' of the final Bash depends on bootstrap stuff. * build-aux/check-final-inputs-self-contained.scm (final-inputs): Add clause for 'bash:include'. * gnu/packages/commencement.scm (bash-final): Add FIXME comment. Ludovic Courtès
2016-03-03build: Use (guix grafts) as needed....This is a followup to 7adf9b8. * build-aux/check-final-inputs-self-contained.scm: Use (guix grafts). * build-aux/check-available-binaries.scm: Likewise. Ludovic Courtès
2015-05-10build: check-final-inputs-self-contained uses %HYDRA-SUPPORTED-SYSTEMS....* build-aux/check-final-inputs-self-contained.scm: Change '%supported-systems' to '%hydra-supported-systems'. Ludovic Courtès