tsgates / rust.ko

A minimal Linux kernel module written in rust.
896 stars 66 forks source link

Update for nightly rust and remove fixup #11

Closed cuviper closed 9 years ago

cuviper commented 9 years ago

This is extending #10 for even newer rust. The module needed a few more tweaks for features used and macro exports. I also found codegen options which create the right relocations directly, so fixup.rs is no longer needed.

KennethAdamMiller commented 9 years ago

Need this extra line in main.rs now due to changes:

![feature(core_str_ext)]

cuviper commented 9 years ago

Added, thanks!