Daniel Lemire
Daniel Lemire
Python can be built with ClangCL: https://github.com/python/cpython/pull/101352 Note that though it makes many things faster, there are some strong performance regressions: https://github.com/python/cpython/issues/77532#issuecomment-1093781943
> I'm probably one of the furthest things from a .gypi expert. I'd really want to meet one of those. 😆
@anonrig Windows programming is a very ancient art passed on from generation to generation. Looking...
@anonrig I am trying to understand your test in the first place. Normally, `--help` and `"hello world text"` would be two arguments. If you are considering them as just one,...
> EscapeShell function adds quotes around any argument that has space. But somehow that quotation marks are removed on Windows. Under Windows, are single quotes the correct approach? Do you...
So... if you do ``` job.bat 'a b' ``` The there are two parameters... ``` 'a ``` and ``` b' ``` Are we agreed?
You get back... ``` '--help "hello world test"' A B C ```` which is... ``` '--help "hello world test"' A B C ````
@anonrig I'll issue a PR against your PR.
The reference is here: https://daviddeley.com/autohotkey/parameters/parameters.htm
@anonrig It says that there are six arguments and prints `--help "hello world test"" A B C`.