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.
This commit is contained in:
Samuel Thibault 2023-05-01 02:20:59 +02:00
parent 2bc516020f
commit 6eb3edeed2

View File

@ -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'])