Fixing the cross gcc building.
gcc 4.8 added libatomic, and it has to be disabled in case of gccCrossStageStatic, as it requires libc.
This commit is contained in:
parent
3d32e49058
commit
b194050ee1
|
@ -160,6 +160,7 @@ let version = "4.8.2";
|
|||
" --disable-libgomp " +
|
||||
" --disable-libquadmath" +
|
||||
" --disable-shared" +
|
||||
" --disable-libatomic " + # libatomic requires libc
|
||||
" --disable-decimal-float" # libdecnumber requires libc
|
||||
else
|
||||
(if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot"
|
||||
|
|
Loading…
Reference in New Issue