use gcc10 instead of gcc9

This commit is contained in:
luc65r 2020-06-07 21:29:56 +02:00 committed by Frederik Rietdijk
parent 2d9193f9f0
commit af802654b9

View File

@ -9145,10 +9145,9 @@ in
gccFun = callPackage (if (with stdenv.targetPlatform; isVc4 || libc == "relibc") gccFun = callPackage (if (with stdenv.targetPlatform; isVc4 || libc == "relibc")
then ../development/compilers/gcc/6 then ../development/compilers/gcc/6
else ../development/compilers/gcc/9); else ../development/compilers/gcc/10);
gcc = if (with stdenv.targetPlatform; isVc4 || libc == "relibc") gcc = if (with stdenv.targetPlatform; isVc4 || libc == "relibc")
then gcc6 else gcc9; then gcc6 else gcc10;
gcc-unwrapped = gcc.cc; gcc-unwrapped = gcc.cc;
gccStdenv = if stdenv.cc.isGNU then stdenv else stdenv.override { gccStdenv = if stdenv.cc.isGNU then stdenv else stdenv.override {