[hurd,commited] mach: Disable 32bit compatibility mode

Message ID 20230501002446.3529919-1-samuel.thibault@ens-lyon.org
State Committed, archived
Headers
Series [hurd,commited] mach: Disable 32bit compatibility mode |

Checks

Context Check Description
dj/TryBot-apply_patch fail Patch failed to apply to master at the time it was sent
dj/TryBot-32bit fail Patch series failed to apply

Commit Message

Samuel Thibault May 1, 2023, 12:24 a.m. UTC
  32bit compatibility is the default for now with 64bit gnumach, until 64bit
userland is ready.  Here we however want native 64bit userland anyway.
---
 scripts/build-many-glibcs.py | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 82f8d97281..acc9e2982d 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'])