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: 47d121591c96
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fab41ed0e622
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 21, 2020

  1. klibc: fix cross-compilation

    Tested pkgsCross.armv7l-hf-multiplatform.klibc
    danielfullmer committed Oct 21, 2020
    Copy the full SHA
    7c4b1b7 View commit details

Commits on Jan 17, 2021

  1. klibc: strictDeps = true

    symphorien authored Jan 17, 2021
    Copy the full SHA
    3cab73e View commit details
  2. Merge pull request #101233 from danielfullmer/cross-klibc

    klibc: fix cross-compilation
    symphorien authored Jan 17, 2021
    Copy the full SHA
    fab41ed View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/os-specific/linux/klibc/default.nix
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/klibc/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, linuxHeaders, perl }:
{ lib, stdenv, fetchurl, buildPackages, linuxHeaders, perl }:

let
commonMakeFlags = [
@@ -18,7 +18,9 @@ stdenv.mkDerivation rec {

patches = [ ./no-reinstall-kernel-headers.patch ];

depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ perl ];
strictDeps = true;

hardeningDisable = [ "format" "stackprotector" ];