Re: Building docs when dependencies have ddoc warnings

2025-04-12 Thread Jonathan M Davis via Digitalmars-d-learn
On Wednesday, April 9, 2025 1:11:35 AM MDT Anonymouse via Digitalmars-d-learn wrote: > On Tuesday, 8 April 2025 at 14:27:24 UTC, Jonathan M Davis wrote: > > I would assume that you need to create a similar build config > > which doesn't use -w (though really, -w should be gotten rid > > of, becaus

Re: aligned_alloc visibilty

2025-04-12 Thread faceless via Digitalmars-d-learn
On Saturday, 12 April 2025 at 15:32:05 UTC, user1234 wrote: Maybe there's a `version (CRuntime_XXX)` missing for the C lib you are using ? If so that looks like a druntime bug. But as there's not that much libc implementation what is the one you are on, Musl maybe ? Thanks for your respon

Re: aligned_alloc visibilty

2025-04-12 Thread user1234 via Digitalmars-d-learn
On Saturday, 12 April 2025 at 03:22:06 UTC, faceless wrote: What is the purpose of hiding the `aligned_alloc` declaration like this in `core.stdc.stdlib`? ```d 29version (CRuntime_Glibc) 30version = AlignedAllocSupported; 31else version (CRuntime_Newlib) 32version = A

Re: Linking objects built with MingW on windows

2025-04-12 Thread ronnie-w via Digitalmars-d-learn
On Thursday, 10 April 2025 at 13:44:19 UTC, kinke wrote: MinGW isn't supported by DMD and LDC. If you can't use an MS Visual C++ toolchain to build that webview.obj (and all libs it depends on), you could give GDC a try. This question was actually dumb, dmd and ldc do support MingW: I should h