在 2019/3/3 0:35, Ruslan Garipov 写道:
>>> Nifty :-) Actually I've believed that **declaration** of nested
>>> structures is just a declaration, and no code/data will be generated
>>> for that. But it turns out that I was wrong.
>>
>> This is an important difference between C and C++.
>
> I'm sorry
When building GCC for msvcrt120, there's a undefined reference to
ctime. It needs to be defined as a wrapper for msvcrt120 as well.
The if condition is slightly complex, but I do not know if I can
modify the if !defined(__CRT__NO_INLINE) || __MSVCRT_VERSION__ >= 0x1400
block instead: This would als
When bootstrapping GCC with msvcrt120 for 32 bit windows, the build
fails as _utime is missing. Define in the same way as for 64 bit systems.
Best regards,
Johannes
---
mingw-w64-headers/crt/sys/utime.h | 12 +++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/mingw-w64-he