From owner-freebsd-current@FreeBSD.ORG  Fri Nov 23 11:34:22 2012
Return-Path: <owner-freebsd-current@FreeBSD.ORG>
Delivered-To: freebsd-current@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
 by hub.freebsd.org (Postfix) with ESMTP id 2AFC310E
 for <freebsd-current@freebsd.org>; Fri, 23 Nov 2012 11:34:22 +0000 (UTC)
 (envelope-from pluknet@gmail.com)
Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com
 [209.85.216.54])
 by mx1.freebsd.org (Postfix) with ESMTP id D65FA8FC15
 for <freebsd-current@freebsd.org>; Fri, 23 Nov 2012 11:34:21 +0000 (UTC)
Received: by mail-qa0-f54.google.com with SMTP id g24so1624020qab.13
 for <freebsd-current@freebsd.org>; Fri, 23 Nov 2012 03:34:15 -0800 (PST)
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=uJeJB1O9HLTHipmJZwSygNRH5ijoh45h2uwZxjDb7nw=;
 b=qww6GtS0zM1m4Ln8vB576lNGRvDZW77NdvBHIX1S82k32e+KTHOFOC5FaTL0rfqhoW
 azNQU1rerwrc6NuH7fbojC/UMsZLR4wIZWApSiOW6FD17Jz5cWo/zvmhl2RXr6+CTi4T
 m8QFj0EdBAytVvmxz2rwYUqqBZC2/cWdzOfVzhVd4iXpIc73t1TrtFes7BagcBkz/crB
 bYPX88XhUyiMeysO5F2pVLnehiZ16LUc6JwdXB76mprA/WHCHDikpyl38M1eCfBgcm/g
 Ri2P6R40SbbUZBjjzlIphEziZG/yHiGGm5WKoAG+Z0gnY8VZEnLEbfhliQ8m5ftcXwxe
 gvcA==
MIME-Version: 1.0
Received: by 10.49.1.47 with SMTP id 15mr1189986qej.46.1353670455762; Fri, 23
 Nov 2012 03:34:15 -0800 (PST)
Received: by 10.229.78.96 with HTTP; Fri, 23 Nov 2012 03:34:15 -0800 (PST)
In-Reply-To: <50AF3509.7070402@gmx.com>
References: <50AF3509.7070402@gmx.com>
Date: Fri, 23 Nov 2012 14:34:15 +0300
Message-ID: <CAE-mSO+D-KCbJrYrV4c+ST4Jz0YNRKWnZD6gode2dMGP33=qWA@mail.gmail.com>
Subject: Re: strange buildworld failure
From: Sergey Kandaurov <pluknet@gmail.com>
To: Nikos Vassiliadis <nvass@gmx.com>
Content-Type: text/plain; charset=ISO-8859-1
Cc: freebsd-current@freebsd.org
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.14
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-current>,
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Nov 2012 11:34:22 -0000

On 23 November 2012 12:34, Nikos Vassiliadis <nvass@gmx.com> wrote:
> Hi,
>
> I am trying to buildworld but it fails here:
>>
>> ===> usr.bin/ypwhich (all)
>> cc -O2 -pipe  -std=gnu99 -Qunused-arguments -fstack-protector
>> -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -
>> Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int
>> -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-
>> unused-function -Wno-conversion -Wno-switch -Wno-switch-enum -c
>> /usr/src/usr.bin/ypwhich/ypwhich.c
>> gzip -cn /usr/src/usr.bin/ypwhich/ypwhich.1 > ypwhich.1.gz
>> cc -O2 -pipe  -std=gnu99 -Qunused-arguments -fstack-protector
>> -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -
>> Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int
>> -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-
>> unused-function -Wno-conversion -Wno-switch -Wno-switch-enum  -o ypwhich
>> ypwhich.o
>> 1 error
>> *** [everything] Error code 2
>> 1 error
>> *** [buildworld] Error code 2
>> 1 error
>
>
> My make.conf has these:
> WITHOUT_X11=1
> MALLOC_PRODUCTION=1
> NO_CLEAN=1
>
> Also, my src.conf had WITHOUT_CLANG but I deleted it and then I
> also deleted /usr/obj when it failed for the first time. But that
> didn't work. I am building with -j3.

Does it always fail there at usr.bin/ypwhich?
It's likely that -j3 is the culprit of why you do not see the actual build
error because it might be lost off the screen. Try to restart without -jN.

-- 
wbr,
pluknet