Vladimir Panteleev

Results 784 comments of Vladimir Panteleev

IMHO, this does too many things and should be split into separate pull requests. > When create helm git grep buffer, not promot buffer name, and just override it. This...

This pull request introduced a regression: https://issues.dlang.org/show_bug.cgi?id=24050

@WalterBright Kind ping, the above is a codegen regression.

BuildKite is currently red because of this regression. @WalterBright @RazvanN7

Well, here is my implementation of `beesd-oneshot`: ```bash #!/bin/bash set -eEuo pipefail function log() { # shellcheck disable=SC2059 printf '[beesd-oneshot] '"$1"'\n' "${@:2}" >&2 } # Stores the result in read_fd...

Note that `$LIB` does not refer to an environment variable, it's just a confusing syntax used by glibc. See "Dynamic string tokens" in `ld.so(8)`. Can you post `Debug=3` output leading...

I am not sure. As a user I would expect that Dub would call the LDC binary in its own directory. I know it has some code to that effect....

> Indeed LDC and LDMD both do not have a -quiet cmdline flag. I think `ldmd` needs `-quiet` because `dmd` has `-quiet` (although it seems undocumented).

Oh, actually `ldmd2` does have `-quiet`, it's just (also) undocumented. The problem is that Dub is trying to call `ldc2` with the DMD (or `ldmd2`) syntax.