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

build: Fix CLI in Xcode Cloud by Disabling Link-time Optimizations #1855

Merged
merged 8 commits into from
Dec 5, 2023
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,5 @@ opt-level = "z"
panic = "abort"
strip = true # Strip symbols from the binary.
codegen-units = 1 # Parallel compilation prevents some optimizations.
lto = true # Enable Link-time optimizations to remove dead code.
# We do not enable link-time optimizations (lto) because they cause the
# CLI to timeout when run in Xcode Cloud.
Loading