-
Notifications
You must be signed in to change notification settings - Fork 51
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
fleet
builds slower than cargo
#21
Labels
bug
Something isn't working
Comments
Hey @buf1024, a few questions,
|
suptejas
changed the title
most of time is SLOWER than cargo
Apr 24, 2022
fleet
builds slower than cargo
Seconded - Same on my project
[build]
rustc-wrapper = '/home/arthur/.cargo/bin/sccache'
[target.x86_64-unknown-linux-gnu]
rustflags = [
'-Clink-arg=-fuse-ld=lld',
'-Zshare-generics=y',
]
linker = '/usr/bin/clang'
[target.x86_64-pc-windows-msvc]
rustflags = ['-Zshare-generics=y']
linker = 'rust-lld.exe'
[target.x86_64-apple-darwin]
rustflags = [
'-C',
'link-arg=-fuse-ld=/usr/local/bin/zld',
'-Zshare-generics=y',
'-Csplit-debuginfo=unpacked',
]
[profile.dev]
opt-level = 0
debug = 2
incremental = true
codegen-units = 512
[profile.release]
opt-level = 3
debug = 0
incremental = false
codegen-units = 256
split-debuginfo = '...'
|
Appreciate the detailed response, we'll debug this ASAP. |
On the second run of using Fleet, I noticed a 4 second improvement, which isn't enough really for this to be used on a wider scale IMO. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
test project druid.
it's slower than cargo.
most of time after clean, cargo cause 38s the compile,
but fleet causes 45s, and sometimes more than 2min.
The text was updated successfully, but these errors were encountered: