Skip to content

Commit 90f30db

Browse files
committed
adds iterbase test, removes explicit CXX in scons
1 parent b4160e4 commit 90f30db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/SConstruct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ import os
22

33
env = Environment(
44
ENV = os.environ,
5-
CXX='c++',
65
CXXFLAGS= ['-g', '-Wall', '-Wextra',
76
'-pedantic', '-std=c++11',
87
'-I/usr/local/include', '-I.'],
98
CPPPATH='..',
10-
LINKFLAGS='-L/usr/local/lib')
9+
LINKFLAGS=['-L/usr/local/lib'])
1110

1211
# allows highighting to print to terminal from compiler output
1312
env['ENV']['TERM'] = os.environ['TERM']
@@ -43,6 +42,7 @@ progs = Split(
4342
zip
4443
4544
iteratoriterator
45+
iterbase
4646
mixed
4747
helpers
4848
'''

0 commit comments

Comments
 (0)