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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 45A2F15807B for ; Sun, 13 Oct 2024 14:51:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 505F6E08B0; Sun, 13 Oct 2024 14:51:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36844E08B0 for ; Sun, 13 Oct 2024 14:51:37 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 55B9B343273 for ; Sun, 13 Oct 2024 14:51:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A6F22191 for ; Sun, 13 Oct 2024 14:51:33 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1728783085.2a36ac399b06cd73f2be2c7d0df56dc82eb31fb4.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/swift/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/swift/swift-5.10.1-r1.ebuild X-VCS-Directories: dev-lang/swift/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 2a36ac399b06cd73f2be2c7d0df56dc82eb31fb4 X-VCS-Branch: master Date: Sun, 13 Oct 2024 14:51:33 +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: eb5e37bb-9653-4526-a45c-c32c7dcd554d X-Archives-Hash: 1dcba6e0b1abd8d9c86e6362a0fffe78 commit: 2a36ac399b06cd73f2be2c7d0df56dc82eb31fb4 Author: Itai Ferber itaiferber net> AuthorDate: Sun Oct 13 01:27:34 2024 +0000 Commit: David Roman gmail com> CommitDate: Sun Oct 13 01:31:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a36ac39 dev-lang/swift: build without compiler assertions Closes: https://bugs.gentoo.org/940500 Signed-off-by: Itai Ferber itaiferber.net> dev-lang/swift/swift-5.10.1-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-lang/swift/swift-5.10.1-r1.ebuild b/dev-lang/swift/swift-5.10.1-r1.ebuild index 145becb3f..ee233f3bb 100644 --- a/dev-lang/swift/swift-5.10.1-r1.ebuild +++ b/dev-lang/swift/swift-5.10.1-r1.ebuild @@ -222,6 +222,8 @@ src_compile() { "${S}/swift/utils/build-script" \ --verbose-build \ --release \ + --no-assertions \ + --build-subdir="Ninja-Release" \ --install-destdir="${S}/stage0" \ --extra-cmake-options="${extra_cmake_options}" \ --bootstrapping=off \ @@ -245,6 +247,8 @@ src_compile() { "${S}/swift/utils/build-script" \ --verbose-build \ --release \ + --no-assertions \ + --build-subdir="Ninja-Release" \ --install-destdir="${S}/stage1" \ --extra-cmake-options="${extra_cmake_options}" \ --build-swift-libexec=false \ @@ -267,6 +271,8 @@ src_compile() { "${S}/swift/utils/build-script" \ --verbose-build \ --release \ + --no-assertions \ + --build-subdir="Ninja-Release" \ --install-destdir="${S}/stage2" \ --extra-cmake-options="${extra_cmake_options}" \ --build-swift-libexec=false \