William Deegan

Results 322 comments of William Deegan

> **And**, this would make it possible to get a much needed total progress indication as requested in #2608 by running something like `watch 'scons -n | wc -l'` in...

Yes. I'm fully aware of it's limitations.

Does current vim/emacs read the .editorconfig file?

Should be pretty easy to implement a --cache-dir? If so then let's add it. I can see command line or shell env `SCONSFLAGS` setting this where it could be different...

> As I understood it (and I might not have) .. wouldn't preprocessor stuff like "Current file" or "Line number" be rendered _before_ hashing and checking the cache? > >...

@diedricm - to some extent the builder name is irrelevant. It's the actions the builder provides to convert the sources to the targets, and those are in the hash..

You should file your issue with PlatformIO! Also 4.8.1 is not the newest version of SCons. Please try with 4.9.1 If 4.9.1 doesn't fix it, let us know and we'll...

@yehjf what does the following python code output on your system ``` import sys print(sys.getdefaultencoding()) ```

Can you share the output of "set" in a cmd shell on your computer? On Wed, Jul 16, 2025 at 5:44 AM Mats Wichmann ***@***.***> wrote: > *mwichmann* left a...

How about try this: ``` import locale default_encoding = locale.getpreferredencoding(False) print(f"The Windows default encoding for Python is: {default_encoding}") ```