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: 50debdf13375
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: cadb6ca5f663
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 29, 2018

  1. gcc-4.8: fixup cross compilation after merging #15867

    Taken from https://pastebin.com/my8gcybx given to me on IRC.
    John Q Crosscompiler authored and Ericson2314 committed Dec 29, 2018
    Copy the full SHA
    e2279f8 View commit details

Commits on Jan 4, 2019

  1. Merge pull request #53028 from Ericson2314/old-gcc-fix

    gcc-4.8: fixup cross compilation after merging #15867 for 18.09
    matthewbauer authored Jan 4, 2019
    Copy the full SHA
    cadb6ca View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/development/compilers/gcc/4.8/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/compilers/gcc/4.8/default.nix
Original file line number Diff line number Diff line change
@@ -362,7 +362,7 @@ stdenv.mkDerivation ({
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
([
"-idirafter ${libcCross.dev}/include"
"-idirafter ${getDev libcCross}/include"
] ++ optionals (! crossStageStatic) [
"-B${libcCross.out}/lib"
]);