Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

show linker output even if the linker succeeds #119286

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

jyn514
Copy link
Member

@jyn514 jyn514 commented Dec 24, 2023

  • show stderr by default
  • show stdout if --verbose is passed
  • remove both from RUSTC_LOG
  • hide the linker cli args unless --verbose is passed

fixes #83436. fixes #38206. fixes #109979. helps with #46998. cc https://rust-lang.zulipchat.com/#narrow/stream/233931-t-compiler.2Fmajor-changes/topic/uplift.20some.20-Zverbose.20calls.20and.20rename.20to.E2.80.A6.20compiler-team.23706/near/408986134

this is based on #119129 for convenience so i didn't have to duplicate the changes around saving --verbose in cb6d033#diff-7a49efa20548d6806dbe1c66dd4dc445fda18fcbbf1709520cadecc4841aae12

r? @bjorn3

@rustbot rustbot added A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) A-translation Area: Translation infrastructure, and migrating existing diagnostics to SessionDiagnostic S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Dec 24, 2023
@rustbot
Copy link
Collaborator

rustbot commented Dec 24, 2023

rustc_macros::diagnostics was changed

cc @davidtwco, @compiler-errors, @TaKO8Ki

@jyn514 jyn514 force-pushed the linker-output branch 2 times, most recently from 060a457 to a34d7ae Compare December 24, 2023 23:47
@jyn514
Copy link
Member Author

jyn514 commented Dec 24, 2023

hmm actually this is a slight expansion of scope but @bjorn3 how would you feel about not printing the giant list of linker arguments unless someone passes --verbose (#109979)

@rust-log-analyzer

This comment has been minimized.

@jyn514
Copy link
Member Author

jyn514 commented Dec 25, 2023

also i know we settled on not showing stdout by default but it's useful for debugging search paths - maybe we should show it after all? it seems silly to have to pass both -Wl,--verbose and --verbose. #46998 (comment)

@rust-log-analyzer

This comment has been minimized.

@@ -714,7 +714,7 @@ fn test_unstable_options_tracking_hash() {
untracked!(unpretty, Some("expanded".to_string()));
untracked!(unstable_options, true);
untracked!(validate_mir, true);
untracked!(verbose, true);
untracked!(verbose_internals, true);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't diagnostics influenced by this flag end up in the incr cache? It should actually be tracked I think.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, do we cache diagnostic output? even on errors? that seems very strange to me.

i don't mind changing it to tracked, i'm just confused why it's necessary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On errors we don't finalize the incr comp cache, but non-fatal diagnostics are cached afaik. Otherwise we would have to replay the query in question, which we may not be able to do if the query key is not reconstructible from the dep node fingerprint.

@bors
Copy link
Contributor

bors commented Jan 6, 2024

☔ The latest upstream changes (presumably #119662) made this pull request unmergeable. Please resolve the merge conflicts.

@rust-log-analyzer

This comment has been minimized.

@jyn514
Copy link
Member Author

jyn514 commented Jan 20, 2024

hmm. that test has the following comment:

// Between revisions 1 and 2, we are changing the debuginfo-level, which should
// invalidate the cache. Between revisions 2 and 3, we are adding `--verbose`
// which should have no effect on the cache. Between revisions, we are adding
// `--remap-path-prefix` which should invalidate the cache:
//[rpass1] compile-flags: -C debuginfo=0
//[rpass2] compile-flags: -C debuginfo=2
//[rpass3] compile-flags: -C debuginfo=2 --verbose
//[rpass4] compile-flags: -C debuginfo=2 --verbose --remap-path-prefix=/home/bors/rust=src

i suppose those lines are all invalid now, it should be testing that the CGU is not reused? i'm not sure why it's testing --verbose specifically, maybe it's enough to test any untracked CLI arg. i'll change it to --diagnostic-width.

i'm realizing your comments are all about #119129. i feel slightly uncomfortable making unrelated changes in this PR ... how do you feel about splitting them into a separate PR so i can assign michaelwoerister?

@bjorn3
Copy link
Member

bjorn3 commented Jan 20, 2024

how do you feel about splitting them into a separate PR so i can assign michaelwoerister?

Sure

@bjorn3
Copy link
Member

bjorn3 commented Jan 20, 2024

hide the linker cli args unless --verbose is passed

I prefer not doing this. It is helpful whenever a linkage issue is opened to not have to ask to rerun with RUSTFLAGS="--verbose". If you revert this change r=me. If you still want to keep it, let me thing about it for a bit.

@jyn514
Copy link
Member Author

jyn514 commented Sep 24, 2024

ok someone let me use their mac and i managed to fix the bug

(the thing i needed was the original .err file, which doesn't show up in CI; i ended up just porting to run-make so this isn't so painful in the future)

@rustbot
Copy link
Collaborator

rustbot commented Sep 24, 2024

Some changes occurred in src/tools/cargo

cc @ehuss

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@jyn514
Copy link
Member Author

jyn514 commented Sep 24, 2024

ok new plan. i don't think fixing these one-by-one is really feasible, there are just too many and they are too complicated to debug. instead i'm going to change this hard-warning to a lint and allow it by default in rustc's CI. that also has the advantage that downstream projects can opt-out of these warnings if they like.

@bors
Copy link
Contributor

bors commented Oct 8, 2024

☔ The latest upstream changes (presumably #122709) made this pull request unmergeable. Please resolve the merge conflicts.

@rustbot
Copy link
Collaborator

rustbot commented Oct 16, 2024

Some changes occurred in compiler/rustc_codegen_gcc

cc @antoyo, @GuillaumeGomez

Some changes occurred in compiler/rustc_codegen_cranelift

cc @bjorn3

@rustbot rustbot added the A-compiletest Area: The compiletest test runner label Oct 16, 2024
@rust-log-analyzer

This comment has been minimized.

@@ -770,6 +770,9 @@ passes_unused_duplicate =
passes_unused_empty_lints_note =
attribute `{$name}` with an empty list has no effect

passes_unused_linker_warnings_note =
the `linker_warnings` lint can only controlled at the root of a crate with `--crate-type bin`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing "be"?

@rust-log-analyzer

This comment has been minimized.

jyn514 and others added 9 commits October 27, 2024 21:11
the linker arguments can be *very* long, especially for crates with many dependencies. often they are not useful. omit them unless the user specifically requests them.
this avoids warnings from macOS ld
this makes it much easier to understand test failures.

before:
```
diff of stderr:

1 error: linking with `LINKER` failed: exit status: 1
2    |
-            ld: Undefined symbols:
4              _CFRunLoopGetTypeID, referenced from:
5            clang: error: linker command failed with exit code 1 (use -v to see invocation)
```

after:
```
=== HAYSTACK ===
error: linking with `cc` failed: exit status: 1
  |
  = note: use `--verbose` to show all linker arguments
  = note: Undefined symbols for architecture arm64:
            "_CFRunLoopGetTypeID", referenced from:
                main::main::hbb553f5dda62d3ea in main.main.d17f5fbe6225cf88-cgu.0.rcgu.o
          ld: symbol(s) not found for architecture arm64
          clang: error: linker command failed with exit code 1 (use -v to see invocation)

error: aborting due to 1 previous error

=== NEEDLE ===
_CFRunLoopGetTypeID\.?, referenced from:
thread 'main' panicked at /Users/jyn/git/rust-lang/rust/tests/run-make/linkage-attr-framework/rmake.rs:22:10:
needle was not found in haystack
```

this also fixes a failure related to missing whitespace; we don't actually care about whitespace in this test.
this was slightly complicated because codegen_ssa doesn't have access to a tcx.
@rust-log-analyzer
Copy link
Collaborator

The job aarch64-apple failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Updating files:  98% (49186/50189)
Updating files:  99% (49688/50189)
Updating files: 100% (50189/50189)
Updating files: 100% (50189/50189), done.
HEAD is now at 1819ccba Merge 3f318d07454a8de4e39863b3d083e65c2728b378 into df4ca44d3fbc9301ee17f30f4d474e6ae4b05252
[command]/opt/homebrew/bin/git log -1 --format=%H
1819ccbadcbb0fd2457c77ef0196477a1a404ffb
##[group]Run echo "[CI_PR_NUMBER=$num]"
echo "[CI_PR_NUMBER=$num]"
---
   Compiling hashbrown v0.15.0
   Compiling std_detect v0.1.5 (/Users/runner/work/rust/rust/library/stdarch/crates/std_detect)
   Compiling panic_abort v0.0.0 (/Users/runner/work/rust/rust/library/panic_abort)
   Compiling rustc-demangle v0.1.24
error: linker stderr: ld: cannot export hidden symbol compiler_builtins::int::leading_zeros::__clzsi2::h772816fea4f998f5 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.014.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::leading_zeros::__clzdi2::h8c376d4c70fc0324 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.014.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::leading_zeros::__clzti2::ha0866b3fddb5f07f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.014.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::trailing_zeros::__ctzsi2::h0532061e83f11ef9 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.015.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::trailing_zeros::__ctzdi2::h14a8eb0436ede881 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.015.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::trailing_zeros::__ctzti2::h0ee9b7d2175e513c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.015.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..u256$u20$as$u20$core..ops..bit..Shr$LT$u32$GT$$GT$::shr::h989f9dee005b486c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$u128$GT$::widen_mul::h2275403fb4dcde81 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$u128$GT$::zero_widen_mul::h4b4844347546aa81 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$i128$GT$::zero_widen_mul::h2390f89d24d7776e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$i128$GT$::widen_mul::h1c1edab544765980 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$u128$GT$::widen_hi::h7d9091b8e683a157 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::big::_$LT$impl$u20$compiler_builtins..int..HInt$u20$for$u20$i128$GT$::widen_hi::h64d1a9519a37598f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..u256$u20$as$u20$compiler_builtins..int..DInt$GT$::lo::hf80a8bbc438d7b7f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..i256$u20$as$u20$compiler_builtins..int..DInt$GT$::lo::h0157f10e1a4b82da from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..u256$u20$as$u20$compiler_builtins..int..DInt$GT$::hi::h05dd8435d53caf88 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..i256$u20$as$u20$compiler_builtins..int..DInt$GT$::hi::h062e1155133f5903 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..u256$u20$as$u20$core..ops..bit..Shl$LT$u32$GT$$GT$::shl::hb08730161426fe78 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol _$LT$compiler_builtins..int..big..i256$u20$as$u20$core..ops..bit..Shl$LT$u32$GT$$GT$::shl::h24f7cca85d36422b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.010.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__muldi3::h9388aa5b3fcf0783 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__multi3::h579153bf3e6f124b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__mulosi4::h9636103c7c6348ff from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__mulodi4::h9cacacddc1486f8d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__muloti4::he8e35cdf324ce078 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__rust_i128_mulo::h87827ac1396a81ad from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::mul::__rust_u128_mulo::h4a7e84313bf304e8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.009.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divmodsi4::h72e452761fe73eba from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divsi3::h2ecacd65598485db from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__modsi3::h5299e43f084e2381 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divmoddi4::hdcf1d0abd8521103 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divdi3::h924233dae78e4d54 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__moddi3::h40e513a9c2a6fdc3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divmodti4::ha9ba81dd5e0261fa from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__divti3::hf2e722d7dcb42656 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::sdiv::__modti3::h511b4d7d71d80d13 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.011.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivsi3::h68e1d86e81a9dac2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__umodsi3::hbeeca1042f67b338 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivmodsi4::hd1d025dcb03377ad from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivdi3::he06cc23b48c3ca2a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__umoddi3::hafe736db23b90a7a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivmoddi4::hae5cb4b0cff1953a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivti3::hca300f31bcb7a76e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__umodti3::hbc72bbe3d39aae0d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::udiv::__udivmodti4::h3dc102b5307efb36 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.019.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::bswap::__bswapsi2::h91ba4a37bc88652f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.023.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::bswap::__bswapdi2::h6369116b0c346022 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.023.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::bswap::__bswapti2::hd6843e42a78f949e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.023.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashlsi3::hf164636cbc627909 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashldi3::h1b301580c8231ff0 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashlti3::hfc2b070ae96641ce from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashrsi3::hd733e6decd1c4e97 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashrdi3::hc44712a65b4f329f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__ashrti3::heb8174477cb3dc8b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__lshrsi3::h9f740642b4d5bc56 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__lshrdi3::had2650462c3ff2cb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::shift::__lshrti3::hcbcc94de4697549b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.012.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_u128_add::h9a40752b32b733b3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_i128_add::hdeed2c54a45adf7f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_i128_addo::he5c0e66e2e009b04 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_u128_addo::hb1184983d4db78c5 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_u128_sub::h57264800fa98da1d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_i128_sub::h623abbf8ba98ae57 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_i128_subo::h8997baf32f7dc5a6 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::int::addsub::__rust_u128_subo::h3e464d7f742a6489 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.016.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::memcpy::h757c860cc968447c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::memmove::hbceab73544acdb8a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::memset::hcdd15630fe83c2bf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::memcmp::h72d419f06f03fe2f from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::bcmp::h2300b1aa17db9120 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::strlen::h45a052b3aa51c49a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memcpy_element_unordered_atomic_1::h6ade8ffebafec54a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memcpy_element_unordered_atomic_2::heb4177b2eb00e3f0 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memcpy_element_unordered_atomic_4::h2e1952e4e58f3631 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memcpy_element_unordered_atomic_8::h01d2302ce95689ec from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memcpy_element_unordered_atomic_16::h4da11e56f871aaa0 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memmove_element_unordered_atomic_1::hb94a82d8b6a80932 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memmove_element_unordered_atomic_2::hd0d238a552a620e7 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memmove_element_unordered_atomic_4::h6c900f3b3e790556 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memmove_element_unordered_atomic_8::habf129a693fbad80 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memmove_element_unordered_atomic_16::h319b272aded4200c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memset_element_unordered_atomic_1::h6082f5a87bb99275 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memset_element_unordered_atomic_2::hded1b33ed8b39bd6 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memset_element_unordered_atomic_4::hebefb9337cf93099 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memset_element_unordered_atomic_8::h80ff7cd7a0670b15 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::mem::__llvm_memset_element_unordered_atomic_16::h369778d69ba3b788 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.005.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::add::__addsf3::h9283eff9777dd7e7 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.002.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::add::__adddf3::hf717206684c830bb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.002.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::add::__addtf3::h1c3a203099887bed from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.002.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__gtsf2::haf9876f7ba05c35c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__gesf2::hb365b7987b7f1072 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__unordsf2::h556e96d921654886 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__nesf2::h305bf579fcd6f734 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__ltsf2::h2798d4f77e18b44b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__lesf2::h635e53a2d3d61860 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__eqsf2::h4474588e353b28fe from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__gtdf2::he23e7b58f8a0dc32 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__gedf2::hf7dafc6b5d0339b1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__unorddf2::hd2fd37118341391e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__nedf2::h3cc2bbc2f19291f6 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__ltdf2::h50611cd533b5410e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__ledf2::hff03c55a137f5a5e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__eqdf2::ha4d5315ac1417e5e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__gttf2::hfdd99d826d80d8d1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__getf2::h98b16d228b4ae5a5 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__unordtf2::h965942c416828381 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__netf2::h3ff8a22d8f7fd0eb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__lttf2::hd956ba6775cb5084 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__letf2::h67e6470a0ad32795 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::cmp::__eqtf2::he9c518230b312be5 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.007.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::div::__divsf3::h0dde6d4d877e9e03 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.001.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::div::__divdf3::h4a0969e8a68d0c03 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.001.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::div::__divtf3::hc04e678dd28d1758 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.001.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::mul::__mulsf3::h338dfee8d8f768c3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.004.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::mul::__muldf3::h56f3a869f21dd4a8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.004.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::mul::__multf3::hefe8e62633f5538d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.004.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::pow::__powisf2::h3dd9cc257289b4db from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.018.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::pow::__powidf2::hff5efbe8ff73c268 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.018.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::pow::__powitf2::h0f63ccad67887b37 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.018.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::sub::__subsf3::h6c6c4281543e703e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.022.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::sub::__subdf3::he127a8f6e6d2896b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.022.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::sub::__subtf3::hafa41988014cd7e8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.022.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatunsisf::he6d09fa83e4ff915 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatunsidf::h8430f388cefa33a4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatundisf::h70c883293448ed72 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatundidf::h5a95f69755343951 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatuntisf::h3ba5b0ba4315a3e4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatuntidf::h3467c661be41adfb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatsisf::h338f4300f707139a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatsidf::h8ea3f39bb06c260c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatdisf::h40183b30d555f6fa from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floatdidf::hdf931b518176b419 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floattisf::he1dac8c4094c4545 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__floattidf::hfea6e28d3ebcf479 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunssfsi::h5d07760dc64c9be9 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunssfdi::h8d4ba4e56d7df581 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunssfti::h7acd3a63534e82e4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunsdfsi::hadaea24ed56c1db0 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunsdfdi::hc2c7a7535a223b0c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunsdfti::h0e5b6be9ca384129 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunstfsi::ha7cace76e77dfb07 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunstfdi::h097db73eb90d6a11 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixunstfti::h9fd4ea4297c9ce09 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixsfsi::hf932d8238949988a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixsfdi::h81cde78640ccf570 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixsfti::hacb8740ce359150b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixdfsi::h6701028c2ca07ec9 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixdfdi::hf233b68219594c19 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixdfti::hb2aa241bdc0310fd from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixtfsi::hf1e7d346265cc52e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixtfdi::h8d9711991547d5e8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::conv::__fixtfti::hf755f4cfddd498c1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.000.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__truncdfsf2::h4a7ad8fc7aca8cdb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__gnu_f2h_ieee::h24ca228b270b6635 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__truncsfhf2::h0a1f8e4579acdf9d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__truncdfhf2::h1fcb93131cf65528 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__trunctfhf2::h8fda3c8f6cec67aa from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__trunctfsf2::h42e59a80f4f82141 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::trunc::__trunctfdf2::h36963249d2855032 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.003.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__extendsfdf2::h66fc3b38e221ff9c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__gnu_h2f_ieee::hcc5d91e051f4f59c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__extendhfsf2::h8715e63fe2e9ef5a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__extendhftf2::h057f6f0edb916186 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__extendsftf2::ha840159ae8d5ad1a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol compiler_builtins::float::extend::__extenddftf2::hb7f6284f680dc0be from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.008.rcgu.o)
       ld: cannot export hidden symbol _$LT$u8$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h6ccf70fe51771027 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u8$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::hd62048d0729fd56c from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i8$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::hdf1fed59a813c7fb from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u8$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h460287d1c9af1677 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i8$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::hcdfcb4eafdb378c5 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i8$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h2badf884d6596eec from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u16$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::hf17bc404f80b7104 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u16$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h739348304334e409 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i16$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::hc899e521dbe5a520 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u16$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h9ebbee34aea41d1a from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i16$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h3e47f6a04293a92e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i16$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::haf9a5b8b5abec5a3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u32$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h4bd7a73fa12a7e8e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u32$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::he6ba97cfe555f101 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i32$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h681ea0add8ec2d2b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u32$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::hb378bf76a6de3880 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i32$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h6f6d07ce4dbd9cac from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i32$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::he4e22c56489351a1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$usize$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h853c73014cecd35b from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u64$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h09205af4b4b63a78 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$usize$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h692b9a5224398309 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$isize$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h3d823b6e3d13a402 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u64$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h57bf0ac49d769830 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i64$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h3a2d12fd1df7650e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$usize$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::he2d59ca583fe5c55 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$isize$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::ha9e54e13b0a8fb0e from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u64$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h27431c4d18bdf452 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i64$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h6c25e0846b566ec3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$isize$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h72f64cba3f6066fc from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i64$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h0bd6976a2c2e2e03 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u128$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::h1da94c9d570f1778 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u128$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h32c64a55c04ba058 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i128$u20$as$u20$compiler_builtins..int..Int$GT$::rotate_left::h57458eff8434d065 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$u128$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h07e401916445d511 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i128$u20$as$u20$compiler_builtins..int..Int$GT$::leading_zeros::h1e31ff574a2864b4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$i128$u20$as$u20$compiler_builtins..int..Int$GT$::ilog2::hb1915cf7fced7d5d from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.013.rcgu.o)
       ld: cannot export hidden symbol _$LT$f16$u20$as$u20$compiler_builtins..float..Float$GT$::normalize::h4d1ce84993884e49 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.020.rcgu.o)
       ld: cannot export hidden symbol _$LT$f32$u20$as$u20$compiler_builtins..float..Float$GT$::normalize::hd422d361aedec339 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.020.rcgu.o)
       ld: cannot export hidden symbol _$LT$f64$u20$as$u20$compiler_builtins..float..Float$GT$::normalize::h7c9f411143b88482 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.020.rcgu.o)
       ld: cannot export hidden symbol _$LT$f128$u20$as$u20$compiler_builtins..float..Float$GT$::normalize::h3be202f1650b5a65 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.020.rcgu.o)
       ld: cannot export hidden symbol ___adddf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.044.rcgu.o)
       ld: cannot export hidden symbol ___addsf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.101.rcgu.o)
       ld: cannot export hidden symbol ___addtf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.063.rcgu.o)
       ld: cannot export hidden symbol ___ashldi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.026.rcgu.o)
       ld: cannot export hidden symbol ___ashlsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.116.rcgu.o)
       ld: cannot export hidden symbol ___ashlti3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.036.rcgu.o)
       ld: cannot export hidden symbol ___ashrdi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.028.rcgu.o)
       ld: cannot export hidden symbol ___ashrsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.118.rcgu.o)
       ld: cannot export hidden symbol ___ashrti3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.092.rcgu.o)
       ld: cannot export hidden symbol ___bswapdi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.160.rcgu.o)
       ld: cannot export hidden symbol ___bswapsi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.027.rcgu.o)
       ld: cannot export hidden symbol ___bswapti2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.090.rcgu.o)
       ld: cannot export hidden symbol ___clzdi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.045.rcgu.o)
       ld: cannot export hidden symbol ___clzsi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.064.rcgu.o)
       ld: cannot export hidden symbol ___ctzdi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.164.rcgu.o)
       ld: cannot export hidden symbol ___ctzsi2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.130.rcgu.o)
       ld: cannot export hidden symbol ___ctzti2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.139.rcgu.o)
       ld: cannot export hidden symbol ___divdf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.124.rcgu.o)
       ld: cannot export hidden symbol ___divdi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.040.rcgu.o)
       ld: cannot export hidden symbol ___divmoddi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.068.rcgu.o)
       ld: cannot export hidden symbol ___divmodsi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.119.rcgu.o)
       ld: cannot export hidden symbol ___divmodti4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.165.rcgu.o)
       ld: cannot export hidden symbol ___divsf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.095.rcgu.o)
       ld: cannot export hidden symbol ___divsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.112.rcgu.o)
       ld: cannot export hidden symbol ___divtf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.142.rcgu.o)
       ld: cannot export hidden symbol ___eqdf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.041.rcgu.o)
       ld: cannot export hidden symbol ___eqsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.056.rcgu.o)
       ld: cannot export hidden symbol ___eqtf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.121.rcgu.o)
       ld: cannot export hidden symbol ___extenddftf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.032.rcgu.o)
       ld: cannot export hidden symbol ___extendhftf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.038.rcgu.o)
       ld: cannot export hidden symbol ___extendsfdf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.147.rcgu.o)
       ld: cannot export hidden symbol ___extendsftf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.077.rcgu.o)
       ld: cannot export hidden symbol ___fixdfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.050.rcgu.o)
       ld: cannot export hidden symbol ___fixdfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.052.rcgu.o)
       ld: cannot export hidden symbol ___fixsfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.071.rcgu.o)
       ld: cannot export hidden symbol ___fixsfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.088.rcgu.o)
       ld: cannot export hidden symbol ___fixtfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.083.rcgu.o)
       ld: cannot export hidden symbol ___fixtfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.136.rcgu.o)
       ld: cannot export hidden symbol ___fixtfti from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.150.rcgu.o)
       ld: cannot export hidden symbol ___fixunsdfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.079.rcgu.o)
       ld: cannot export hidden symbol ___fixunsdfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.133.rcgu.o)
       ld: cannot export hidden symbol ___fixunssfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.060.rcgu.o)
       ld: cannot export hidden symbol ___fixunssfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.102.rcgu.o)
       ld: cannot export hidden symbol ___fixunstfdi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.126.rcgu.o)
       ld: cannot export hidden symbol ___fixunstfsi from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.047.rcgu.o)
       ld: cannot export hidden symbol ___fixunstfti from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.108.rcgu.o)
       ld: cannot export hidden symbol ___floatdidf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.128.rcgu.o)
       ld: cannot export hidden symbol ___floatdisf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.048.rcgu.o)
       ld: cannot export hidden symbol ___floatsidf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.024.rcgu.o)
       ld: cannot export hidden symbol ___floatsisf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.104.rcgu.o)
       ld: cannot export hidden symbol ___floatundidf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.029.rcgu.o)
       ld: cannot export hidden symbol ___floatundisf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.043.rcgu.o)
       ld: cannot export hidden symbol ___floatunsidf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.152.rcgu.o)
       ld: cannot export hidden symbol ___floatunsisf from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.097.rcgu.o)
       ld: cannot export hidden symbol ___gedf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.131.rcgu.o)
       ld: cannot export hidden symbol ___gesf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.168.rcgu.o)
       ld: cannot export hidden symbol ___getf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.062.rcgu.o)
       ld: cannot export hidden symbol ___gtdf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.141.rcgu.o)
       ld: cannot export hidden symbol ___gtsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.034.rcgu.o)
       ld: cannot export hidden symbol ___gttf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.070.rcgu.o)
       ld: cannot export hidden symbol ___ledf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.073.rcgu.o)
       ld: cannot export hidden symbol ___lesf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.155.rcgu.o)
       ld: cannot export hidden symbol ___letf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.132.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memcpy_element_unordered_atomic_1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.033.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memcpy_element_unordered_atomic_16 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.054.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memcpy_element_unordered_atomic_2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.111.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memcpy_element_unordered_atomic_4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.069.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memcpy_element_unordered_atomic_8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.115.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memmove_element_unordered_atomic_1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.114.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memmove_element_unordered_atomic_16 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.099.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memmove_element_unordered_atomic_2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.161.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memmove_element_unordered_atomic_4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.057.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memmove_element_unordered_atomic_8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.163.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memset_element_unordered_atomic_1 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.122.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memset_element_unordered_atomic_16 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.061.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memset_element_unordered_atomic_2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.149.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memset_element_unordered_atomic_4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.049.rcgu.o)
       ld: cannot export hidden symbol ___llvm_memset_element_unordered_atomic_8 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.051.rcgu.o)
       ld: cannot export hidden symbol ___lshrdi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.082.rcgu.o)
       ld: cannot export hidden symbol ___lshrsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.105.rcgu.o)
       ld: cannot export hidden symbol ___lshrti3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.135.rcgu.o)
       ld: cannot export hidden symbol ___ltdf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.055.rcgu.o)
       ld: cannot export hidden symbol ___ltsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.074.rcgu.o)
       ld: cannot export hidden symbol ___lttf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.025.rcgu.o)
       ld: cannot export hidden symbol ___moddi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.075.rcgu.o)
       ld: cannot export hidden symbol ___modsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.093.rcgu.o)
       ld: cannot export hidden symbol ___muldf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.085.rcgu.o)
       ld: cannot export hidden symbol ___muldi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.030.rcgu.o)
       ld: cannot export hidden symbol ___mulodi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.123.rcgu.o)
       ld: cannot export hidden symbol ___mulosi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.031.rcgu.o)
       ld: cannot export hidden symbol ___muloti4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.143.rcgu.o)
       ld: cannot export hidden symbol ___mulsf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.098.rcgu.o)
       ld: cannot export hidden symbol ___multf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.109.rcgu.o)
       ld: cannot export hidden symbol ___multi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.035.rcgu.o)
       ld: cannot export hidden symbol ___nedf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.162.rcgu.o)
       ld: cannot export hidden symbol ___nesf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.148.rcgu.o)
       ld: cannot export hidden symbol ___netf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.117.rcgu.o)
       ld: cannot export hidden symbol ___powitf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.066.rcgu.o)
       ld: cannot export hidden symbol ___rust_i128_add from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.039.rcgu.o)
       ld: cannot export hidden symbol ___rust_i128_addo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.103.rcgu.o)
       ld: cannot export hidden symbol ___rust_i128_mulo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.089.rcgu.o)
       ld: cannot export hidden symbol ___rust_i128_sub from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.096.rcgu.o)
       ld: cannot export hidden symbol ___rust_i128_subo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.159.rcgu.o)
       ld: cannot export hidden symbol ___rust_u128_add from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.127.rcgu.o)
       ld: cannot export hidden symbol ___rust_u128_addo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.081.rcgu.o)
       ld: cannot export hidden symbol ___rust_u128_mulo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.087.rcgu.o)
       ld: cannot export hidden symbol ___rust_u128_sub from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.125.rcgu.o)
       ld: cannot export hidden symbol ___rust_u128_subo from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.058.rcgu.o)
       ld: cannot export hidden symbol ___subdf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.067.rcgu.o)
       ld: cannot export hidden symbol ___subsf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.144.rcgu.o)
       ld: cannot export hidden symbol ___subtf3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.146.rcgu.o)
       ld: cannot export hidden symbol ___truncdfsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.094.rcgu.o)
       ld: cannot export hidden symbol ___trunctfdf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.042.rcgu.o)
       ld: cannot export hidden symbol ___trunctfhf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.137.rcgu.o)
       ld: cannot export hidden symbol ___trunctfsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.153.rcgu.o)
       ld: cannot export hidden symbol ___udivdi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.145.rcgu.o)
       ld: cannot export hidden symbol ___udivmoddi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.080.rcgu.o)
       ld: cannot export hidden symbol ___udivmodsi4 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.154.rcgu.o)
       ld: cannot export hidden symbol ___udivsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.106.rcgu.o)
       ld: cannot export hidden symbol ___umoddi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.120.rcgu.o)
       ld: cannot export hidden symbol ___umodsi3 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.151.rcgu.o)
       ld: cannot export hidden symbol ___unorddf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.113.rcgu.o)
       ld: cannot export hidden symbol ___unordsf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.100.rcgu.o)
       ld: cannot export hidden symbol ___unordtf2 from /Users/runner/work/rust/rust/build/aarch64-apple-darwin/stage1-std/aarch64-apple-darwin/release/deps/libcompiler_builtins-e9eaf50d9cc32a34.rlib(compiler_builtins-e9eaf50d9cc32a34.compiler_builtins.965b27f36f12d2e6-cgu.156.rcgu.o)
  = note: `-D linker-messages` implied by `-D warnings`
  = help: to override `-D warnings` add `#[allow(linker_messages)]`

error: could not compile `std` (lib) due to 1 previous error

bors added a commit to rust-lang-ci/rust that referenced this pull request Oct 28, 2024
fix various linker warnings

separated out from rust-lang#119286; this doesn't have anything user-facing, i just want to land these changes so i can stop rebasing them.

r? `@bjorn3`
@bors
Copy link
Contributor

bors commented Oct 29, 2024

☔ The latest upstream changes (presumably #132317) made this pull request unmergeable. Please resolve the merge conflicts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-compiletest Area: The compiletest test runner A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) A-run-make Area: port run-make Makefiles to rmake.rs A-testsuite Area: The testsuite used to check the correctness of rustc A-translation Area: Translation infrastructure, and migrating existing diagnostics to SessionDiagnostic O-apple Operating system: Apple (macOS, iOS, tvOS, visionOS, watchOS) S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue.
Projects
None yet