-
Notifications
You must be signed in to change notification settings - Fork 559
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 still takes a long time even with sccache #814
Comments
Ah I found the logging options in the readme, and with
|
It does. :( It's possible we could give I do like the graphs, though; what did you use to generate them? |
There's a proposed Rust feature that could make this better. |
You just run |
By the way, regarding the system linker, would it help if Rust used LLVM's LLD linker? |
I have a program that takes about 1 minute to build. With
sccache
it still takes around 40 seconds even if I don't change anything. Is that expected? Here is the timing report, clean and then cached. It does seem to cache a lot of things, but notserde-regex
, or two of my crates (file-loaders
andbackend
).I filtered out <1.5s crates in the first one and and <1s in the second.
Here are the stats after one cached build:
This is all in debug mode. Weirdly, in release mode
file_loaders
does get cached:How can I figure out why these crates aren't being cached? Is there some kind of log file?
The text was updated successfully, but these errors were encountered: