Lines Matching +full:gcc +full:- +full:4
5 <h4>It appears that this was a GCC bug that has been fixed in GCC 4.5.
6 If you hit this issue, please upgrade to GCC 4.5 and report to us, so we can update this page.</h4>
8 This is an issue that, so far, we met only with GCC on Windows: for instance, MinGW and TDM-GCC.
20 GCC assumes that the stack is already 16-byte-aligned so that the object \a q will be created at a …
22 … on Windows, where the stack is only guaranteed to have 4-byte alignment. Indeed, even though GCC …
35 …gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/Function-Attributes.html#Function-Attributes">this GCC docume…
40 …on is to edit your project so that when compiling with GCC on Windows, you pass this option to GCC:
42 -mincoming-stack-boundary=2
44 …GCC that the stack is only required to be aligned to 2^2=4 bytes, so that GCC now knows that it re…
46 Another global solution is to pass this option to gcc:
48 -mstackrealign