Skip to content

Commit

Permalink
llvmPackages_git: apply NixOS#205355 (disable libpfm on non-Linux)
Browse files Browse the repository at this point in the history
this was applied to `llvmPackages_15` in 81ef82a
(though I appear to have forgotten to mention it in the commit message...)
  • Loading branch information
rrbutani committed Apr 3, 2023
1 parent e835abc commit 75fed51
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 75fed51

Please sign in to comment.