forked from mirrors/nixpkgs
pkgsCross.avr.buildPackages.gcc{10,11}: avoid log limit on hydra
When upgrading from gcc 9 to 10, avr-gcc started to hit the hydra log limit, preventing the binary cache from being populated. This commit tries to workaround this issue by passing `-s` to make for avr-gcc 10 and 11 which seem to exhibit this problem. Reference #135605.
This commit is contained in:
parent
e0701ba2d6
commit
d01533ceab
|
@ -147,6 +147,7 @@ stdenv.mkDerivation ({
|
|||
else "")
|
||||
+ lib.optionalString targetPlatform.isAvr ''
|
||||
makeFlagsArray+=(
|
||||
'-s' # workaround for hitting hydra log limit
|
||||
'LIMITS_H_TEST=false'
|
||||
)
|
||||
'';
|
||||
|
|
|
@ -152,6 +152,7 @@ stdenv.mkDerivation ({
|
|||
else "")
|
||||
+ lib.optionalString targetPlatform.isAvr ''
|
||||
makeFlagsArray+=(
|
||||
'-s' # workaround for hitting hydra log limit
|
||||
'LIMITS_H_TEST=false'
|
||||
)
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue