mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
Disable profiler runtime on tvOS and watchOS
This commit is contained in:
@@ -481,7 +481,19 @@ auto:
|
||||
SCRIPT: ./x.py dist bootstrap --include-default-paths --host='' --target=$TARGETS
|
||||
# Mac Catalyst cannot currently compile the sanitizer:
|
||||
# https://github.com/rust-lang/rust/issues/129069
|
||||
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
|
||||
#
|
||||
# And tvOS and watchOS don't currently support the profiler runtime:
|
||||
# https://github.com/rust-lang/rust/issues/152426
|
||||
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
|
||||
--set target.aarch64-apple-tvos.profiler=false
|
||||
--set target.aarch64-apple-tvos-sim.profiler=false
|
||||
--set target.aarch64-apple-watchos.profiler=false
|
||||
--set target.aarch64-apple-watchos-sim.profiler=false
|
||||
# Ensure that host tooling is built to support our minimum support macOS version.
|
||||
# FIXME(madsmtm): This might be redundant, as we're not building host tooling here (?)
|
||||
MACOSX_DEPLOYMENT_TARGET: 10.12
|
||||
|
||||
Reference in New Issue
Block a user