Skip to content

Commit

Permalink
Merge pull request #222902 from rrbutani/fix/llvm-git-disable-libpfm
Browse files Browse the repository at this point in the history
llvmPackages_git: apply #205355 (disable libpfm on non-Linux)
  • Loading branch information
RaitoBezarius authored Apr 19, 2023
2 parents 89e4896 + 75fed51 commit 01a6895
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/compilers/llvm/git/llvm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
&& (stdenv.hostPlatform == stdenv.buildPlatform)
, enableManpages ? false
, enableSharedLibraries ? !stdenv.hostPlatform.isStatic
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|| stdenv.isAarch32 # broken for the armv7l builder
)
, enablePFM ? stdenv.isLinux /* PFM only supports Linux */
# broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
# broken for the armv7l builder
&& !stdenv.hostPlatform.isAarch
, enablePolly ? true
} @args:

Expand Down

0 comments on commit 01a6895

Please sign in to comment.