summaryrefslogtreecommitdiffstats
path: root/test/CC.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/CC.py')
-rw-r--r--test/CC.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CC.py b/test/CC.py
index 94dd6f6..93b0ed5 100644
--- a/test/CC.py
+++ b/test/CC.py
@@ -113,8 +113,10 @@ sys.exit(0)
test.write('SConstruct', """
cc = Environment().Dictionary('CC')
env = Environment(LINK = r'%s mylink.py',
+ LINKFLAGS = [],
CC = r'%s mycc.py',
- CXX = cc)
+ CXX = cc,
+ CXXFLAGS = [])
env.Program(target = 'test1', source = 'test1.c')
""" % (python, python))