jonhoo / volley

Volley is a benchmarking tool for measuring the performance of server networking stacks.
MIT License
123 stars 12 forks source link

Rust compile error #25

Closed methane closed 9 years ago

methane commented 9 years ago

I use Rust 1.0. make fails on it.

rustc -O -o rust main.rs
main.rs:1:1: 1:17 error: unstable feature
main.rs:1 #![feature(tcp)]
          ^~~~~~~~~~~~~~~~
note: this feature may not be used in the stable release channel
error: aborting due to previous error
make[1]: *** [rust] Error 101
jonhoo commented 9 years ago

Yes, you must compile using an unstable version of Rust to use unstable features. Stable releases of rust refuse to compile unstable features even if they are supported.