Preface
After installing rustup with eopkg and trying to compile a Rust project an error is thrown: linker 'cc' not found.
So I ran eopkg install gcc which caused a different error on compile: linking with 'cc' failed: cannot find 'ld'.
After some searching online I found the 'missing piece': sudo eopkg install -c system.devel.
Expected rustup to include the needed dependencies or am I missing something?