From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E8DB2158094 for ; Wed, 14 Sep 2022 23:24:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C31CE09F4; Wed, 14 Sep 2022 23:24:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F298BE09F4 for ; Wed, 14 Sep 2022 23:24:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5AC8340EE9 for ; Wed, 14 Sep 2022 23:24:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E2CD5C8 for ; Wed, 14 Sep 2022 23:24:36 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1663197822.c115ecb8b22853eec7abade52a3790ccffeeb4b0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mingw64-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild X-VCS-Directories: dev-util/mingw64-runtime/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: c115ecb8b22853eec7abade52a3790ccffeeb4b0 X-VCS-Branch: master Date: Wed, 14 Sep 2022 23:24:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9fc17141-7183-4d5b-9368-7dad3888e64f X-Archives-Hash: de08cb2db01496ce1d2cd4ededfad628 commit: c115ecb8b22853eec7abade52a3790ccffeeb4b0 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Sep 14 23:20:36 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Sep 14 23:23:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c115ecb8 dev-util/mingw64-runtime: filter ssp for cross-compilation bits Less likely to be an issue here given the whole crossdev involvement which may or may not have working libssp, but it seems reasonable to add and there's a way to override if needed. Bug: https://bugs.gentoo.org/870136 Signed-off-by: Ionen Wolkens gentoo.org> dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild | 1 + dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild | 1 + dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild index d25b7c5a8cd2..10e3e63896d7 100644 --- a/dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild +++ b/dev-util/mingw64-runtime/mingw64-runtime-10.0.0-r1.ebuild @@ -63,6 +63,7 @@ src_configure() { # likely cross-compiling from here, update toolchain variables if ${MW_CROSS} && [[ ! -v MINGW_BYPASS ]]; then unset AR AS CC CPP CXX LD NM OBJCOPY OBJDUMP RANLIB RC STRIP + filter-flags '-fstack-protector*' #870136 filter-flags '-fuse-ld=*' fi local CHOST=${CTARGET} diff --git a/dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild index 44937f667232..c0f96c62bc21 100644 --- a/dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild +++ b/dev-util/mingw64-runtime/mingw64-runtime-8.0.0-r3.ebuild @@ -65,6 +65,7 @@ src_configure() { # likely cross-compiling from here, update toolchain variables if ${MW_CROSS} && [[ ! -v MINGW_BYPASS ]]; then unset AR AS CC CPP CXX LD NM OBJCOPY OBJDUMP RANLIB RC STRIP + filter-flags '-fstack-protector*' #870136 filter-flags '-fuse-ld=*' fi local CHOST=${CTARGET} diff --git a/dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild index d0a25ce8f9c1..572a65c6bce8 100644 --- a/dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild +++ b/dev-util/mingw64-runtime/mingw64-runtime-9.0.0-r2.ebuild @@ -63,6 +63,7 @@ src_configure() { # likely cross-compiling from here, update toolchain variables if ${MW_CROSS} && [[ ! -v MINGW_BYPASS ]]; then unset AR AS CC CPP CXX LD NM OBJCOPY OBJDUMP RANLIB RC STRIP + filter-flags '-fstack-protector*' #870136 filter-flags '-fuse-ld=*' fi local CHOST=${CTARGET}