diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-01 02:20:59 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-01 02:23:35 +0200 |
commit | 6eb3edeed205766925c66a127b0b7aa40a64ee62 (patch) | |
tree | e2d1aa2e0f93ac53d9fb59e474ba4bbf931afeb7 | |
parent | 2bc516020ff8642d1352e99f0f25fef002457079 (diff) | |
download | glibc-6eb3edeed205766925c66a127b0b7aa40a64ee62.tar glibc-6eb3edeed205766925c66a127b0b7aa40a64ee62.tar.gz glibc-6eb3edeed205766925c66a127b0b7aa40a64ee62.tar.bz2 glibc-6eb3edeed205766925c66a127b0b7aa40a64ee62.zip |
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.
-rwxr-xr-x | scripts/build-many-glibcs.py | 1 |
1 files changed, 1 insertions, 0 deletions
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']) |