Merge pull request #69183 from matthewbauer/fix-avr-limits-h
gcc: fix mising avr limits.h
This commit is contained in:
commit
fd3d64baa0
@ -186,7 +186,12 @@ stdenv.mkDerivation ({
|
|||||||
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
||||||
''
|
''
|
||||||
)
|
)
|
||||||
else "");
|
else "")
|
||||||
|
+ stdenv.lib.optionalString targetPlatform.isAvr ''
|
||||||
|
makeFlagsArray+=(
|
||||||
|
'LIMITS_H_TEST=false'
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
inherit noSysDirs staticCompiler crossStageStatic
|
inherit noSysDirs staticCompiler crossStageStatic
|
||||||
libcCross crossMingw;
|
libcCross crossMingw;
|
||||||
|
@ -185,7 +185,12 @@ stdenv.mkDerivation ({
|
|||||||
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
||||||
''
|
''
|
||||||
)
|
)
|
||||||
else "");
|
else "")
|
||||||
|
+ stdenv.lib.optionalString targetPlatform.isAvr ''
|
||||||
|
makeFlagsArray+=(
|
||||||
|
'LIMITS_H_TEST=false'
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
inherit noSysDirs staticCompiler crossStageStatic
|
inherit noSysDirs staticCompiler crossStageStatic
|
||||||
libcCross crossMingw;
|
libcCross crossMingw;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user