From owner-cvs-ports@FreeBSD.ORG Mon Dec 12 01:41:21 2011 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 376C4106566B; Mon, 12 Dec 2011 01:41:21 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id C0D5D8FC13; Mon, 12 Dec 2011 01:41:20 +0000 (UTC) Received: by ggnp1 with SMTP id p1so6714877ggn.13 for ; Sun, 11 Dec 2011 17:41:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=7bFZCFwH0SgepA6p+0wQFxRMWiap+bxdDkS52bFcIl4=; b=wMSZXMNUvlcY+wwNN5c2LfwTqKEvdQYkXiq/091AE/bejvn0PRryQH9KnYhQ9C6psw 16p8VM98QezgXe9a1VCmuucJglnA2t09Q1G10LpvFR0IwcNgqY+hogy116iqvXsl5z4l lFByNbBOqPtlRZ8K5zx+SsP+rPv+eXeAjjeKI= Received: by 10.100.127.5 with SMTP id z5mr3672315anc.85.1323654079761; Sun, 11 Dec 2011 17:41:19 -0800 (PST) Received: from gibbon.gmail.com ([189.61.195.245]) by mx.google.com with ESMTPS id f17sm45758913ang.20.2011.12.11.17.41.15 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 11 Dec 2011 17:41:18 -0800 (PST) Sender: Raphael Kubo da Costa From: Raphael Kubo da Costa To: Max Brazhnikov References: <201111101950.pAAJoQOb072790@repoman.freebsd.org> <874nx9gp4g.fsf@FreeBSD.org> <20111210072144.GB1551@hades.panopticon> <201112101809.19531.makc__96.8902408660099$1323540591$gmane$org@issp.ac.ru> Date: Sun, 11 Dec 2011 23:41:06 -0200 In-Reply-To: <201112101809.19531.makc__96.8902408660099$1323540591$gmane$org@issp.ac.ru> (Max Brazhnikov's message of "Sat, 10 Dec 2011 18:09:19 +0000") Message-ID: <87obvewor1.fsf@FreeBSD.org> User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.90 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: cvs-ports@freebsd.org, Dmitry Marakasov , cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/Mk bsd.cmake.mk X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2011 01:41:21 -0000 Max Brazhnikov writes: > On Sat, 10 Dec 2011 11:21:44 +0400, Dmitry Marakasov wrote: >> * Raphael Kubo da Costa (rakuco@freebsd.org) wrote: >> > Well, we did run test builds before committing, so it should have been a >> > safe commit. The commit touched all ports which used the removed >> > setting, I don't see which others it may have touched. >> > >> > As for the build log: what system is that? Can you post a build log with >> > CMAKE_VERBOSE=1 set? >> >> FreeBSD hades.panopticon 9.0-RC2 FreeBSD 9.0-RC2 #0: Tue Nov 29 07:18:03 >> MSK 2011 root@hades.panopticon:/usr/work/usr/src/sys/HADES amd64 >> >> http://people.freebsd.org/~amdmi3/bullet_verbose.log >> >> Otoh, it builds fine in (7, 8) tinderbox, so this may be 9-specific or >> local problem. > > Probably your local problem, I can't reproduce it on my 9-stable amd64. Indeed, it looks like something local to your system -- bullet's Demos/MultiThreadedDemo/CMakeLists.txt has the following section: IF (UNIX) TARGET_LINK_LIBRARIES(AppMultiThreadedDemo pthread) ENDIF(UNIX) However, the linking line in your log does not contain '-lpthread' (I know we use -pthread, but that is not relevant to this issue).