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
base: e8896decedaa
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 673827fd319e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 26, 2020

  1. openmpi: use pkgsHostTarget for gfortran

    This is very confusing. “stdenv” is created from the parent stage so
    pkgsTargetTarget.stdenv.cc is a compiler that runs /on/ host platform
    and creates binaries for target platform. gfortran on the other hand
    is not special cased like stdenv, so the equivalent to
    pkgsTargetTarget.stdenv.cc is pkgsHostTarget.gfortran.
    
    I’ve rewritten this to be a little less confusing, “pkgsHostTarget” is
    equivalent to “pkgs” so it is unneeded. All that is left is
    “pkgsTargetTarget.stdenv” which is equivalent to
    “targetPackages.stdenv”.
    
    Fixes #88951
    
    /cc @markuskowa @Ericson2314
    matthewbauer committed May 26, 2020
    Copy the full SHA
    c60144d View commit details
    Browse the repository at this point in the history

Commits on May 27, 2020

  1. Merge pull request #88984 from matthewbauer/gfortran-no-pkgsTargetTarget

    openmpi: use pkgsHostTarget for gfortran
    matthewbauer committed May 27, 2020
    Copy the full SHA
    673827f View commit details
    Browse the repository at this point in the history