On 03/03/2026 02.20, Yodel Eldar wrote:
From: Yodel Eldar <[email protected]>
Builds with --enable-{asan,tsan,safe-stack} fail under GCC, so use
clang if available, otherwise disable the treatment of warnings as
errors.
That's already a very big change and might be rather confusing for the users
that expected configure to do something different.
If we really feel like we should silence this error in the old rtl8139 code,
I think we should do it locally there with some pragmas like this:
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow"
... bad code ...
#pragma GCC diagnostic pop
WDYT?
Thomas