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: 9a32caa37659
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 32322da1a6ec
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 17, 2019

  1. openblas: fix config breakage introduced for configs using 'false'

    My earlier change mistakenly expected `toString false` to produce '0'
    instead of the empty string, leading to unexpected config changes.
    
    Intended to address issue mentioned here and in following discussion:
    
    #53972 (comment)
    
    Sorry, folks!
    
    (special-case handling of bools here makes this "cleanup" a bit
     less of an obvious win but hopefully still preferable overall :))
    
    -----------
    
    makeFlags in resulting derivation, according to this one-liner:
    
    $ nix show-derivation -f . openblas|jq ".[].env.makeFlags"
    
    before:
    "BINARY=64 CC=cc CROSS= DYNAMIC_ARCH=1 FC=gfortran HOSTCC=cc INTERFACE64=1 NO_BINARY_MODE= NO_STATIC=1 NUM_THREADS=64 PREFIX=/1rz4g4znpzjwh1xymhjpm42vipw92pr73vdgl6xs1hycac8kf2n9 TARGET=ATHLON USE_OPENMP=1"
    
    after:
    "BINARY=64 CC=cc CROSS=0 DYNAMIC_ARCH=1 FC=gfortran HOSTCC=cc INTERFACE64=1 NO_BINARY_MODE=0 NO_STATIC=1 NUM_THREADS=64 PREFIX=/1rz4g4znpzjwh1xymhjpm42vipw92pr73vdgl6xs1hycac8kf2n9 TARGET=ATHLON USE_OPENMP=1"
    
    Without knowing how `placeholder` works, it seems interesting if
    entirely unrelated that the `PREFIX` is same for both! :). TIL.
    dtzWill authored and FRidh committed Feb 17, 2019
    Copy the full SHA
    32322da View commit details
    Browse the repository at this point in the history