We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee39fe commit 2b51b48Copy full SHA for 2b51b48
1 file changed
tools/bisect/bisect_common.py
@@ -33,7 +33,8 @@ def build_cppcheck(bisect_path):
33
# TODO: use "make install"?
34
# TODO: use CXXOPTS overrides to workaround compiling issues in older versions
35
print('building {}'.format(commit_hash))
36
- subprocess.check_call(['make', '-C', bisect_repo_dir, '-j6', 'MATCHCOMPILER=yes', 'CXXOPTS=-O2 -w -pipe', '-s'])
+ # we always need to use CXXFLAGS because we need to support older versions
37
+ subprocess.check_call(['make', '-C', bisect_repo_dir, '-j6', 'MATCHCOMPILER=yes', 'CXXFLAGS=-O2 -w -pipe', '-s'])
38
39
# TODO: remove folder if installation failed
40
print('installing {}'.format(commit_hash))
0 commit comments