From owner-freebsd-stable@FreeBSD.ORG Fri Apr 18 11:01:24 2014 Return-Path: Delivered-To: freebsd-stable@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 ESMTPS id AFD97BC1 for ; Fri, 18 Apr 2014 11:01:24 +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 7CEB1128E for ; Fri, 18 Apr 2014 11:01:24 +0000 (UTC) Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id C172E21260; Fri, 18 Apr 2014 07:01:23 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute6.internal (MEProxy); Fri, 18 Apr 2014 07:01:23 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.fm; h= date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; s=mesmtp; bh=NkZvCGG+nzmcwkG8RaVtjacAP8E=; b=CBGxPm06SIhlQ42lv1mz+8XVIwd1 S0+dmu0H+/foD5h2DGAhBzTztnO+EV7s0/XzAmSZqnKvyj1NpcN27xq+jobmJg/X L5wN8KanfFIm3NIN0M6NBoN046SblHa+oV2Vj75zpUWif5d3oQCXbScor+Y2jI2z Nv3ZrvxAyM4N0fY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:to:cc:subject:message-id :in-reply-to:references:mime-version:content-type :content-transfer-encoding; s=smtpout; bh=NkZvCGG+nzmcwkG8RaVtja cAP8E=; b=fUASCp8FIAA9wrZcb8z3PBKJoKgZi70Iq7MN5O9cy6D+su3nefo9Mx PAGOY55i5F3fo9UyhoOseDKsgImggakJ16NYxKUxLddrZ1rXJNc6Ih4b83P7oBiy 4BdiI/57G9BrNspLJ41FROcOratL4iyHenMMmHdRyWhTIW5DL04a4= X-Sasl-enc: 1vRMTIh7YnODB4LicWYXwtX2v5HseQVxrcC2SroIQt6b 1397818883 Received: from skysong.divine.net (unknown [46.5.18.52]) by mail.messagingengine.com (Postfix) with ESMTPA id 2C7AD6800FF; Fri, 18 Apr 2014 07:01:23 -0400 (EDT) Date: Fri, 18 Apr 2014 13:01:14 +0200 From: Schaich Alonso To: ohartman@zedat.fu-berlin.de Subject: Re: [9.2-STABLE/CLANG 3.3|3.4] x11/kdelibs4 Message-Id: <20140418130114.cf13b401d5c55d4dfea93c54@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 Cc: freebsd-stable@freebsd.org 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:24 -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