Updated the shell.nix file to use LLVM 13. Also changed the file to use with llvmPackages_13 as it should make it easier to bump versions.

Sage Hane 2021-10-04 10:31:06 +00:00
parent 9921ab4dc1
commit 9514175efc

@ -7,13 +7,14 @@ pkgs.mkShell {
buildInputs = with pkgs; [
cmake
gdb
clang_12
llvmPackages_12.clang-unwrapped
llvm_12
lld_12
ninja
qemu
];
] ++ (with llvmPackages_13; [
clang
clang-unwrapped
lld
llvm
]);
}
```
The `hardeningDisable` part is crucial otherwise you will get compile errors.