From: Samuel Thibault Date: Mon, 1 May 2023 00:20:59 +0000 (+0200) Subject: mach: Disable 32bit compatibility mode X-Git-Tag: glibc-2.38~314 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6eb3edeed205766925c66a127b0b7aa40a64ee62;p=thirdparty%2Fglibc.git mach: Disable 32bit compatibility mode 32bit compatibility is the default for now with 64bit gnumach, until 64bit userland is ready. Here we however want native 64bit userland anyway. --- diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 82f8d972816..acc9e2982da 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -1428,6 +1428,7 @@ class Config(object): '--build=%s' % self.ctx.build_triplet, '--host=%s' % self.triplet, '--prefix=', + '--disable-user32', 'CC=%s-gcc -nostdlib' % self.triplet]) cmdlist.add_command('install', ['make', 'DESTDIR=%s' % self.sysroot, 'install-data'])