Received: by mail.netbsd.org (Postfix, from userid 605) id 6F7EA84EEE; Thu, 7 Jul 2022 17:19:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A60B384EEB for ; Thu, 7 Jul 2022 17:19:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id q_jcjnPGkPlF for ; Thu, 7 Jul 2022 17:19:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F00D084D05 for ; Thu, 7 Jul 2022 17:19:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E2AA6FB1A; Thu, 7 Jul 2022 17:19:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165721439579780" MIME-Version: 1.0 Date: Thu, 7 Jul 2022 17:19:55 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/compiler To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220707171955.E2AA6FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165721439579780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jul 7 17:19:55 UTC 2022 Modified Files: pkgsrc/mk/compiler: clang.mk Log Message: mk: Remove -std overrides for clang. Reported to cause problems on FreeBSD, and clang is generally pretty aggressive about defaulting to newer versions anyway. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/mk/compiler/clang.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165721439579780 Content-Disposition: inline Content-Length: 767 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/compiler/clang.mk diff -u pkgsrc/mk/compiler/clang.mk:1.36 pkgsrc/mk/compiler/clang.mk:1.37 --- pkgsrc/mk/compiler/clang.mk:1.36 Tue Jul 5 17:32:24 2022 +++ pkgsrc/mk/compiler/clang.mk Thu Jul 7 17:19:55 2022 @@ -1,4 +1,4 @@ -# $NetBSD: clang.mk,v 1.36 2022/07/05 17:32:24 jperkin Exp $ +# $NetBSD: clang.mk,v 1.37 2022/07/07 17:19:55 jperkin Exp $ # # This is the compiler definition for the clang compiler. # @@ -121,10 +121,6 @@ _NOERROR_IMPLICIT_cmd= ${CCPATH} -\#\#\# CWRAPPERS_PREPEND.cc+= ${_NOERROR_IMPLICIT_cmd:sh} .endif -.for _version_ in ${_C_STD_VERSIONS} -_C_STD_FLAG.${_version_}?= -std=${_version_} -.endfor - .for _version_ in ${_CXX_STD_VERSIONS} _CXX_STD_FLAG.${_version_}?= -std=${_version_} .endfor --_----------=_165721439579780--