MacOS brew install rust incompatibility with fdev #885
Labels
A-developer-xp
Area: developer experience
A-os-integration
Area: OS integration
planned
This has been synced to PT for triage
It should be noted that developers using
brew install rust
will run into issues when usingfdev
.Here's how to replicate the problem:
$ brew install rust
$ curl https://sh.rustup.rs -sSf | sh
$ cargo install freenet fdev
$ rustup target add wasm32-unknown-unknown
$ cd <absolute path to identity-managent in freenet-core>
$ gmake build
The following is output from
gmake build
:brew_build_output.txt
This problem can be avoided by not using the homebrew version of rust. Here's how to get fdev working again:
$ brew remove rust
$ gmake build
Here's the new (correct) output from
gmake build
:The text was updated successfully, but these errors were encountered: