File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,12 @@ NOTE: Since SCons 4.9.0, Python 3.7.0 or above is required.
1212
1313RELEASE VERSION/DATE TO BE FILLED IN LATER
1414
15- From John Doe:
15+ From John Doe:
16+ - Whatever John Doe did.
1617
17- - Whatever John Doe did.
18+ From Mats Wichmann:
19+ - Fix typos in CCFLAGS test. Didn't affect the test itself, but
20+ didn't correctly apply the DefaultEnvironment speedup.
1821
1922
2023RELEASE 4.9.0 - Sun, 02 Mar 2025 17:22:20 -0700
Original file line number Diff line number Diff line change 3030
3131if sys .platform == 'win32' :
3232 import SCons .Tool .MSCommon as msc
33-
33+
3434 if not msc .msvc_exists ():
3535 fooflags = '-DFOO'
3636 barflags = '-DBAR'
4444test = TestSCons .TestSCons ()
4545
4646test .write ('SConstruct' , """
47- DefaultEnvironment(tool =[])
47+ DefaultEnvironment(tools =[])
4848foo = Environment(CCFLAGS = '%s')
4949bar = Environment(CCFLAGS = '%s')
5050foo.Object(target = 'foo%s', source = 'prog.c')
8888""" )
8989
9090test .write ('SConstruct' , """
91- DefaultEnvironment(tool=[])
92-
91+ DefaultEnvironment(tools=[])
9392bar = Environment(CCFLAGS = '%s')
9493bar.Object(target = 'foo%s', source = 'prog.c')
9594bar.Object(target = 'bar%s', source = 'prog.c')
You can’t perform that action at this time.
0 commit comments