Skip to content

Commit

Permalink
Merge pull request #22468 from taktoa/souper
Browse files Browse the repository at this point in the history
souper: init at 2017-01-05
  • Loading branch information
pSub committed Feb 8, 2017
2 parents 01ca916 + ac72948 commit 39f2bf0
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pkgs/development/compilers/souper/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ stdenv, fetchFromGitHub, cmake, makeWrapper
, llvmPackages_39, hiredis, z3_opt, gtest
}:

let
klee = fetchFromGitHub {
owner = "klee";
repo = "klee";
rev = "a743d7072d9ccf11f96e3df45f25ad07da6ad9d6";
sha256 = "0qwzs029vlba8xz362n4b00hdm2z3lzhzmvix1r8kpbfrvs8vv91";
};
in stdenv.mkDerivation {
name = "souper-unstable-2017-01-05";

src = fetchFromGitHub {
owner = "google";
repo = "souper";
rev = "1be75fe6a96993b57dcba038798fe6d1c7d113eb";
sha256 = "0r8mjb88lwz9a3syx7gwsxlwfg0krffaml04ggaf3ad0cza2mvm8";
};

nativeBuildInputs = [
cmake
makeWrapper
];

buildInputs = [
llvmPackages_39.llvm
llvmPackages_39.clang-unwrapped
hiredis
gtest
];

enableParallelBuilding = true;

preConfigure = ''
mkdir -pv third_party
cp -R "${klee}" third_party/klee
'';

installPhase = ''
mkdir -pv $out/bin
cp -v ./souper $out/bin/
cp -v ./clang-souper $out/bin/
wrapProgram "$out/bin/souper" \
--add-flags "-z3-path=\"${z3_opt}/bin/z3\""
'';

meta = with stdenv.lib; {
description = "A superoptimizer for LLVM IR";
homepage = "https://github.com/google/souper";
license = licenses.asl20;
maintainers = with maintainers; [ taktoa ];
platforms = with platforms; linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3852,6 +3852,8 @@ with pkgs;

sonata = callPackage ../applications/audio/sonata { };

souper = callPackage ../development/compilers/souper { };

sparsehash = callPackage ../development/libraries/sparsehash { };

spiped = callPackage ../tools/networking/spiped { };
Expand Down

0 comments on commit 39f2bf0

Please sign in to comment.