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.
12
12
13
13
RELEASE VERSION/DATE TO BE FILLED IN LATER
14
14
15
- From John Doe:
15
+ From John Doe:
16
+ - Whatever John Doe did.
16
17
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.
18
21
19
22
20
23
RELEASE 4.9.0 - Sun, 02 Mar 2025 17:22:20 -0700
Original file line number Diff line number Diff line change 30
30
31
31
if sys .platform == 'win32' :
32
32
import SCons .Tool .MSCommon as msc
33
-
33
+
34
34
if not msc .msvc_exists ():
35
35
fooflags = '-DFOO'
36
36
barflags = '-DBAR'
44
44
test = TestSCons .TestSCons ()
45
45
46
46
test .write ('SConstruct' , """
47
- DefaultEnvironment(tool =[])
47
+ DefaultEnvironment(tools =[])
48
48
foo = Environment(CCFLAGS = '%s')
49
49
bar = Environment(CCFLAGS = '%s')
50
50
foo.Object(target = 'foo%s', source = 'prog.c')
88
88
""" )
89
89
90
90
test .write ('SConstruct' , """
91
- DefaultEnvironment(tool=[])
92
-
91
+ DefaultEnvironment(tools=[])
93
92
bar = Environment(CCFLAGS = '%s')
94
93
bar.Object(target = 'foo%s', source = 'prog.c')
95
94
bar.Object(target = 'bar%s', source = 'prog.c')
You can’t perform that action at this time.
0 commit comments