Re: [Mingw-w64-public] [PATCH] crt/libsrc: Include mfmediaengine.h in mfuuid library

2024-05-07 Thread LIU Hao
在 2024-05-07 12:57, Biswapriyo Nath 写道: From 412c6ec862060e834145dcaa2ccbc6c9a21a1ccb Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Tue, 7 May 2024 04:34:48 + Subject: [PATCH] crt/libsrc: Include mfmediaengine.h in mfuuid library Partially fixeshttps://github.com/msys2/MINGW-packages

Re: [Mingw-w64-public] Strange affect of "-std=c99" on 32-bit gcc

2024-05-07 Thread LIU Hao
在 2024-05-07 19:05, sisyphus 写道: Although I often test 32-bit gcc on Windows, I don't actually rely on those compilers - so I don't personally need a fix. I just wanted to mention this issue in case it's in the "public interest". It looks like this is caused by `-fexcess-precision=standard`, as

[Mingw-w64-public] Strange affect of "-std=c99" on 32-bit gcc

2024-05-07 Thread sisyphus
Hi, Demo program: /*** DBL_MAX.c ***/ #include #define MY_DBL_MAX 0x1.fp+1023 int main(void) { if(MY_DBL_MAX == 1.7976931348623157e+308) printf("OK1\n"); else printf("%a\n%a\n", MY_DBL_MAX, 1.7976931348623157e+308); return 0; } /