Hi Jonathan,
On Tue, 13 Jul 2021, Jonathan Marler wrote:
The problem here appears to be the inclusion of
`__attribute__((__gnu_inline__))` which is what
tells the compiler NEVER to emit the function definition. Removing this
attribute allows the compiler
to emit the function which allows its a
>From 2a06367f7c63d5782ae51af162d68ed2e783e389 Mon Sep 17 00:00:00 2001
From: Jonathan Marler
Date: Tue, 13 Jul 2021 00:01:03 -0600
Subject: [PATCH] Remove __attribute__((__gnu_inline__)) to allow compiler to
emit functions
The following example works with MSVC but will fail using the mingw head
I'm curious - why does the implementation of 'clock_nanosleep()' not work with
CLOCK_MONOTONIC, while 'clock_gettime()' does? Is there anything preventing an
implementation?
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
htt
在 7/12/21 2:44 PM, Biswapriyo Nath 写道:
Would you like to upstream that change? I am not the author of that
commit and don't know why it was added. qt6-multimedia compiles fine
without that NTSTATUS re-definition.
FWIW, that typedef thing is a declaration, rather than a definition. This means