Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5ce11e68530a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e53c4e20d921
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on May 3, 2020

  1. Copy the full SHA
    00f35a4 View commit details
  2. llvm_10: disable libpfm on aarch32

    This is a speculative fix since the llvm_10 build runs OOM currently but it
    should also be affected.
    
    See parent commit for more info.
    Atemu committed May 3, 2020
    Copy the full SHA
    896e2f4 View commit details
  3. Copy the full SHA
    e53c4e2 View commit details
1 change: 1 addition & 0 deletions pkgs/development/compilers/llvm/10/llvm.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
, enableSharedLibraries ? true
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|| stdenv.isAarch32 # broken for the armv7l builder
)
, enablePolly ? true
}:
1 change: 1 addition & 0 deletions pkgs/development/compilers/llvm/7/llvm.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@
, enableSharedLibraries ? true
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|| stdenv.isAarch32 # broken for the armv7l builder
)
, enablePolly ? false
}:
1 change: 1 addition & 0 deletions pkgs/development/compilers/llvm/8/llvm.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
, enableSharedLibraries ? true
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|| stdenv.isAarch32 # broken for the armv7l builder
)
, enablePolly ? false
}:
1 change: 1 addition & 0 deletions pkgs/development/compilers/llvm/9/llvm.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
, enableSharedLibraries ? true
, enablePFM ? !(stdenv.isDarwin
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|| stdenv.isAarch32 # broken for the armv7l builder
)
, enablePolly ? false
}: