From owner-svn-ports-all@freebsd.org Tue Dec 19 04:32:05 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BE71E849C0; Tue, 19 Dec 2017 04:32:05 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B75763CEF; Tue, 19 Dec 2017 04:32:05 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 729AC1C19B; Tue, 19 Dec 2017 04:32:04 +0000 (UTC) From: Jan Beich To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r456689 - in head/multimedia/webcamoid: . files References: <201712182224.vBIMODW8041651@repo.freebsd.org> Date: Tue, 19 Dec 2017 05:31:58 +0100 In-Reply-To: <201712182224.vBIMODW8041651@repo.freebsd.org> (Yuri Victorovich's message of "Mon, 18 Dec 2017 22:24:13 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Dec 2017 04:32:05 -0000 Yuri Victorovich writes: > Author: yuri > Date: Mon Dec 18 22:24:12 2017 > New Revision: 456689 > URL: https://svnweb.freebsd.org/changeset/ports/456689 > > Log: > multimedia/webcamoid: Unbreaking clang-built app with USE_GCC=6.0+ [...] > +# Workaround for the crash when built with clang that the upstream author says is a bug in clang > +USE_GCC= 6.0+ Did you check runtime for crashes? USE_GCC enforces libstdc++ which conflicts with dependencies (e.g., qt5-*) built against libc++. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221288#c4 USES=compiler:gcc-c++11-lib is a more safe way to use GCC to build a port on architectures that switched to libc++ by default: aarch64, amd64, arm*, i386.