From owner-freebsd-ports@FreeBSD.ORG Sun Nov 14 00:44:47 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64F5A106566B for ; Sun, 14 Nov 2010 00:44:47 +0000 (UTC) (envelope-from sanpei@sanpei.org) Received: from mail2.asahi-net.or.jp (mail2.asahi-net.or.jp [202.224.39.198]) by mx1.freebsd.org (Postfix) with ESMTP id 29D778FC1B for ; Sun, 14 Nov 2010 00:44:46 +0000 (UTC) Received: from cherry2.sanpei.org (j069113.ppp.asahi-net.or.jp [61.213.69.113]) by mail2.asahi-net.or.jp (Postfix) with ESMTP id BC85ABD5C0; Sun, 14 Nov 2010 09:44:44 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by cherry2.sanpei.org (8.14.4/8.14.3) with ESMTP id oAE0ihQ1012766; Sun, 14 Nov 2010 09:44:44 +0900 (JST) (envelope-from sanpei@sanpei.org) Date: Sun, 14 Nov 2010 09:44:43 +0900 (JST) Message-Id: <20101114.094443.407454645627537737.sanpei@sanpei.org> To: chromium@hybridsource.org From: MIHIRA Sanpei Yoshiro In-Reply-To: <4CDD6C06.1060307@hybridsource.org> References: <20101113.080831.949267780715453933.sanpei@sanpei.org> <4CDD6C06.1060307@hybridsource.org> X-Mailer: Mew version 6.2 on Emacs 23.1 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.3 (cherry2.sanpei.org [127.0.0.1]); Sun, 14 Nov 2010 09:44:44 +0900 (JST) Cc: ports@FreeBSD.org, rene@FreeBSD.org Subject: Re: [www/chromium] Illegal instruction: 4 on Pentium3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Nov 2010 00:44:47 -0000 H. Finally, I removed -mss3 and -mpentium4(changed to -msse and -mpentium3). I could compile and execute chromium on Pentium3 without problem. @@ -884,8 +884,8 @@ 'conditions': [ ['branding=="Chromium"', { 'cflags': [ - '-march=pentium4', - '-msse2', + '-march=pentium3', + '-msse', '-mfpmath=sse', ], }], From chromium mailing list archive discussion, some Athlon CPU does not have SSE2. So I thought default compile option was -msse or remove -msse( and remove -mfpmath=sse). and could set by CFLAGS value Best Regards, --- MIHIRA, Sanpei Yoshiro Tokyo, Japan.