From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id DAEE13858D39; Mon, 1 May 2023 00:23:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DAEE13858D39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1682900632; bh=GF/DyPvILfSD34hU8QySUpCwUFmLSP7FvgbIYUE/1eQ=; h=From:To:Subject:Date:From; b=MQGcjN1J97W9dqIILWoxG+KDu+BiiVsyYs06zTi8Iexl/IM+4OHT17BUivip8/VO6 ILLMP/44zqguyArU2cSy6iIaN/7EwkCFHrz6PpU6ueVvznk5xmOal8RmG3wS8d6cJu 7A2EjxhnoGJb8x+0fuDF1i0N2t9RV8zV0bFZsiVI= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] mach: Disable 32bit compatibility mode X-Act-Checkin: glibc X-Git-Author: Samuel Thibault X-Git-Refname: refs/heads/master X-Git-Oldrev: 2bc516020ff8642d1352e99f0f25fef002457079 X-Git-Newrev: 6eb3edeed205766925c66a127b0b7aa40a64ee62 Message-Id: <20230501002352.DAEE13858D39@sourceware.org> Date: Mon, 1 May 2023 00:23:52 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6eb3edeed205766925c66a127b0b7aa40a64ee62 commit 6eb3edeed205766925c66a127b0b7aa40a64ee62 Author: Samuel Thibault Date: Mon May 1 02:20:59 2023 +0200 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: --- scripts/build-many-glibcs.py | 1 + 1 file changed, 1 insertion(+) 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'])