From owner-freebsd-current@FreeBSD.ORG Wed Aug 7 14:29:24 2013 Return-Path: Delivered-To: freebsd-current@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 ESMTP id E689FBB5 for ; Wed, 7 Aug 2013 14:29:24 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A87DE2F87 for ; Wed, 7 Aug 2013 14:29:24 +0000 (UTC) Received: from coleburn.avinity.tv (host-229-161-243.77.avinity.tv [77.243.161.229]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id B6FAD5C5A; Wed, 7 Aug 2013 16:29:21 +0200 (CEST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) Subject: Re: "make buildworld" fails From: Dimitry Andric In-Reply-To: <20994.20068.695921.759096@jerusalem.litteratus.org> Date: Wed, 7 Aug 2013 16:29:20 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: <69ACD03B-11D3-44AC-96B6-86241DF42EEC@FreeBSD.org> References: <51FFD21A.3050602@passap.ru> <20992.14618.332769.261961@jerusalem.litteratus.org> <52022214.7080200@passap.ru> <20994.14913.985491.417317@jerusalem.litteratus.org> <52024255.7090907@passap.ru> <20994.20068.695921.759096@jerusalem.litteratus.org> To: Robert Huff X-Mailer: Apple Mail (2.1508) Cc: freebsd-current@freebsd.org, Boris Samorodov X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Aug 2013 14:29:25 -0000 On Aug 7, 2013, at 15:40, Robert Huff wrote: > Boris Samorodov writes: ... >> Are there some non-default configure/environment values? >=20 > Not as far as I know. There is no src.conf; make.conf is = appended. >=20 >=20 > Robert Huff >=20 >=20 >=20 > CFLAGS=3D -O -pipe -g=20 Just a note: don't set CFLAGS with =3D, always use +=3D, e.g.: CFLAGS+=3D -O -pipe -g Also, you might want to set -g in DEBUG_FLAGS instead, not directly in = CFLAGS. -Dimitry