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
[dependencies]
rusqlite = { version = "*", features = ["bundled"] }
zstd = { version = "*", default-features = false }
(my Cargo.lock if you want to reproduce perfectly)
cargo build
Expected result
Build completes in finite time.
Actual result
The build hangs in the following state:
> cargo build
Updating crates.io index
Compiling log v0.4.8
Compiling getrandom v0.1.12
Compiling jobserver v0.1.17
Compiling cc v1.0.42
Compiling zstd-sys v1.4.13+zstd.1.4.3
Compiling libsqlite3-sys v0.16.0
Building [============================================> ] 32/40: zstd-sys(build), libsqlite3-sys(bu...
The process tree looks like this:
These two build-script-build.exe don't use CPU and don't make any progress.
I think this is related to cc 1.0.42 because first, if I pin cc to 1.0.41, it builds successfully, and second, because there was this change: 4fda8db .
To reproduce
cargo new --bin сс_jobserver
cd cc_jobserver
Cargo.toml
, put the following:Cargo.lock
if you want to reproduce perfectly)cargo build
Expected result
Build completes in finite time.
Actual result
The build hangs in the following state:
The process tree looks like this:

These two
build-script-build.exe
don't use CPU and don't make any progress.I think this is related to
cc 1.0.42
because first, if I pincc
to1.0.41
, it builds successfully, and second, because there was this change: 4fda8db .Version info:
I observe this problem on a machine with 2 cores.
The text was updated successfully, but these errors were encountered: