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

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 647761e80e7b
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed3895a98708
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 9, 2019

  1. Merge #63928: llvm_7: disable libpfm on aarch64

    (cherry picked from commit 74d2452)
    I've seen no (negative) feedback so far, and we do need something here:
    https://hydra.nixos.org/eval/1529346
    (There's no llvm_8 on this branch so far.)
    vcunat committed Jul 9, 2019
    Copy the full SHA
    ed3895a View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/development/compilers/llvm/7/llvm.nix
4 changes: 3 additions & 1 deletion pkgs/development/compilers/llvm/7/llvm.nix
Original file line number Diff line number Diff line change
@@ -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
}: