-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think it's a bug of the I check the directory If I build with other feature first. The it won't pull the After that, I try other feature and the The solution is clean the |
Beta Was this translation helpful? Give feedback.
I think it's a bug of the
build.rs
of skia-bindings or skia-safe. It won't clean the registry for a fresh build after modified the features.I check the directory
~/.cargo/registry/src/index.crates.io-6f17d22bba15001f/skia-bindings-0.78.2/skia
.If I build with other feature first. The it won't pull the
DEPS
file.After that, I try other feature and the
build.rs
will start pull the skia with other options. But the skia directory is already there. So the new pull will be rename toskia-xxx
.The solution is clean the
.cargo/registry/../skia
manually.