Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 237721A921F for ; Sun, 27 Mar 2022 17:01:33 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7D02B84EA3; Sun, 27 Mar 2022 17:01:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B64AD84E99 for ; Sun, 27 Mar 2022 17:01:31 +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 GMNQzNUnzHb9 for ; Sun, 27 Mar 2022 17:01:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 16D2584D5F for ; Sun, 27 Mar 2022 17:01:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 106A7FB24; Sun, 27 Mar 2022 17:01:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648400491105520" MIME-Version: 1.0 Date: Sun, 27 Mar 2022 17:01:31 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/lang/gcc10 To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220327170131.106A7FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648400491105520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Mar 27 17:01:30 UTC 2022 Modified Files: pkgsrc/lang/gcc10: Makefile Log Message: gcc10: disable libsanitizer on SunOS It doesn't build properly for me even when using lang/gcc10 to self-host. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/gcc10/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648400491105520 Content-Disposition: inline Content-Length: 829 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc10/Makefile diff -u pkgsrc/lang/gcc10/Makefile:1.16 pkgsrc/lang/gcc10/Makefile:1.17 --- pkgsrc/lang/gcc10/Makefile:1.16 Sun Mar 27 15:06:11 2022 +++ pkgsrc/lang/gcc10/Makefile Sun Mar 27 17:01:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2022/03/27 15:06:11 tnn Exp $ +# $NetBSD: Makefile,v 1.17 2022/03/27 17:01:30 tnn Exp $ GCC_PKGNAME= gcc10 PKGREVISION= 1 @@ -109,6 +109,8 @@ CONFIGURE_ARGS+= --with-local-prefix=${G CONFIGURE_ARGS+= --enable-threads=posix CONFIGURE_ARGS+= --with-boot-ldflags=${BOOT_LDFLAGS:Q} CONFIGURE_ARGS+= --without-zstd +# causes build errors even when using lang/gcc10 to self-host. +CONFIGURE_ARGS.SunOS+= --disable-libsanitizer # multilib on Darwin requires fat-binaries CONFIGURE_ARGS.Darwin+= --disable-multilib .if !empty(OSX_SDK_PATH) --_----------=_1648400491105520--