diff options
author | Julian Stecklina <julian.stecklina@cyberus-technology.de> | 2024-05-08 10:33:12 +0200 |
---|---|---|
committer | Julian Stecklina <julian.stecklina@cyberus-technology.de> | 2024-05-08 10:33:12 +0200 |
commit | 571ab9ff664c6dbcbe3b8c3f97a1ddf59affe737 (patch) | |
tree | 71db0c14226fab9b6d39111a21656a8b49b068e6 | |
parent | 2ff7f8b77c8cb9fca1901603869ae39dfecf505a (diff) |
doc: update README
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -28,6 +28,7 @@ working on the Linux 6.8 kernel preinstalled. predictable. - **Version-specific environments**: Tailored development environments for specific Linux kernel versions, starting with Linux 6.8. +- **Rust and LLVM-enabled**: Ready for the future of kernel development! ### Requirements @@ -44,6 +45,13 @@ demand): $ nix develop github:blitz/kernel-dev#linux_<major_version>_<minor_version> ``` +This will drop you in a shell with `clang` and `rustc` matching the +kernel version. If you need a `gcc`-based environment, use: + +```shell +$ nix develop github:blitz/kernel-dev#linux_<major_version>_<minor_version>_gcc +``` + If you don't find the exact version that you need, one that is close _might_ work as well. |