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
This reduces the binary size by ~7 MB on Windows, but adds several seconds to each rebuild. Since there's currently just a single build configuration, adding this in a non-hacky way would require #128. Always enabling it increases iteration time (bad idea).
Also, at least the MSYS2 gcc defaults to using a single core when no argument is given (instead of defaulting to use the maximum), which means something like nproc has to be used to compute the maximum at configuration time.
The text was updated successfully, but these errors were encountered:
This reduces the binary size by ~7 MB on Windows, but adds several seconds to each rebuild. Since there's currently just a single build configuration, adding this in a non-hacky way would require #128. Always enabling it increases iteration time (bad idea).
Also, at least the MSYS2
gcc
defaults to using a single core when no argument is given (instead of defaulting to use the maximum), which means something likenproc
has to be used to compute the maximum at configuration time.The text was updated successfully, but these errors were encountered: