From owner-freebsd-questions@FreeBSD.ORG Thu Oct 11 01:22:27 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5901A16A417 for ; Thu, 11 Oct 2007 01:22:27 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.freebsd.org (Postfix) with ESMTP id D423413C45A for ; Thu, 11 Oct 2007 01:22:26 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so334599nfb for ; Wed, 10 Oct 2007 18:22:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=nZM51ryMYLdkhxlETCcV36SMwAi92UX64DrL8waaNB4=; b=oThBMPwCA5l/HN7ks9Hkb/02yZlYqle285cytwASov2r3KZVzCvMuLHjYxHtMM/O1ZRX+4cF/G7ic05iDx4NUsWXXRPNi1atOln0r6ahihTP56/iOECz5wGFHzDQS0mjE9vsxff7Wp685DK7B7IYu0hy/kH1+62a/e+NyMWRjb4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=unp1TDgSGJqmpHpnu0JYySXentd4QpaDDRez/hPEHvhkfPGgvosKYw5RXHeuCn4rCB53+DbaWR1rsFgxUGD/mpQxJFowe2PJSk8tCUmTzbilAIE83Putl8O7KUu08HS4xCV7h1FIvZgCf5njvxITzAKnUhGVIxRdif6ctt7FbWs= Received: by 10.78.122.16 with SMTP id u16mr1049193huc.1192065744768; Wed, 10 Oct 2007 18:22:24 -0700 (PDT) Received: from ?194.186.18.14? ( [194.186.18.14]) by mx.google.com with ESMTPS id 32sm870312hui.2007.10.10.18.22.20 (version=SSLv3 cipher=RC4-MD5); Wed, 10 Oct 2007 18:22:22 -0700 (PDT) Message-ID: <470D7A95.8030507@gmail.com> Date: Thu, 11 Oct 2007 05:21:25 +0400 From: Yuri Pankov User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: coriolinus References: <56511d740710101557u2bb9babet74eb60396e0aa4e5@mail.gmail.com> <470D709D.30206@gahr.ch> <56511d740710101805j2d60831asd497d51dfe56376b@mail.gmail.com> In-Reply-To: <56511d740710101805j2d60831asd497d51dfe56376b@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: kernel configuration failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2007 01:22:27 -0000 coriolinus wrote: >> Actually, that's not the problem. >> The file which is not found is the compiler itself: >> >> gcc34:No such file or directory >> >> Maybe you've installed gcc 4.3 from ports, linked /usr/bin/cc to >> /usr/local/bin/gcc43 and then upgrade gcc? > > That doesn't seem right: > [coriolinus@labour /usr/src]$ which gcc34 > /usr/local/bin/gcc34 > [coriolinus@labour /usr/src]$ su > Password: > [root@labour /usr/src]# which gcc34 > /usr/local/bin/gcc34 > > It's true that I installed gcc 3.4 from ports and put a line in > /etc/make.conf: CC=gcc34 . However, it's on the path for both my user > and for root; it seems weird that the makefile would lose track of it. Makefile doesn't lose it, it just redefines PATH; try using full path to gcc binary in /etc/make.conf: CC=/usr/local/bin/gcc34 Yuri