Rainer Schuetze
Rainer Schuetze
Not sure if it is worth the trouble, but ';' is a valid path character and is searched if it is specified in PATH with quotes. To mimick this behavior...
> What would you suggest instead of splitting the path by `;`? Splitting by `";`? I think that the splitting by ';' must not occur between matching quotes. To avoid...
I have implemented proper path splitting here now: https://github.com/rainers/visuald/commit/c62c2cfd96c0e6cb944e4752fe7d78c041189b56
There are no executables in bin64 in the installer artifact other than dmd.exe, dub.exe and lld-link.exe. It might be useful for rdmd.exe to pick up the 64-bit compiler, but other...
I'm not sure what the problem actually is: A 64-bit rdmd doesn't really do anything different than a 32-bit version. If also placed in the bin64 folder, it will use...
Thank you for contributing. It would be good if you could make a pull request with your changes so that it's easier to discuss them (e.g. removing the asserts is...
I'm not sure it's worthwhile to support this half-working approach (using different hooks in compiled code, that are missing in pre-compiled libraries, e.g. phobos). I prefer to just add a...
> I take it it's working just fine, but currently restricted to Windows and would need to be ported to Posix? Yes. IIRC it is even limited to Win64 ATM....
> I'd have to look more deeply into what's required - [...] Your description is pretty much what's required. > Does the precise GC in druntime work on Posix too...
> No line in the current file. The trouble is that the current file is usually "." at startup. If I change that bad default in `ldc::DIBuilder::CreateFile` to `IR->dmodule->srcfile->toChars()`, I...