Skip to content

Commit

Permalink
remill: mark broken on aarch64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinafyi committed Nov 29, 2024
1 parent 0e21f14 commit b05e05d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion llvm-translator/remill.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ stdenv.mkDerivation (self:
sleigh = sleigh' self;

nativeBuildInputs = [ cmake ];
buildInputs = [ self.sleigh llvm xed glog gtest abseil-cpp glibc_multi ];
buildInputs = [ self.sleigh llvm glog gtest abseil-cpp xed glibc_multi ];

outputs = [ "out" "dev" "lib" ];

Expand Down Expand Up @@ -140,4 +140,12 @@ stdenv.mkDerivation (self:

hardeningDisable = [ "zerocallusedregs" ];

meta = with lib; {
description = "Library for lifting machine code to LLVM bitcode";
homepage = "https://github.com/lifting-bits/remill";
license = licenses.asl20;
maintainers = with maintainers; [ katrinafyi ];
broken = stdenv.isAarch64; # XXX: problems with xed (fixable) and libcxx (unsolved)
};

})

0 comments on commit b05e05d

Please sign in to comment.