Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #308512 from sequencer/circt174

circt: 1.73 -> 1.74

authored by Nick Cao and committed by GitHub beb40906 998105a6

+5 -4
+1 -1
pkgs/development/compilers/circt/circt-llvm.nix
··· 23 "-DLLVM_BUILD_EXAMPLES=OFF" 24 "-DLLVM_OPTIMIZED_TABLEGEN=ON" 25 "-DLLVM_ENABLE_PROJECTS=mlir" 26 - "-DLLVM_TARGETS_TO_BUILD=" 27 28 # This option is needed to install llvm-config 29 "-DLLVM_INSTALL_UTILS=ON"
··· 23 "-DLLVM_BUILD_EXAMPLES=OFF" 24 "-DLLVM_OPTIMIZED_TABLEGEN=ON" 25 "-DLLVM_ENABLE_PROJECTS=mlir" 26 + "-DLLVM_TARGETS_TO_BUILD=Native" 27 28 # This option is needed to install llvm-config 29 "-DLLVM_INSTALL_UTILS=ON"
+4 -3
pkgs/development/compilers/circt/default.nix
··· 7 , fetchFromGitHub 8 , ninja 9 , lit 10 , gitUpdater 11 , callPackage 12 }: ··· 17 in 18 stdenv.mkDerivation rec { 19 pname = "circt"; 20 - version = "1.73.0"; 21 src = fetchFromGitHub { 22 owner = "llvm"; 23 repo = "circt"; 24 rev = "firtool-${version}"; 25 - hash = "sha256-C50PiToXrKf94Vg1yv++3xVhIuCW/KVPs0yLv5Fg0dY="; 26 fetchSubmodules = true; 27 }; 28 29 requiredSystemFeatures = [ "big-parallel" ]; 30 31 - nativeBuildInputs = [ cmake ninja git pythonEnv ]; 32 buildInputs = [ circt-llvm ]; 33 34 cmakeFlags = [
··· 7 , fetchFromGitHub 8 , ninja 9 , lit 10 + , z3 11 , gitUpdater 12 , callPackage 13 }: ··· 18 in 19 stdenv.mkDerivation rec { 20 pname = "circt"; 21 + version = "1.74.0"; 22 src = fetchFromGitHub { 23 owner = "llvm"; 24 repo = "circt"; 25 rev = "firtool-${version}"; 26 + hash = "sha256-RFvWUd98OiL2I3aFrP61LQRZr4FSKrrZ5YOblBKRCA4="; 27 fetchSubmodules = true; 28 }; 29 30 requiredSystemFeatures = [ "big-parallel" ]; 31 32 + nativeBuildInputs = [ cmake ninja git pythonEnv z3 ]; 33 buildInputs = [ circt-llvm ]; 34 35 cmakeFlags = [