mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
gcc8: register to all-packages
This commit is contained in:
parent
659363fb40
commit
736dab4a68
|
@ -6243,6 +6243,17 @@ with pkgs;
|
|||
isl = if !stdenv.isDarwin then isl_0_17 else null;
|
||||
}));
|
||||
|
||||
gcc8 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/8 {
|
||||
inherit noSysDirs;
|
||||
|
||||
# PGO seems to speed up compilation by gcc by ~10%, see #445 discussion
|
||||
profiledCompiler = with stdenv; (!isDarwin && (isi686 || isx86_64));
|
||||
|
||||
libcCross = if targetPlatform != buildPlatform then libcCross else null;
|
||||
|
||||
isl = if !stdenv.isDarwin then isl_0_17 else null;
|
||||
}));
|
||||
|
||||
gcc-snapshot = lowPrio (wrapCC (callPackage ../development/compilers/gcc/snapshot {
|
||||
inherit noSysDirs;
|
||||
|
||||
|
|
Loading…
Reference in a new issue