You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
Currently the generated SDK files are not readonly.
If the programmer accidentally performs a write in one of these files—because they, for example, had FSD.rs open in their editor and saved the file with an unintentional change—then rustc compiles the entire SDK crate again. This recompilation can take a minute or longer, which is annoying compared to the seconds of an incremental compile of a clean SDK.
To prevent these accidental SDK recompiles, we should set the readonly flag on the generated files.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently the generated SDK files are not readonly.
If the programmer accidentally performs a write in one of these files—because they, for example, had
FSD.rs
open in their editor and saved the file with an unintentional change—thenrustc
compiles the entire SDK crate again. This recompilation can take a minute or longer, which is annoying compared to the seconds of an incremental compile of a clean SDK.To prevent these accidental SDK recompiles, we should set the readonly flag on the generated files.
The text was updated successfully, but these errors were encountered: