From owner-freebsd-stable@FreeBSD.ORG Fri Apr 18 11:01:18 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 027EBADC for ; Fri, 18 Apr 2014 11:01:18 +0000 (UTC) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C35AB128C for ; Fri, 18 Apr 2014 11:01:17 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 351B420B73 for ; Fri, 18 Apr 2014 07:01:07 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute3.internal (MEProxy); Fri, 18 Apr 2014 07:01:07 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.fm; h= date:from:to:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; s=mesmtp; bh=NkZvCGG+nzmcwkG8RaVtjacAP8E=; b=pjRYeGXcFfQ55W5CYHdzPGNaf19w uq+P6yOUYtVq7qCVcLToWXucX/SZoWhJ3ZsTJM0tCniOsKBX6eolSeKuls/kRfad X0gcsG+i6e+wNVq9GW/vsX/Bav1ymu0iU4zU/IP3XyC7i3n7guzcMN60NkELhB+s LdAn4e5cfXHfLB4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:to:subject:message-id :in-reply-to:references:mime-version:content-type :content-transfer-encoding; s=smtpout; bh=NkZvCGG+nzmcwkG8RaVtja cAP8E=; b=dGMFw2snyUm4ujS/FC04IC6D3Akd9Yf37a21GXgwsy122sVdvsYeiW IROenD+uO4GQmvXtU69tNGgsb98F9KwHOBzWR1UvRoVTk/sOmqeUGmPCQ7rHWYR/ 73s2RmDAsV/67wAtCSmssbML1rK/OD3WI6FmrqHqt19epLfKOstVQ= X-Sasl-enc: 4bcfzy76SD7BLqazcJv4/MrpV38VKRCCZCYTM2huJqBw 1397818866 Received: from skysong.divine.net (unknown [46.5.18.52]) by mail.messagingengine.com (Postfix) with ESMTPA id CDB69C00003 for ; Fri, 18 Apr 2014 07:01:06 -0400 (EDT) Date: Fri, 18 Apr 2014 13:00:55 +0200 From: Schaich Alonso To: freebsd-stable@freebsd.org Subject: Re: [9.2-STABLE/CLANG 3.3|3.4] x11/kdelibs4 Message-Id: <20140418130055.691608574419afe2c955e31e@fastmail.fm> In-Reply-To: <20140418081014.2ac2536e@munin.walstatt.dyndns.org> References: <20140418081014.2ac2536e@munin.walstatt.dyndns.org> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Apr 2014 11:01:18 -0000 On Fri, 18 Apr 2014 08:10:14 +0200 "O. Hartmann" wrote: > Hello, > > I run on a 9.2-STABLE box since a couple of weeks for now always into > the same problem. The port x11/kdelibs4 has been updated or needs to be > recompiled but the compiling process gets stuck forever (now I let the > system being stuck over night ~ 12 hours). I think this isn't correct > and I try to find out what is the cause since I desperately need to > update ports relying on x11/kdelibs4. > > The process ends up always at 98%, see below. I already completely > deinstalled the port and let the portmaster update process recreate it, > but it is the same status at the end. > > Regards and thank you, > > Oliver Can you check the output of # ps daux for a hierarchial list of running processes when the build process starts hanging (i.e. find out what process cmake is waiting to finish)? Next, could you check whether this also happens if you build kdelibs with gcc? As a wild guess this could be a race condition, then disabling multi-processor build (by writing "MAKE_JOBS_UNSAFE=yes" into /etc/make.conf, or by using something like "make MAKE_JOBS_UNSAFE=yes -C /usr/ports/x11/kdelibs4 deinstall clean build package reinstall clean" instead of portmaster) would "fix" it for you. Alonso