From owner-freebsd-questions@FreeBSD.ORG Mon Jan 2 06:19:17 2012 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 9AAFD106566B for ; Mon, 2 Jan 2012 06:19:17 +0000 (UTC) (envelope-from coco@executive-computing.de) Received: from mail.moehre.org (mail.moehre.org [195.96.35.7]) by mx1.freebsd.org (Postfix) with ESMTP id 579E18FC12 for ; Mon, 2 Jan 2012 06:19:16 +0000 (UTC) Received: from mail.moehre.org (unknown [195.96.35.7]) by mail.moehre.org (Postfix) with ESMTP id 9DEF88B1423; Mon, 2 Jan 2012 07:19:15 +0100 (CET) X-Spam-Flag: NO X-Spam-Score: -100.963 X-Spam-Level: X-Spam-Status: No, score=-100.963 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1, AWL=0.037, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mail.moehre.org ([195.96.35.7]) by mail.moehre.org (mail.moehre.org [195.96.35.7]) (amavisd-new, port 10024) with ESMTP id 3RPU0F77zsdF; Mon, 2 Jan 2012 07:19:13 +0100 (CET) Received: from [192.168.100.30] (p54B0AD46.dip.t-dialin.net [84.176.173.70]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: coco@executive-computing.de) by mail.moehre.org (Postfix) with ESMTPSA id 7F81D8B141C; Mon, 2 Jan 2012 07:19:13 +0100 (CET) Message-ID: <4F014C4D.80001@executive-computing.de> Date: Mon, 02 Jan 2012 07:18:53 +0100 From: Marco Steinbach User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: Janos Dohanics References: <20111231135633.02c92213.web@3dresearch.com> In-Reply-To: <20111231135633.02c92213.web@3dresearch.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: buildworld error 8.2-STABLE amd64 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: Mon, 02 Jan 2012 06:19:17 -0000 Janos Dohanics wrote on 31.12.2011 19:56: > Buildworld stopped with this error (with updated source): > > [...] > cc "-O3" -DNEED_SOLARIS_BOOLEAN [...] > > I have posted the build log at > http://wwwp.3dresearch.com/ALMAVIVA2011123101_buildworld > > Would you please advise? Quoting /usr/share/examples/etc/make.conf: # CFLAGS controls the compiler settings used when compiling C code. # Note that optimization settings other than -O and -O2 are not recommended # or supported for compiling the world or the kernel - please revert any # nonstandard optimization settings to "-O" or "-O2 -fno-strict-aliasing" # before submitting bug reports without patches to the developers. The error you're seeing is a result from using O3 for building the source in question -- At least my 8.2-STABLE ran into the same problem, once I used O3, instead of the default '-O2 -pipe'. MfG CoCo