lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

llvmPackages_16.mlir: init

The Nixpkgs release code generates a list of attributes on
x86_64-linux, then tries to evaluate them on all platforms. This
meant that Darwin evals broke when llvmPackages was bumped to 17 on
Linux, because the list of attributes is evaluated for Linux, finds an
llvmPackages.mlir attribute, then gets an evaluation error when it
tries to evalute that on Darwin. The easiest fix is to just make sure
an llvmPackages.mlir attribute exists on Darwin too.

+5
+4
pkgs/development/compilers/llvm/16/default.nix
··· 149 149 inherit llvm_meta; 150 150 }; 151 151 152 + mlir = callPackage ../common/mlir { 153 + inherit llvm_meta; 154 + }; 155 + 152 156 lldb = callPackage ../common/lldb.nix { 153 157 src = callPackage ({ runCommand }: runCommand "lldb-src-${version}" {} '' 154 158 mkdir -p "$out"
+1
pkgs/top-level/all-packages.nix
··· 16530 16530 llvm_16 = llvmPackages_16.llvm; 16531 16531 llvm_17 = llvmPackages_17.llvm; 16532 16532 16533 + mlir_16 = llvmPackages_16.mlir; 16533 16534 mlir_17 = llvmPackages_17.mlir; 16534 16535 16535 16536 libllvm = llvmPackages.libllvm;