-
Notifications
You must be signed in to change notification settings - Fork 2
Enable full LTO in both workspaces #23
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -40,6 +40,10 @@ vsock = "0.5.1" | |||||||||
| ecies-encryption-lib = { git = "https://github.com/Cardinal-Cryptography/ecies-encryption-lib", tag = "v0.2.0" } | ||||||||||
|
|
||||||||||
| # below dependencies contains a rev which is also used in tee/nix/flake.nix, which is far from ideal since one needs to bump it there as well | ||||||||||
|
|
||||||||||
| shielder-circuits = { git = "https://github.com/Cardinal-Cryptography/blanksquare-monorepo", rev = "8d17e23ee807e2f1b40b31ffba27c1276afdb81f" } | ||||||||||
| type-conversions = { git = "https://github.com/Cardinal-Cryptography/blanksquare-monorepo", rev = "8d17e23ee807e2f1b40b31ffba27c1276afdb81f" } | ||||||||||
| powers-of-tau = { git = "https://github.com/Cardinal-Cryptography/blanksquare-monorepo", rev = "8d17e23ee807e2f1b40b31ffba27c1276afdb81f" } | ||||||||||
|
|
||||||||||
| #[profile.release] | ||||||||||
| lto = "fat" | ||||||||||
|
Comment on lines
+48
to
+49
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LTO not actually enabled: profile header is commented out.
Apply: -#[profile.release]
-lto = "fat"
+[profile.release]
+lto = "fat"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LTO not actually enabled at the workspace: header is commented; setting is ignored.
Same issue as in tee: Cargo ignores
ltooutside a[profile.*]table.Apply:
🤖 Prompt for AI Agents