diff options
author | Mark H Weaver <mhw@netris.org> | 2017-08-07 16:45:16 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-08-07 16:45:16 -0400 |
commit | 2d9495da23cb110dd70eac67637f8e362133d021 (patch) | |
tree | 10481fdf5b7ff17df77dc506d7803fc344a19fdd /nix/libstore/build.cc | |
parent | c97fbf55e7fe6c6dcf5620032f602e2c55592d73 (diff) | |
parent | a1aa5dabaa5d570710da7190a3c3dca5442b9daa (diff) | |
download | guix-2d9495da23cb110dd70eac67637f8e362133d021.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'nix/libstore/build.cc')
-rw-r--r-- | nix/libstore/build.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index 693fa70c8d..63540ddfc1 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc @@ -26,6 +26,7 @@ #include <errno.h> #include <stdio.h> #include <cstring> +#include <stdint.h> #include <pwd.h> #include <grp.h> @@ -2008,11 +2009,11 @@ void DerivationGoal::startBuilder() char stack[32 * 1024]; int flags = CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | CLONE_NEWUTS | SIGCHLD; if (!fixedOutput) flags |= CLONE_NEWNET; -#ifdef __aarch64__ - pid = clone(childEntry, stack + sizeof(stack) - 16, flags, this); -#else - pid = clone(childEntry, stack + sizeof(stack) - 8, flags, this); -#endif + /* Ensure proper alignment on the stack. On aarch64, it has to be 16 + bytes. */ + pid = clone(childEntry, + (char *)(((uintptr_t)stack + sizeof(stack) - 8) & ~(uintptr_t)0xf), + flags, this); if (pid == -1) throw SysError("cloning builder process"); } else |