diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 355fb3b7dfe5d36c9dd379c58e43475a1f1210c0..60b0a531f4235ad206bc16e1e4736182d7e1375c 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2317,6 +2317,10 @@ void setupSeccomp() seccomp_arch_add(ctx, SCMP_ARCH_X86) != 0) throw SysError("unable to add 32-bit seccomp architecture"); + if (settings.thisSystem == "x86_64-linux" && + seccomp_arch_add(ctx, SCMP_ARCH_X32) != 0) + throw SysError("unable to add X32 seccomp architecture"); + /* Prevent builders from creating setuid/setgid binaries. */ for (int perm : { S_ISUID, S_ISGID }) { if (seccomp_rule_add(ctx, SCMP_ACT_ERRNO(EPERM), SCMP_SYS(chmod), 1,