From owner-svn-ports-head@freebsd.org Sun Feb 3 06:07:56 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E63E214B7A90; Sun, 3 Feb 2019 06:07:55 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 818E685398; Sun, 3 Feb 2019 06:07:55 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 5660C33E60; Sun, 3 Feb 2019 01:07:49 -0500 (EST) Received: from [10.53.203.84] (unknown [88.128.81.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 9031033E5C; Sun, 3 Feb 2019 01:07:48 -0500 (EST) Date: Sun, 3 Feb 2019 07:07:46 +0100 (CET) From: Gerald Pfeifer To: Yuri Victorovich cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r491992 - in head/audio: . nekobi-lv2 nekobi-lv2/files In-Reply-To: <201902022130.x12LUnNi064617@repo.freebsd.org> Message-ID: References: <201902022130.x12LUnNi064617@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 818E685398 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Feb 2019 06:07:56 -0000 On Sat, 2 Feb 2019, Yuri Victorovich wrote: > Author: yuri > Date: Sat Feb 2 21:30:48 2019 > New Revision: 491992 > URL: https://svnweb.freebsd.org/changeset/ports/491992 > +USE_GCC= any # clang prints errors: https://github.com/DISTRHO/Nekobi/issues/7 Indeed clang issues an error, not a warning like GCC, but seeing -Wc++11-narrowing in the message ../../dpf/distrho/src/DistrhoUIDSSI.cpp:197:13: error: non-constant-expression cannot be narrowed from type 'int' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing] could this perhaps be disabled via -Wnoc++11-narrowing (to CFLAGS)? Forcing GCC always feels a little...extreme. Gerald