From owner-freebsd-amd64@FreeBSD.ORG Sun Jan 2 18:55:21 2011 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B88B01065672 for ; Sun, 2 Jan 2011 18:55:21 +0000 (UTC) (envelope-from bunchou@googlemail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3F79E8FC12 for ; Sun, 2 Jan 2011 18:55:20 +0000 (UTC) Received: by bwz12 with SMTP id 12so5932395bwz.13 for ; Sun, 02 Jan 2011 10:55:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=e6H6uGx+/QzcK8XHau+KiZ84k8bVRmyp8jHWZSoPb5I=; b=mEZcTKy1ZGqvwOYDAMlpukEj5uvRdIvRwXH2TbK8De9pcycH60Wsd4Otpz+o/M8XAP jZHIrje4b0MguWfpOmFiSlNmrEN0jYlYIuZy4ewK843LEKaShGvTwGJieUqBZ3FgsQh3 DZLbjKH3uq0f0qhkxVgOkA+M7WWXTbv9s468g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=Wh9wSqoUS+BCZGh5GJzxIV1VVKCRQv+bdga+uIck2fcH6DbL94qrU0EkG/q19sqgow mWqjHRwWFhaaAlHu8iv/YucrOck3Of/G6MHyYFv8y5EfCgmrgAMdfuqp6RyIQGqaqv/s CZAuqAXq94E5VZ28bKFNFPYMs0P1YxTyoI5/g= Received: by 10.204.116.74 with SMTP id l10mr2271383bkq.77.1293992990292; Sun, 02 Jan 2011 10:29:50 -0800 (PST) Received: from centaur.5550h.net (p5DC271C8.dip.t-dialin.net [93.194.113.200]) by mx.google.com with ESMTPS id j11sm11079563bka.12.2011.01.02.10.29.48 (version=SSLv3 cipher=RC4-MD5); Sun, 02 Jan 2011 10:29:49 -0800 (PST) Date: Sun, 2 Jan 2011 19:29:46 +0100 From: "=?UTF-8?B?5paH6bOl?=" To: freebsd-amd64@freebsd.org Message-ID: <20110102192946.2ab5429a@centaur.5550h.net> In-Reply-To: <0cdfb22d89c8f85ec31704c35982e0e2.dnswclient@www.dnswatch.com> References: <9193ef9ae95084284226832557f8c755.dnswclient@www.dnswatch.com> <20110102125137.4423cb08@ernst.jennejohn.org> <15cc929589a6426f0dad97fac66ed328.dnswclient@www.dnswatch.com> <20110102150551.24f5193e@ernst.jennejohn.org> <0cdfb22d89c8f85ec31704c35982e0e2.dnswclient@www.dnswatch.com> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Is Gnome2 not supported on the amd64 ARCH? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Jan 2011 18:55:21 -0000 On Sun, 2 Jan 2011 06:42:27 -0800 (PST) fbsdmail@dnswatch.com wrote: > Hello again, and thanks for your response. > I commented it out after responding to your response, and > it happily built. I just figured I'd use the CPUTYPE?= option > to gain better amd64 profiling, but apparently it's only > _really_ available for the i386 CPU's. I say that because > I've always used that option when building on those ARCH types, > and never ran into a problem. Oh well, hopefully sometime son, > it'll be better supported on the amd64 - fingers crossed. :) > > Thanks again for taking the time to respond. > > --Chris > > Please take a look at /usr/share/examples/etc/make.conf It clearly states that athlon-mp is for the Intel x86 arch _only_. Wikipedia tells us the same (http://en.wikipedia.org/wiki/Athlon_mp#Athlon_XP.2FMP). Therefore I assume, that (since you've got amd64 running), your CPU isn't really an "athlon-mp", but rather one of the following (again from the make.conf example): opteron, athlon64, nocona, prescott, core2 PS: I personally use "native", since that gives me the same level of optimization as choosing the correct CPU by hand would. Additionally, you might consider compiling ports with gcc45, since the base cc doesn't support newer CPU features like e.g. SSE4.2. Best regards