Skip to content

Commit 16612a9

Browse files
authoredOct 13, 2020
Rollup merge of #77239 - shepmaster:silicon-ci-plus, r=pietroalbini
Enable building Cargo for aarch64-apple-darwin r? @ghost
2 parents d65c08e + 8b6e346 commit 16612a9

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed
 

‎.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -306,14 +306,16 @@ jobs:
306306
- name: dist-aarch64-apple
307307
env:
308308
SCRIPT: "./x.py dist --stage 2"
309-
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false --tools=rls,clippy,rustfmt,analysis,src"
309+
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
310310
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
311311
SELECT_XCODE: /Applications/Xcode_12_beta.app
312312
USE_XCODE_CLANG: 1
313313
MACOSX_DEPLOYMENT_TARGET: 11.0
314314
MACOSX_STD_DEPLOYMENT_TARGET: 11.0
315315
NO_LLVM_ASSERTIONS: 1
316316
NO_DEBUG_ASSERTIONS: 1
317+
DIST_REQUIRE_ALL_TOOLS: 1
318+
JEMALLOC_SYS_WITH_LG_PAGE: 14
317319
os: macos-latest
318320
- name: x86_64-msvc-1
319321
env:

‎Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2192,9 +2192,9 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
21922192

21932193
[[package]]
21942194
name = "openssl-src"
2195-
version = "111.10.2+1.1.1g"
2195+
version = "111.12.0+1.1.1h"
21962196
source = "registry+https://github.com/rust-lang/crates.io-index"
2197-
checksum = "a287fdb22e32b5b60624d4a5a7a02dbe82777f730ec0dbc42a0554326fef5a70"
2197+
checksum = "858a4132194f8570a7ee9eb8629e85b23cbc4565f2d4a162e87556e5956abf61"
21982198
dependencies = [
21992199
"cc",
22002200
]

‎src/ci/github-actions/ci.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -469,24 +469,27 @@ jobs:
469469
--build=x86_64-apple-darwin
470470
--host=aarch64-apple-darwin
471471
--target=aarch64-apple-darwin
472+
--enable-full-tools
472473
--enable-sanitizers
473474
--enable-profiler
474475
--set rust.jemalloc
475476
--set llvm.ninja=false
476-
--tools=rls,clippy,rustfmt,analysis,src
477477
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
478478
SELECT_XCODE: /Applications/Xcode_12_beta.app
479479
USE_XCODE_CLANG: 1
480480
MACOSX_DEPLOYMENT_TARGET: 11.0
481481
MACOSX_STD_DEPLOYMENT_TARGET: 11.0
482482
NO_LLVM_ASSERTIONS: 1
483483
NO_DEBUG_ASSERTIONS: 1
484-
# TODO: Cargo is disabled until OpenSSL 1.1.1 can be
485-
# compiled for aarch64-apple-darwin::
486-
# https://github.com/openssl/openssl/pull/12369. Once
487-
# fixed, remove `--tools`, add back
488-
# `--enable-full-tools`, and enable this again
489-
# DIST_REQUIRE_ALL_TOOLS: 1
484+
DIST_REQUIRE_ALL_TOOLS: 1
485+
# Corresponds to 16K page size
486+
#
487+
# Shouldn't be needed if jemalloc-sys is updated to
488+
# handle this platform like iOS or if we build on
489+
# aarch64-apple-darwin itself.
490+
#
491+
# https://github.com/gnzlbg/jemallocator/blob/c27a859e98e3cb790dc269773d9da71a1e918458/jemalloc-sys/build.rs#L237
492+
JEMALLOC_SYS_WITH_LG_PAGE: 14
490493
<<: *job-macos-xl
491494

492495
######################

‎src/doc/rustc/src/platform-support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Specifically, these platforms are required to have each of the following:
5757

5858
target | std | host | notes
5959
-------|-----|------|-------
60-
`aarch64-apple-darwin` | ✓ | | ARM64 macOS (11.0+, Big Sur+)
60+
`aarch64-apple-darwin` | ✓ | | ARM64 macOS (11.0+, Big Sur+)
6161
`aarch64-apple-ios` | ✓ | | ARM64 iOS
6262
`aarch64-fuchsia` | ✓ | | ARM64 Fuchsia
6363
`aarch64-linux-android` | ✓ | | ARM64 Android

0 commit comments

Comments
 (0)