aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <[email protected]>2025-07-04 23:44:37 +0200
committerTor Arne Vestbø <[email protected]>2025-07-07 11:14:04 +0200
commit17bcaae8bc2a4de1307083b05f394e84b5db8a21 (patch)
treecefa8d31aa4d38616c52499e058f62cb0c618142
parent9de9e75b02aabe3e9e7cb1d2d1debe5d3ef60fc0 (diff)
Disable warnings from Swift backtrace on macOS 26HEADdev
Many of the system tools seems to be written in Swift now, which results in a warning when running them: swift runtime: backtrace-on-crash is not supported for privileged executables Luckily we can silence this warning via 'warnings=suppressed'. See https://forums.swift.org/t/suppressing-backtrace-warnings/79235 Change-Id: I09b97553d996269fd4c9d23bf52a319bf964c833 Reviewed-by: Ville-Pekka Karhu <[email protected]>
-rwxr-xr-xcoin/provisioning/qtci-macos-26-arm/06-crashreporter.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin/provisioning/qtci-macos-26-arm/06-crashreporter.sh b/coin/provisioning/qtci-macos-26-arm/06-crashreporter.sh
index b66bbc38a..b16b518c8 100755
--- a/coin/provisioning/qtci-macos-26-arm/06-crashreporter.sh
+++ b/coin/provisioning/qtci-macos-26-arm/06-crashreporter.sh
@@ -9,4 +9,4 @@ defaults write com.apple.CrashReporter DialogType server
# shellcheck source=../common/unix/SetEnvVar.sh
source "${BASH_SOURCE%/*}/../common/unix/SetEnvVar.sh"
-SetEnvVar "SWIFT_BACKTRACE" "enable=yes,output-to=stderr,preset=medium,interactive=false"
+SetEnvVar "SWIFT_BACKTRACE" "enable=yes,output-to=stderr,preset=medium,interactive=false,warnings=suppressed"