Advertisement
Guest User

Untitled

a guest
May 15th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. diff --git a/pkgs/development/compilers/gcc/7/default.nix b/pkgs/development/compilers/gcc/7/default.nix
  2. index 54ac2c45d89..55951274322 100644
  3. --- a/pkgs/development/compilers/gcc/7/default.nix
  4. +++ b/pkgs/development/compilers/gcc/7/default.nix
  5. @@ -381,6 +381,7 @@ stdenv.mkDerivation ({
  6. "--with-gnu-as" "--without-gnu-ld"
  7. ]
  8. ++ optional (targetPlatform == hostPlatform && targetPlatform.libc == "musl") "--disable-libsanitizer"
  9. + ++ optional (targetPlatform.isAarch64) "--enable-fix-cortex-a53-843419"
  10. ;
  11.  
  12. targetConfig = if targetPlatform != hostPlatform then targetPlatform.config else null;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement