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 61AE6158090 for ; Wed, 25 May 2022 13:22:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5717EE0901; Wed, 25 May 2022 13:22:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3C187E0901 for ; Wed, 25 May 2022 13:22:23 +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 85CCB34178D for ; Wed, 25 May 2022 13:22:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B740934E for ; Wed, 25 May 2022 13:22:19 +0000 (UTC) From: "Stephan Hartmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stephan Hartmann" Message-ID: <1653484852.6c7aa1d73184ee8c8b5d6708632e9e675b3b475f.sultan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-102.0.5005.61.ebuild www-client/chromium/chromium-103.0.5060.13.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: sultan X-VCS-Committer-Name: Stephan Hartmann X-VCS-Revision: 6c7aa1d73184ee8c8b5d6708632e9e675b3b475f X-VCS-Branch: master Date: Wed, 25 May 2022 13:22:19 +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: 0c32909a-3eaa-42c2-8f0d-e4f4bb7357ce X-Archives-Hash: 7983536158c2f5219a4a93b117e1e855 commit: 6c7aa1d73184ee8c8b5d6708632e9e675b3b475f Author: Stephan Hartmann gentoo org> AuthorDate: Wed May 25 13:19:44 2022 +0000 Commit: Stephan Hartmann gentoo org> CommitDate: Wed May 25 13:20:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c7aa1d7 www-client/chromium: fix linker error on arm64 Signed-off-by: Stephan Hartmann gentoo.org> www-client/chromium/chromium-102.0.5005.61.ebuild | 5 +++++ www-client/chromium/chromium-103.0.5060.13.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/www-client/chromium/chromium-102.0.5005.61.ebuild b/www-client/chromium/chromium-102.0.5005.61.ebuild index 53e434445ed8..2ea1bde2e34f 100644 --- a/www-client/chromium/chromium-102.0.5005.61.ebuild +++ b/www-client/chromium/chromium-102.0.5005.61.ebuild @@ -830,6 +830,11 @@ src_configure() { myconf_gn+=" ozone_platform=\"x11\"" fi + # Results in undefined references in chrome linking, may require CFI to work + if use arm64; then + myconf_gn+=" arm_control_flow_integrity=\"none\"" + fi + # Enable official builds myconf_gn+=" is_official_build=$(usex official true false)" myconf_gn+=" use_thin_lto=false" diff --git a/www-client/chromium/chromium-103.0.5060.13.ebuild b/www-client/chromium/chromium-103.0.5060.13.ebuild index 2887036ff17e..a71678494b49 100644 --- a/www-client/chromium/chromium-103.0.5060.13.ebuild +++ b/www-client/chromium/chromium-103.0.5060.13.ebuild @@ -906,6 +906,11 @@ src_configure() { myconf_gn+=" ozone_platform=$(usex wayland \"wayland\" \"x11\")" fi + # Results in undefined references in chrome linking, may require CFI to work + if use arm64; then + myconf_gn+=" arm_control_flow_integrity=\"none\"" + fi + # Enable official builds myconf_gn+=" is_official_build=$(usex official true false)" myconf_gn+=" use_thin_lto=$(usex lto true false)"