From owner-freebsd-questions@FreeBSD.ORG Fri Jun 13 15:23:49 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B08EA96F for ; Fri, 13 Jun 2014 15:23:49 +0000 (UTC) Received: from mail-wg0-x230.google.com (mail-wg0-x230.google.com [IPv6:2a00:1450:400c:c00::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F06B26CA for ; Fri, 13 Jun 2014 15:23:49 +0000 (UTC) Received: by mail-wg0-f48.google.com with SMTP id n12so2911008wgh.19 for ; Fri, 13 Jun 2014 08:23:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=qGiMtIjBe5StPjuwl2smh0IqvTRj41XSpAX0G26w15A=; b=aRwBDA1BYSO1seWh+RrKIa0hN6n6LcW+NP3EZqq2+G9juOLaGXT/CvO2BjWzOshW4T MRmbXaObXkH7Fjp3Q96+knSsaGfHHJvonxtgAJv8gk5s71zjlXdQHSuPQs80i1EolYOg LvUvEdWtOsV1cfVTy9mOJphvIAr9i0161uAgS6mFOpM9P8lcvAZ6ImkO3w8Tal496N6K I3q7gi2BaSfVh1h57+x+okgowsfPranDMMykhZ/0Z+UzKvia9XKluPSkx/xdry6CWVjF k6fp2M5Sjh74r50ph3uqWgP9F4sZRlQhqfjjTqvCJ3utYPnkMf9+zEhee/nVwXH0Dt+N fIvA== MIME-Version: 1.0 X-Received: by 10.180.81.102 with SMTP id z6mr5730349wix.54.1402673027695; Fri, 13 Jun 2014 08:23:47 -0700 (PDT) Received: by 10.216.86.145 with HTTP; Fri, 13 Jun 2014 08:23:47 -0700 (PDT) In-Reply-To: <539AC3A7.4040309@rawbw.com> References: <539AC3A7.4040309@rawbw.com> Date: Fri, 13 Jun 2014 11:23:47 -0400 Message-ID: Subject: Re: Build of FreeBSD-10 fails on 9 with unknown target CPU From: "illoai@gmail.com" To: Yuri Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2014 15:23:49 -0000 On 13 June 2014 05:25, Yuri wrote: > 'make buildworld' fails in llvm build with the message: error: unknown > target CPU 'amd64' > /etc/make.conf has the line: > CPUTYPE?=core > And CPU is: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz > > /usr/src/UPDATING only says that CPUTYPE should be set with ?=, but the > build fails with and without CPUTYPE. > > What causes the build to fail? According to what I can find, "amd64" isn't a valid CPUTYPE. You should probably either leave it blank or set it to "core2" (about the only difference will be the use of sse3 & above, which I don't think anything in base makes use of anyway). -- --