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
I wanted to share my experience in trying to improve rust-bitcoin crate build times.
I noticed secp256k1-sys native build script was taking a significant amount of time
And I noticed cc wasn't using the parallel feature, so I enabled it. This successfully shaved a second from secp256k1-sys build time, however, the overall build time is worst because now cc has now to wait libc to start building.
I wonder if it's possible for jobserver to avoid to depend on libc
The text was updated successfully, but these errors were encountered:
Though it's possible for cc to vendor jobserver since it only uses a subset of its API and already vendored windows-sys APIs and have function for making anonymous pipe on Unix and Windows.
I wanted to share my experience in trying to improve
rust-bitcoin
crate build times.I noticed
secp256k1-sys
native build script was taking a significant amount of timeAnd I noticed
cc
wasn't using theparallel
feature, so I enabled it. This successfully shaved a second fromsecp256k1-sys
build time, however, the overall build time is worst because nowcc
has now to waitlibc
to start building.I wonder if it's possible for jobserver to avoid to depend on
libc
The text was updated successfully, but these errors were encountered: