Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge #63928: llvm_7,8: disable libpfm on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jun 30, 2019
2 parents 1474220 + 7d62e4b commit 74d2452
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pkgs/development/compilers/llvm/7/llvm.nix
Expand Up @@ -15,7 +15,9 @@
, debugVersion ? false
, enableManpages ? false
, enableSharedLibraries ? true
, enablePFM ? !stdenv.isDarwin
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
)
, enablePolly ? false
}:

Expand Down
4 changes: 3 additions & 1 deletion pkgs/development/compilers/llvm/8/llvm.nix
Expand Up @@ -14,7 +14,9 @@
, debugVersion ? false
, enableManpages ? false
, enableSharedLibraries ? true
, enablePFM ? !stdenv.isDarwin
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
)
, enablePolly ? false
}:

Expand Down

0 comments on commit 74d2452

Please sign in to comment.