From owner-freebsd-ports@freebsd.org Wed Jun 15 18:27:04 2016 Return-Path: Delivered-To: freebsd-ports@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 EF02AA4737C for ; Wed, 15 Jun 2016 18:27:04 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id DD86B1C99 for ; Wed, 15 Jun 2016 18:27:04 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: by mailman.ysv.freebsd.org (Postfix) id D9391A4737B; Wed, 15 Jun 2016 18:27:04 +0000 (UTC) Delivered-To: ports@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 D8DB4A4737A for ; Wed, 15 Jun 2016 18:27:04 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id B17C91C97; Wed, 15 Jun 2016 18:27:04 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-24-5-143-190.hsd1.ca.comcast.net [24.5.143.190]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id u5FIQwAS091057 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Wed, 15 Jun 2016 11:26:58 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-5-143-190.hsd1.ca.comcast.net [24.5.143.190] claimed to be yuri.doctorlan.com To: "ports@freebsd.org" From: Yuri Subject: USES=compiler:c++14-lang still adds -std=c++11 to CXXFLAGS Cc: portmgr@FreeBSD.org Message-ID: <68938eb6-daef-7300-526a-1b501af51bf2@rawbw.com> Date: Wed, 15 Jun 2016 11:26:57 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2016 18:27:05 -0000 I have a port that needs c++14. USES statements are like this: USES= compiler:c++14-lang gmake qmake USE_QT5= core gui network Yet, compiler command lines still have -std=c++11, and build fails because of the lack of c++14 support. What is wrong? I think this is a bug in /usr/ports/Mk/Uses/compiler.mk Yuri