Timothee Cour

Results 437 comments of Timothee Cour

> The problem here is that you want a barrier that has little or no influence on the benchmark result yes; isn't the implementation I suggested above for `preventOptimizeOut` achieving...

hmm I wonder whether your version guarantees compiler won't optimize away the expression; a test would at least help ; ```c++ void inner(char const volatile *x){} ``` since x isn't...

running `rm ~/.zcompdump && compaudit && compinit` didn't work for me but just filed https://github.com/zsh-users/zsh-completions/issues/480 it works after `brew switch zsh 5.2` autocompletion had silently and suddenly stopped working after...

> If you think is too uncommon bug, then close it isn't it likely to affect other users?

windows can use symlinks too, eg https://www.howtogeek.com/howto/16226/complete-guide-to-symbolic-links-symlinks-on-windows-or-linux/

hopefully fixed by https://github.com/nim-lang/Nim/pull/13232 but still, symlinks should be used IMO

actually, this is not fixed, shim/wrapper process causes the following issue: `lldb -o r -o quit /Users/timothee/.nimble//bin/nim` Error: Spawning of process failed. (Error was: Interrupted system call) Info: If unexpected,...

thanks for re-opening, see also https://github.com/nim-lang/Nim/issues/16838 which lists several issues caused by shims instead of symlinks (including one that prevents using testament in `nimble tests`), and was closed as `This...

## 0.3.0 HOME=/tmp/d09c /Users/timothee/Downloads/choosenim-0.3.0_macosx_amd64 1.4.2 lldb -o r -o quit /tmp/d09c/.nimble/bin/nim ``` Error: Traceback (most recent call last) ... proxyexe.nim(62) proxyexe ... proxyexe.nim(53) main ... Spawning of process failed. (Error...

minimized repro: ```nim import osproc proc main()= let exePath = "/Users/timothee/git_clone/nim/Nim_devel/bin/nim" let p = startProcess(exePath, options={poParentStreams}) let exitCode = p.waitForExit() p.close() main() ``` nim c -o:/tmp/z01 main lldb -o r...