Mats Wichmann
Mats Wichmann
Okay, closing with this resolution: 1. 64-bit Windows is not less/more broken in this regard. 2. It is not documented (any longer) that an absurd value will yield any particular...
> Seems like a better error message should be output when an invalid value is entered.. Yes... though see comment a few back that this might be tricky to implement.
Noodling a bit... we may want to make this an instance of `UserError` because that gets special handling - useful when we know there's an error in an SConscript, it...
I saw the one yesterday... there's a new path component. *And* now the versions are numeric-year rather than numeric like 16.0, 18.0, etc. Probably both require a bit of attention,...
Adding mine... the diff shows how environment variables are modified after running the setup script. [ENVVAR-diff.txt](https://github.com/SCons/scons/files/10179662/ENVVAR-diff.txt) [oneapi-reg.txt](https://github.com/SCons/scons/files/10179666/oneapi-reg.txt)
Just so this is saved somewhere, someone compiled this table (in another context) _Here is a table of file extensions with default support by different compilers:_ Compiler | Fixed-form |...
I don't think so, I think the limitation is they're only *testing* with supported Python versions, which 3.6 no longer is. However, will have to verify that - if it...
I think this may have been fixed by #4263 - not an issue with the conditional scanner, but with the way `processDefines` emitted a single string-valued macro. I'll need to...
Okay, reran the test case attached here, it still fails, but can be made to pass by: ```diff - env = DummyEnvironment(CPPDEFINES=['HEADER=\\"f9.h\\"']) + env = DummyEnvironment(CPPDEFINES=[('HEADER', '\\"f9.h\\"')]) ``` So there...
The hole is in `SCons/Scanner/C/dictifyCPPDEFINES()` - it does its own processing of defines, not using the `processDefines` routine the rest of SCons uses, and did not deal with `"NAME=VALUE"` strings,...