Martin Storsjö
Martin Storsjö
Based on the error message, this sounds like something which may be a temporary wine bug, possibly fixed by https://gitlab.winehq.org/wine/wine/-/commit/fb0fa9aacf0d58b3fd5f26255858a744b29ee000. I just tested this command with a recent git version...
Unfortunately, the fix for this is fairly recent - I tested and noticed that we need Wine 8.3 or newer (the fix is in https://gitlab.winehq.org/wine/wine/-/commit/aafef01cc2a0c49ed902e63edac6da4b0278e53f); even Ubuntu 23.10 doesn't have...
Thanks! I'm not sure I want to merge this into the main repo right now, but thanks for sharing it!
Thanks, you're right that I hadn't really tried out the DIA SDK support here. I pushed an experimental branch here, at https://github.com/mstorsjo/msvc-wine/commit/atl, which installs this package too. I think this...
Nice hacks with reimplementing this in bash! I took a look at the cmcldeps tool itself, and it doesn't seem all too reliant on Windows specific APIs, so I made...
> I'm trying to build a toolchain which uses SJLJ exceptions on i686 (instead of dwarf). > > I tried reverting [f9ce177](https://github.com/mstorsjo/llvm-mingw/commit/f9ce17774e8445c34ff2d00d050c0beb09468d1d) and recompiled everything. The resulting toolchain mostly works,...
Hmm, that's strange... Have you tried building the examples with `Dockerfile.hello`? These two commands should be reproducible and deterministic: ``` $ docker build -f Dockerfile -t msvc-wine . $ docker...
The answer is twofold: - mingw-w64 doesn't, in general, support linking against a static CRT. The main premise of mingw is having a freely redistributable SDK, with headers reimplemented from...
Can @huangqinjin have a look at this?
> @marcoesposito1988 Thanks again. > > 1. I think the regex can be simplified to `s@(^|[[:blank:]])((/[^/[:blank:]]*){2,})@\1z:\2@g` Hmm, why do you want the `{2,}` part here - why do we need...