File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ requirements :
2+ sudo apt install libboost-all-dev libwebsocketpp-dev scons
3+
4+ build :
5+ scons
6+
7+ install :
8+ sudo cp ./wsperf /usr/local/bin/wsperf
9+
110clean :
211 rm -f result* .json
312 sudo rm -f perf*
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ else:
199199# if the build system is known to allow the isystem modifier for library include
200200# values then use it for the boost libraries. Otherwise just add them to the
201201# regular CPPPATH values.
202- if env ['CXX' ].startswith ('g++' ) or env ['CXX' ].startswith ('clang' ):
202+ if False and ( env ['CXX' ].startswith ('g++' ) or env ['CXX' ].startswith ('clang' ) ):
203203 env .Append (CPPFLAGS = '-isystem ' + env ['BOOST_INCLUDES' ])
204204else :
205205 env .Append (CPPPATH = [env ['BOOST_INCLUDES' ]])
@@ -208,7 +208,7 @@ env.Append(LIBPATH = [env['BOOST_LIBS']])
208208# if the build system is known to allow the isystem modifier for library include
209209# values then use it for the boost libraries. Otherwise just add them to the
210210# regular CPPPATH values.
211- if env_cpp11 ['CXX' ].startswith ('g++' ) or env_cpp11 ['CXX' ].startswith ('clang' ):
211+ if False and ( env_cpp11 ['CXX' ].startswith ('g++' ) or env_cpp11 ['CXX' ].startswith ('clang' ) ):
212212 env_cpp11 .Append (CPPFLAGS = '-isystem ' + env_cpp11 ['BOOST_INCLUDES' ])
213213else :
214214 env_cpp11 .Append (CPPPATH = [env_cpp11 ['BOOST_INCLUDES' ]])
You can’t perform that action at this time.
0 commit comments