From owner-freebsd-ia64@FreeBSD.ORG Fri Jul 4 20:21:37 2003 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0BB737B401; Fri, 4 Jul 2003 20:21:37 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16E0C4402F; Fri, 4 Jul 2003 20:21:31 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h653LRv1010584; Fri, 4 Jul 2003 20:21:27 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h653LPUw074978; Fri, 4 Jul 2003 20:21:26 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h653LK79074977; Fri, 4 Jul 2003 20:21:20 -0700 (PDT) (envelope-from marcel) Date: Fri, 4 Jul 2003 20:21:20 -0700 From: Marcel Moolenaar To: Kris Kennaway Message-ID: <20030705032120.GA74801@dhcp01.pn.xcllnt.net> References: <20030705020248.GA2361@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <20030705020248.GA2361@rot13.obsecurity.org> User-Agent: Mutt/1.5.4i cc: amd64@freebsd.org cc: ia64@freebsd.org Subject: Re: Patches for config.{guess,sub} needed X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jul 2003 03:21:38 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jul 04, 2003 at 07:02:48PM -0700, Kris Kennaway wrote: > > and send me patches against these scripts to DTRT when run on ia64 and > amd64? These patches should also be submitted back to the GNU people. No patches are needed for ia64. The latest config.sub works. On amd64, config.guess prints "amd64-unknown-freebsd5.1", which I expect is correct. Attached a patch for config.sub to recognize amd64 as the machine. Things may be more complicated on amd64, because I'm not sure people have settled for amd64 or x86_64 as the machine name. FYI, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="config.sub.diff" --- /home/marcel/config.sub Fri Jul 4 20:02:17 2003 +++ config.sub Fri Jul 4 20:16:41 2003 @@ -292,7 +292,7 @@ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | amd64-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bs2000-* \ --1yeeQ81UyVL57Vl7--