From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 2EA733943402; Mon, 16 May 2022 16:17:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2EA733943402 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: drop PROCESSOR_ARCHITECTURE_INTEL from uname X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 83f8e24f0b4a8cd4e03e86320c2647f4bb6939f5 X-Git-Newrev: 830a9b707caa5e343b6ffce7fcb2d3ca97e3259c Message-Id: <20220516161743.2EA733943402@sourceware.org> Date: Mon, 16 May 2022 16:17:43 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2022 16:17:43 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D830a9b707ca= a5e343b6ffce7fcb2d3ca97e3259c commit 830a9b707caa5e343b6ffce7fcb2d3ca97e3259c Author: Corinna Vinschen Date: Mon May 16 18:17:01 2022 +0200 Cygwin: drop PROCESSOR_ARCHITECTURE_INTEL from uname =20 Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/uname.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/winsup/cygwin/uname.cc b/winsup/cygwin/uname.cc index 41138150c..68fa51166 100644 --- a/winsup/cygwin/uname.cc +++ b/winsup/cygwin/uname.cc @@ -56,9 +56,6 @@ uname_x (struct utsname *name) /* machine */ switch (wincap.cpu_arch ()) { - case PROCESSOR_ARCHITECTURE_INTEL: - strcat (name->release, strcpy (name->machine, "i686")); - break; case PROCESSOR_ARCHITECTURE_AMD64: strcat (name->release, strcpy (name->machine, "x86_64")); break;