build: optimize the release profile (LTO, single codegen unit, strip) - #50
Merged
Conversation
Whole-program LTO and a single codegen unit produce a faster, smaller release binary — worthwhile for the oxia-perf benchmark tool — and strip drops debug symbols (the oxia-perf binary shrinks from 5.7M to 3.2M). Signed-off-by: Matteo Merli <mmerli@apache.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
[profile.release]to the workspace root that enables whole-program LTO, a single codegen unit, and symbol stripping.This produces a faster, smaller release binary — most relevant for the
oxia-perfbenchmark tool, where a debug/less-optimized build would skew throughput and latency numbers. Theoxia-perfbinary shrinks from 5.7 MB → 3.2 MB.Trade-off: release builds compile more slowly (whole-program LTO). Verified
cargo build --releasesucceeds and the binary runs.