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
Here some who loves to try rust-lang and wants to play with DHCP.
I do miss a makefile or another file that describes the build steps.
Currently I do get this.
stappers@trancilo:~/src/rust/dhcp4r$ rustc examples/monitor.rs
error[E0463]: can't find crate for `dhcp4r`
--> examples/monitor.rs:1:1
|
1 | extern crate dhcp4r;
| ^^^^^^^^^^^^^^^^^^^^ can't find crate
error: aborting due to previous error
For more information about this error, try `rustc --explain E0463`.
stappers@trancilo:~/src/rust/dhcp4r$ rustc --explain E0463
stappers@trancilo:~/src/rust/dhcp4r$ rustc --explain E0463 | cat -
A plugin/crate was declared but cannot be found. Erroneous code example:
` ` `
#![feature(plugin)]
#![plugin(cookie_monster)] // error: can't find crate for `cookie_monster`
extern crate cake_is_a_lie; // error: can't find crate for `cake_is_a_lie`
` ` `
You need to link your code to the relevant crate in order to be able to use it
(through Cargo or the `-L` option of rustc example). Plugins are crates as
well, and you link to them the same way.
stappers@trancilo:~/src/rust/dhcp4r$
Now I do hope that some provides build instructions.
The text was updated successfully, but these errors were encountered:
Hi,
Here some who loves to try rust-lang and wants to play with DHCP.
I do miss a makefile or another file that describes the build steps.
Currently I do get this.
Now I do hope that some provides build instructions.
The text was updated successfully, but these errors were encountered: