1
0
Fork 0

switch to building with LLVM by default

This commit is contained in:
Pratham Patel 2024-04-16 20:03:39 +05:30
parent 7000188c1d
commit b9ceff2892
Signed by: thefossguy
SSH Key Fingerprint: SHA256:HwRBy9H1FYXWcv/Qi1WY3kmcVtGz2ydZuPJgD4pkusY
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@
in
{
devShells = forEachSupportedSystem ({ pkgs, commonInputs, llvmPkgs, llvmVersion, ... }: rec {
default = withGNU;
#default = withLLVM;
default = withLLVM;
#default = withGNU;
withLLVM = (pkgs.mkShell.override { stdenv = llvmPkgs.stdenv; }) {
inputsFrom = [ pkgs.linux_latest_with_llvm ];