Skip to content

Commit 87d0f76

Browse files
committed
Disable profiler runtime on tvOS and watchOS
1 parent 0fca041 commit 87d0f76

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

src/ci/github-actions/jobs.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,19 @@ auto:
475475
SCRIPT: ./x.py dist bootstrap --include-default-paths --host='' --target=$TARGETS
476476
# Mac Catalyst cannot currently compile the sanitizer:
477477
# https://github.com/rust-lang/rust/issues/129069
478-
RUST_CONFIGURE_ARGS: --enable-sanitizers --enable-profiler --set rust.jemalloc --set target.aarch64-apple-ios-macabi.sanitizers=false --set target.x86_64-apple-ios-macabi.sanitizers=false
478+
#
479+
# And tvOS and watchOS don't currently support the profiler runtime:
480+
# https://github.com/rust-lang/rust/issues/152426
481+
RUST_CONFIGURE_ARGS: >-
482+
--enable-sanitizers
483+
--enable-profiler
484+
--set rust.jemalloc
485+
--set target.aarch64-apple-ios-macabi.sanitizers=false
486+
--set target.x86_64-apple-ios-macabi.sanitizers=false
487+
--set target.aarch64-apple-tvos.profiler=false
488+
--set target.aarch64-apple-tvos-sim.profiler=false
489+
--set target.aarch64-apple-watchos.profiler=false
490+
--set target.aarch64-apple-watchos-sim.profiler=false
479491
# Ensure that host tooling is built to support our minimum support macOS version.
480492
# FIXME(madsmtm): This might be redundant, as we're not building host tooling here (?)
481493
MACOSX_DEPLOYMENT_TARGET: 10.12

0 commit comments

Comments
 (0)